...
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: stable
10 cnrm.cloud.google.com/system: "true"
11 cnrm.cloud.google.com/tf2crd: "true"
12 name: spannerinstances.spanner.cnrm.cloud.google.com
13spec:
14 group: spanner.cnrm.cloud.google.com
15 names:
16 categories:
17 - gcp
18 kind: SpannerInstance
19 plural: spannerinstances
20 shortNames:
21 - gcpspannerinstance
22 - gcpspannerinstances
23 singular: spannerinstance
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: v1beta1
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 config:
62 description: |-
63 Immutable. The name of the instance's configuration (similar but not
64 quite the same as a region) which defines the geographic placement and
65 replication of your databases in this instance. It determines where your data
66 is stored. Values are typically of the form 'regional-europe-west1' , 'us-central' etc.
67 In order to obtain a valid list please consult the
68 [Configuration section of the docs](https://cloud.google.com/spanner/docs/instances).
69 type: string
70 displayName:
71 description: |-
72 The descriptive name for this instance as it appears in UIs. Must be
73 unique per project and between 4 and 30 characters in length.
74 type: string
75 numNodes:
76 type: integer
77 processingUnits:
78 type: integer
79 resourceID:
80 description: Immutable. Optional. The name of the resource. Used for
81 creation and acquisition. When unset, the value of `metadata.name`
82 is used as the default.
83 type: string
84 required:
85 - config
86 - displayName
87 type: object
88 status:
89 properties:
90 conditions:
91 description: Conditions represent the latest available observation
92 of the resource's current state.
93 items:
94 properties:
95 lastTransitionTime:
96 description: Last time the condition transitioned from one status
97 to another.
98 type: string
99 message:
100 description: Human-readable message indicating details about
101 last transition.
102 type: string
103 reason:
104 description: Unique, one-word, CamelCase reason for the condition's
105 last transition.
106 type: string
107 status:
108 description: Status is the status of the condition. Can be True,
109 False, Unknown.
110 type: string
111 type:
112 description: Type is the type of the condition.
113 type: string
114 type: object
115 type: array
116 observedGeneration:
117 description: ObservedGeneration is the generation of the resource
118 that was most recently observed by the Config Connector controller.
119 If this is equal to metadata.generation, then that means that the
120 current reported status reflects the most recent desired state of
121 the resource.
122 type: integer
123 state:
124 description: 'Instance status: ''CREATING'' or ''READY''.'
125 type: string
126 type: object
127 required:
128 - spec
129 type: object
130 served: true
131 storage: true
132 subresources:
133 status: {}
134status:
135 acceptedNames:
136 kind: ""
137 plural: ""
138 conditions: []
139 storedVersions: []
View as plain text