...
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: apigeeaddonsconfigs.apigee.cnrm.cloud.google.com
13spec:
14 group: apigee.cnrm.cloud.google.com
15 names:
16 categories:
17 - gcp
18 kind: ApigeeAddonsConfig
19 plural: apigeeaddonsconfigs
20 shortNames:
21 - gcpapigeeaddonsconfig
22 - gcpapigeeaddonsconfigs
23 singular: apigeeaddonsconfig
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 addonsConfig:
62 description: Addon configurations of the Apigee organization.
63 properties:
64 advancedApiOpsConfig:
65 description: Configuration for the Monetization add-on.
66 properties:
67 enabled:
68 description: Flag that specifies whether the Advanced API
69 Ops add-on is enabled.
70 type: boolean
71 type: object
72 apiSecurityConfig:
73 description: Configuration for the Monetization add-on.
74 properties:
75 enabled:
76 description: Flag that specifies whether the Advanced API
77 Ops add-on is enabled.
78 type: boolean
79 expiresAt:
80 description: Flag that specifies whether the Advanced API
81 Ops add-on is enabled.
82 type: string
83 type: object
84 connectorsPlatformConfig:
85 description: Configuration for the Monetization add-on.
86 properties:
87 enabled:
88 description: Flag that specifies whether the Advanced API
89 Ops add-on is enabled.
90 type: boolean
91 expiresAt:
92 description: Flag that specifies whether the Advanced API
93 Ops add-on is enabled.
94 type: string
95 type: object
96 integrationConfig:
97 description: Configuration for the Monetization add-on.
98 properties:
99 enabled:
100 description: Flag that specifies whether the Advanced API
101 Ops add-on is enabled.
102 type: boolean
103 type: object
104 monetizationConfig:
105 description: Configuration for the Monetization add-on.
106 properties:
107 enabled:
108 description: Flag that specifies whether the Advanced API
109 Ops add-on is enabled.
110 type: boolean
111 type: object
112 type: object
113 org:
114 description: Immutable. Name of the Apigee organization.
115 type: string
116 resourceID:
117 description: Immutable. Optional. The name of the resource. Used for
118 creation and acquisition. When unset, the value of `metadata.name`
119 is used as the default.
120 type: string
121 required:
122 - org
123 type: object
124 status:
125 properties:
126 conditions:
127 description: Conditions represent the latest available observation
128 of the resource's current state.
129 items:
130 properties:
131 lastTransitionTime:
132 description: Last time the condition transitioned from one status
133 to another.
134 type: string
135 message:
136 description: Human-readable message indicating details about
137 last transition.
138 type: string
139 reason:
140 description: Unique, one-word, CamelCase reason for the condition's
141 last transition.
142 type: string
143 status:
144 description: Status is the status of the condition. Can be True,
145 False, Unknown.
146 type: string
147 type:
148 description: Type is the type of the condition.
149 type: string
150 type: object
151 type: array
152 observedGeneration:
153 description: ObservedGeneration is the generation of the resource
154 that was most recently observed by the Config Connector controller.
155 If this is equal to metadata.generation, then that means that the
156 current reported status reflects the most recent desired state of
157 the resource.
158 type: integer
159 type: object
160 required:
161 - spec
162 type: object
163 served: true
164 storage: true
165 subresources:
166 status: {}
167status:
168 acceptedNames:
169 kind: ""
170 plural: ""
171 conditions: []
172 storedVersions: []
View as plain text