...
1apiVersion: apiextensions.k8s.io/v1
2kind: CustomResourceDefinition
3metadata:
4 annotations:
5 cnrm.cloud.google.com/version: 0.0.0-dev
6 creationTimestamp: null
7 labels:
8 cnrm.cloud.google.com/managed-by-kcc: "true"
9 cnrm.cloud.google.com/stability-level: alpha
10 cnrm.cloud.google.com/system: "true"
11 cnrm.cloud.google.com/tf2crd: "true"
12 name: firebaseandroidapps.firebase.cnrm.cloud.google.com
13spec:
14 group: firebase.cnrm.cloud.google.com
15 names:
16 categories:
17 - gcp
18 kind: FirebaseAndroidApp
19 plural: firebaseandroidapps
20 shortNames:
21 - gcpfirebaseandroidapp
22 - gcpfirebaseandroidapps
23 singular: firebaseandroidapp
24 preserveUnknownFields: false
25 scope: Namespaced
26 versions:
27 - additionalPrinterColumns:
28 - jsonPath: .metadata.creationTimestamp
29 name: Age
30 type: date
31 - description: When 'True', the most recent reconcile of the resource succeeded
32 jsonPath: .status.conditions[?(@.type=='Ready')].status
33 name: Ready
34 type: string
35 - description: The reason for the value in 'Ready'
36 jsonPath: .status.conditions[?(@.type=='Ready')].reason
37 name: Status
38 type: string
39 - description: The last transition time for the value in 'Status'
40 jsonPath: .status.conditions[?(@.type=='Ready')].lastTransitionTime
41 name: Status Age
42 type: date
43 name: v1alpha1
44 schema:
45 openAPIV3Schema:
46 properties:
47 apiVersion:
48 description: 'apiVersion defines the versioned schema of this representation
49 of an object. Servers should convert recognized schemas to the latest
50 internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources'
51 type: string
52 kind:
53 description: 'kind is a string value representing the REST resource this
54 object represents. Servers may infer this from the endpoint the client
55 submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds'
56 type: string
57 metadata:
58 type: object
59 spec:
60 properties:
61 deletionPolicy:
62 type: string
63 displayName:
64 description: The user-assigned display name of the AndroidApp.
65 type: string
66 packageName:
67 description: |-
68 Immutable. The canonical package name of the Android app as would appear in the Google Play
69 Developer Console.
70 type: string
71 projectRef:
72 description: The project that this resource belongs to.
73 oneOf:
74 - not:
75 required:
76 - external
77 required:
78 - name
79 - not:
80 anyOf:
81 - required:
82 - name
83 - required:
84 - namespace
85 required:
86 - external
87 properties:
88 external:
89 description: 'Allowed value: The `name` field of a `Project` resource.'
90 type: string
91 name:
92 description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
93 type: string
94 namespace:
95 description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
96 type: string
97 type: object
98 resourceID:
99 description: Immutable. Optional. The service-generated appId of the
100 resource. Used for acquisition only. Leave unset to create a new
101 resource.
102 type: string
103 sha1Hashes:
104 description: The SHA1 certificate hashes for the AndroidApp.
105 items:
106 type: string
107 type: array
108 sha256Hashes:
109 description: The SHA256 certificate hashes for the AndroidApp.
110 items:
111 type: string
112 type: array
113 required:
114 - displayName
115 - projectRef
116 type: object
117 status:
118 properties:
119 appId:
120 description: |-
121 The globally unique, Firebase-assigned identifier of the AndroidApp.
122 This identifier should be treated as an opaque token, as the data format is not specified.
123 type: string
124 conditions:
125 description: Conditions represent the latest available observation
126 of the resource's current state.
127 items:
128 properties:
129 lastTransitionTime:
130 description: Last time the condition transitioned from one status
131 to another.
132 type: string
133 message:
134 description: Human-readable message indicating details about
135 last transition.
136 type: string
137 reason:
138 description: Unique, one-word, CamelCase reason for the condition's
139 last transition.
140 type: string
141 status:
142 description: Status is the status of the condition. Can be True,
143 False, Unknown.
144 type: string
145 type:
146 description: Type is the type of the condition.
147 type: string
148 type: object
149 type: array
150 etag:
151 description: |-
152 This checksum is computed by the server based on the value of other fields, and it may be sent
153 with update requests to ensure the client has an up-to-date value before proceeding.
154 type: string
155 name:
156 description: |-
157 The fully qualified resource name of the AndroidApp, for example:
158 projects/projectId/androidApps/appId.
159 type: string
160 observedGeneration:
161 description: ObservedGeneration is the generation of the resource
162 that was most recently observed by the Config Connector controller.
163 If this is equal to metadata.generation, then that means that the
164 current reported status reflects the most recent desired state of
165 the resource.
166 type: integer
167 type: object
168 required:
169 - spec
170 type: object
171 served: true
172 storage: true
173 subresources:
174 status: {}
175status:
176 acceptedNames:
177 kind: ""
178 plural: ""
179 conditions: []
180 storedVersions: []
View as plain text