...
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: vertexaimetadatastores.vertexai.cnrm.cloud.google.com
13spec:
14 group: vertexai.cnrm.cloud.google.com
15 names:
16 categories:
17 - gcp
18 kind: VertexAIMetadataStore
19 plural: vertexaimetadatastores
20 shortNames:
21 - gcpvertexaimetadatastore
22 - gcpvertexaimetadatastores
23 singular: vertexaimetadatastore
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 description:
62 description: Immutable. Description of the MetadataStore.
63 type: string
64 encryptionSpec:
65 description: Immutable. Customer-managed encryption key spec for a
66 MetadataStore. If set, this MetadataStore and all sub-resources
67 of this MetadataStore will be secured by this key.
68 properties:
69 kmsKeyName:
70 description: |-
71 Immutable. Required. The Cloud KMS resource identifier of the customer managed encryption key used to protect a resource.
72 Has the form: projects/my-project/locations/my-region/keyRings/my-kr/cryptoKeys/my-key. The key needs to be in the same region as where the resource is created.
73 type: string
74 type: object
75 projectRef:
76 description: The project that this resource belongs to.
77 oneOf:
78 - not:
79 required:
80 - external
81 required:
82 - name
83 - not:
84 anyOf:
85 - required:
86 - name
87 - required:
88 - namespace
89 required:
90 - external
91 properties:
92 external:
93 description: 'Allowed value: The `name` field of a `Project` resource.'
94 type: string
95 name:
96 description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
97 type: string
98 namespace:
99 description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
100 type: string
101 type: object
102 region:
103 description: Immutable. The region of the Metadata Store. eg us-central1.
104 type: string
105 resourceID:
106 description: Immutable. Optional. The name of the resource. Used for
107 creation and acquisition. When unset, the value of `metadata.name`
108 is used as the default.
109 type: string
110 required:
111 - projectRef
112 - region
113 type: object
114 status:
115 properties:
116 conditions:
117 description: Conditions represent the latest available observation
118 of the resource's current state.
119 items:
120 properties:
121 lastTransitionTime:
122 description: Last time the condition transitioned from one status
123 to another.
124 type: string
125 message:
126 description: Human-readable message indicating details about
127 last transition.
128 type: string
129 reason:
130 description: Unique, one-word, CamelCase reason for the condition's
131 last transition.
132 type: string
133 status:
134 description: Status is the status of the condition. Can be True,
135 False, Unknown.
136 type: string
137 type:
138 description: Type is the type of the condition.
139 type: string
140 type: object
141 type: array
142 createTime:
143 description: The timestamp of when the MetadataStore was created in
144 RFC3339 UTC "Zulu" format, with nanosecond resolution and up to
145 nine fractional digits.
146 type: string
147 observedGeneration:
148 description: ObservedGeneration is the generation of the resource
149 that was most recently observed by the Config Connector controller.
150 If this is equal to metadata.generation, then that means that the
151 current reported status reflects the most recent desired state of
152 the resource.
153 type: integer
154 state:
155 description: State information of the MetadataStore.
156 items:
157 properties:
158 diskUtilizationBytes:
159 description: The disk utilization of the MetadataStore in bytes.
160 type: string
161 type: object
162 type: array
163 updateTime:
164 description: The timestamp of when the MetadataStore was last updated
165 in RFC3339 UTC "Zulu" format, with nanosecond resolution and up
166 to nine fractional digits.
167 type: string
168 type: object
169 required:
170 - spec
171 type: object
172 served: true
173 storage: true
174 subresources:
175 status: {}
176status:
177 acceptedNames:
178 kind: ""
179 plural: ""
180 conditions: []
181 storedVersions: []
View as plain text