...
1# Copyright 2020 Google LLC
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15apiVersion: apiextensions.k8s.io/v1
16kind: CustomResourceDefinition
17metadata:
18 annotations:
19 cnrm.cloud.google.com/version: 1.106.0
20 creationTimestamp: null
21 labels:
22 cnrm.cloud.google.com/managed-by-kcc: "true"
23 cnrm.cloud.google.com/stability-level: alpha
24 cnrm.cloud.google.com/system: "true"
25 cnrm.cloud.google.com/tf2crd: "true"
26 name: datacatalogtaxonomies.datacatalog.cnrm.cloud.google.com
27spec:
28 group: datacatalog.cnrm.cloud.google.com
29 names:
30 categories:
31 - gcp
32 kind: DataCatalogTaxonomy
33 plural: datacatalogtaxonomies
34 shortNames:
35 - gcpdatacatalogtaxonomy
36 - gcpdatacatalogtaxonomies
37 singular: datacatalogtaxonomy
38 scope: Namespaced
39 versions:
40 - additionalPrinterColumns:
41 - jsonPath: .metadata.creationTimestamp
42 name: Age
43 type: date
44 - description: When 'True', the most recent reconcile of the resource succeeded
45 jsonPath: .status.conditions[?(@.type=='Ready')].status
46 name: Ready
47 type: string
48 - description: The reason for the value in 'Ready'
49 jsonPath: .status.conditions[?(@.type=='Ready')].reason
50 name: Status
51 type: string
52 - description: The last transition time for the value in 'Status'
53 jsonPath: .status.conditions[?(@.type=='Ready')].lastTransitionTime
54 name: Status Age
55 type: date
56 name: v1beta1
57 schema:
58 openAPIV3Schema:
59 properties:
60 apiVersion:
61 description: 'apiVersion defines the versioned schema of this representation
62 of an object. Servers should convert recognized schemas to the latest
63 internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources'
64 type: string
65 kind:
66 description: 'kind is a string value representing the REST resource this
67 object represents. Servers may infer this from the endpoint the client
68 submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds'
69 type: string
70 metadata:
71 type: object
72 spec:
73 properties:
74 activatedPolicyTypes:
75 description: |-
76 A list of policy types that are activated for this taxonomy. If not set,
77 defaults to an empty list. Possible values: ["POLICY_TYPE_UNSPECIFIED", "FINE_GRAINED_ACCESS_CONTROL"].
78 items:
79 type: string
80 type: array
81 description:
82 description: |-
83 Description of this taxonomy. It must: contain only unicode characters,
84 tabs, newlines, carriage returns and page breaks; and be at most 2000 bytes
85 long when encoded in UTF-8. If not set, defaults to an empty description.
86 type: string
87 displayName:
88 description: |-
89 User defined name of this taxonomy.
90 It must: contain only unicode letters, numbers, underscores, dashes
91 and spaces; not start or end with spaces; and be at most 200 bytes
92 long when encoded in UTF-8.
93 type: string
94 projectRef:
95 description: The project that this resource belongs to.
96 oneOf:
97 - not:
98 required:
99 - external
100 required:
101 - name
102 - not:
103 anyOf:
104 - required:
105 - name
106 - required:
107 - namespace
108 required:
109 - external
110 properties:
111 external:
112 description: 'Allowed value: The `name` field of a `Project` resource.'
113 type: string
114 name:
115 description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
116 type: string
117 namespace:
118 description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
119 type: string
120 type: object
121 region:
122 description: Immutable. Taxonomy location region.
123 type: string
124 resourceID:
125 description: Immutable. Optional. The service-generated name of the
126 resource. Used for acquisition only. Leave unset to create a new
127 resource.
128 type: string
129 required:
130 - displayName
131 - projectRef
132 type: object
133 status:
134 properties:
135 conditions:
136 description: Conditions represent the latest available observation
137 of the resource's current state.
138 items:
139 properties:
140 lastTransitionTime:
141 description: Last time the condition transitioned from one status
142 to another.
143 type: string
144 message:
145 description: Human-readable message indicating details about
146 last transition.
147 type: string
148 reason:
149 description: Unique, one-word, CamelCase reason for the condition's
150 last transition.
151 type: string
152 status:
153 description: Status is the status of the condition. Can be True,
154 False, Unknown.
155 type: string
156 type:
157 description: Type is the type of the condition.
158 type: string
159 type: object
160 type: array
161 name:
162 description: |-
163 Resource name of this taxonomy, whose format is:
164 "projects/{project}/locations/{region}/taxonomies/{taxonomy}".
165 type: string
166 observedGeneration:
167 description: ObservedGeneration is the generation of the resource
168 that was most recently observed by the Config Connector controller.
169 If this is equal to metadata.generation, then that means that the
170 current reported status reflects the most recent desired state of
171 the resource.
172 type: integer
173 type: object
174 required:
175 - spec
176 type: object
177 served: true
178 storage: true
179 subresources:
180 status: {}
181status:
182 acceptedNames:
183 kind: ""
184 plural: ""
185 conditions: []
186 storedVersions: []
View as plain text