...
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: apigeeendpointattachments.apigee.cnrm.cloud.google.com
13spec:
14 group: apigee.cnrm.cloud.google.com
15 names:
16 categories:
17 - gcp
18 kind: ApigeeEndpointAttachment
19 plural: apigeeendpointattachments
20 shortNames:
21 - gcpapigeeendpointattachment
22 - gcpapigeeendpointattachments
23 singular: apigeeendpointattachment
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 location:
62 description: Immutable. Location of the endpoint attachment.
63 type: string
64 orgId:
65 description: |-
66 Immutable. The Apigee Organization associated with the Apigee instance,
67 in the format 'organizations/{{org_name}}'.
68 type: string
69 resourceID:
70 description: Immutable. Optional. The endpointAttachmentId of the
71 resource. Used for creation and acquisition. When unset, the value
72 of `metadata.name` is used as the default.
73 type: string
74 serviceAttachment:
75 description: 'Immutable. Format: projects/*/regions/*/serviceAttachments/*.'
76 type: string
77 required:
78 - location
79 - orgId
80 - serviceAttachment
81 type: object
82 status:
83 properties:
84 conditions:
85 description: Conditions represent the latest available observation
86 of the resource's current state.
87 items:
88 properties:
89 lastTransitionTime:
90 description: Last time the condition transitioned from one status
91 to another.
92 type: string
93 message:
94 description: Human-readable message indicating details about
95 last transition.
96 type: string
97 reason:
98 description: Unique, one-word, CamelCase reason for the condition's
99 last transition.
100 type: string
101 status:
102 description: Status is the status of the condition. Can be True,
103 False, Unknown.
104 type: string
105 type:
106 description: Type is the type of the condition.
107 type: string
108 type: object
109 type: array
110 connectionState:
111 description: State of the endpoint attachment connection to the service
112 attachment.
113 type: string
114 host:
115 description: Host that can be used in either HTTP Target Endpoint
116 directly, or as the host in Target Server.
117 type: string
118 name:
119 description: |-
120 Name of the Endpoint Attachment in the following format:
121 organizations/{organization}/endpointAttachments/{endpointAttachment}.
122 type: string
123 observedGeneration:
124 description: ObservedGeneration is the generation of the resource
125 that was most recently observed by the Config Connector controller.
126 If this is equal to metadata.generation, then that means that the
127 current reported status reflects the most recent desired state of
128 the resource.
129 type: integer
130 type: object
131 required:
132 - spec
133 type: object
134 served: true
135 storage: true
136 subresources:
137 status: {}
138status:
139 acceptedNames:
140 kind: ""
141 plural: ""
142 conditions: []
143 storedVersions: []
View as plain text