...
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: cloudidsendpoints.cloudids.cnrm.cloud.google.com
13spec:
14 group: cloudids.cnrm.cloud.google.com
15 names:
16 categories:
17 - gcp
18 kind: CloudIDSEndpoint
19 plural: cloudidsendpoints
20 shortNames:
21 - gcpcloudidsendpoint
22 - gcpcloudidsendpoints
23 singular: cloudidsendpoint
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. An optional description of the endpoint.
63 type: string
64 location:
65 description: Immutable. The location for the endpoint.
66 type: string
67 network:
68 description: Immutable. Name of the VPC network that is connected
69 to the IDS endpoint. This can either contain the VPC network name
70 itself (like "src-net") or the full URL to the network (like "projects/{project_id}/global/networks/src-net").
71 type: string
72 projectRef:
73 description: The project that this resource belongs to.
74 oneOf:
75 - not:
76 required:
77 - external
78 required:
79 - name
80 - not:
81 anyOf:
82 - required:
83 - name
84 - required:
85 - namespace
86 required:
87 - external
88 properties:
89 external:
90 description: 'Allowed value: The `name` field of a `Project` resource.'
91 type: string
92 name:
93 description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
94 type: string
95 namespace:
96 description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
97 type: string
98 type: object
99 resourceID:
100 description: Immutable. Optional. The name of the resource. Used for
101 creation and acquisition. When unset, the value of `metadata.name`
102 is used as the default.
103 type: string
104 severity:
105 description: 'Immutable. The minimum alert severity level that is
106 reported by the endpoint. Possible values: ["INFORMATIONAL", "LOW",
107 "MEDIUM", "HIGH", "CRITICAL"].'
108 type: string
109 threatExceptions:
110 description: 'Configuration for threat IDs excluded from generating
111 alerts. Limit: 99 IDs.'
112 items:
113 type: string
114 type: array
115 required:
116 - location
117 - network
118 - projectRef
119 - severity
120 type: object
121 status:
122 properties:
123 conditions:
124 description: Conditions represent the latest available observation
125 of the resource's current state.
126 items:
127 properties:
128 lastTransitionTime:
129 description: Last time the condition transitioned from one status
130 to another.
131 type: string
132 message:
133 description: Human-readable message indicating details about
134 last transition.
135 type: string
136 reason:
137 description: Unique, one-word, CamelCase reason for the condition's
138 last transition.
139 type: string
140 status:
141 description: Status is the status of the condition. Can be True,
142 False, Unknown.
143 type: string
144 type:
145 description: Type is the type of the condition.
146 type: string
147 type: object
148 type: array
149 createTime:
150 description: Creation timestamp in RFC 3339 text format.
151 type: string
152 endpointForwardingRule:
153 description: URL of the endpoint's network address to which traffic
154 is to be sent by Packet Mirroring.
155 type: string
156 endpointIp:
157 description: Internal IP address of the endpoint's network entry point.
158 type: string
159 observedGeneration:
160 description: ObservedGeneration is the generation of the resource
161 that was most recently observed by the Config Connector controller.
162 If this is equal to metadata.generation, then that means that the
163 current reported status reflects the most recent desired state of
164 the resource.
165 type: integer
166 updateTime:
167 description: Last update timestamp in RFC 3339 text format.
168 type: string
169 type: object
170 required:
171 - spec
172 type: object
173 served: true
174 storage: true
175 subresources:
176 status: {}
177status:
178 acceptedNames:
179 kind: ""
180 plural: ""
181 conditions: []
182 storedVersions: []
View as plain text