...
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: apigeeenvgroups.apigee.cnrm.cloud.google.com
13spec:
14 group: apigee.cnrm.cloud.google.com
15 names:
16 categories:
17 - gcp
18 kind: ApigeeEnvgroup
19 plural: apigeeenvgroups
20 shortNames:
21 - gcpapigeeenvgroup
22 - gcpapigeeenvgroups
23 singular: apigeeenvgroup
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 hostnames:
62 description: Hostnames of the environment group.
63 items:
64 type: string
65 type: array
66 orgId:
67 description: |-
68 Immutable. The Apigee Organization associated with the Apigee environment group,
69 in the format 'organizations/{{org_name}}'.
70 type: string
71 resourceID:
72 description: Immutable. Optional. The name of the resource. Used for
73 creation and acquisition. When unset, the value of `metadata.name`
74 is used as the default.
75 type: string
76 required:
77 - orgId
78 type: object
79 status:
80 properties:
81 conditions:
82 description: Conditions represent the latest available observation
83 of the resource's current state.
84 items:
85 properties:
86 lastTransitionTime:
87 description: Last time the condition transitioned from one status
88 to another.
89 type: string
90 message:
91 description: Human-readable message indicating details about
92 last transition.
93 type: string
94 reason:
95 description: Unique, one-word, CamelCase reason for the condition's
96 last transition.
97 type: string
98 status:
99 description: Status is the status of the condition. Can be True,
100 False, Unknown.
101 type: string
102 type:
103 description: Type is the type of the condition.
104 type: string
105 type: object
106 type: array
107 observedGeneration:
108 description: ObservedGeneration is the generation of the resource
109 that was most recently observed by the Config Connector controller.
110 If this is equal to metadata.generation, then that means that the
111 current reported status reflects the most recent desired state of
112 the resource.
113 type: integer
114 type: object
115 required:
116 - spec
117 type: object
118 served: true
119 storage: true
120 subresources:
121 status: {}
122status:
123 acceptedNames:
124 kind: ""
125 plural: ""
126 conditions: []
127 storedVersions: []
View as plain text