...
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: securitycentersources.securitycenter.cnrm.cloud.google.com
13spec:
14 group: securitycenter.cnrm.cloud.google.com
15 names:
16 categories:
17 - gcp
18 kind: SecurityCenterSource
19 plural: securitycentersources
20 shortNames:
21 - gcpsecuritycentersource
22 - gcpsecuritycentersources
23 singular: securitycentersource
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: The description of the source (max of 1024 characters).
63 type: string
64 displayName:
65 description: |-
66 The source’s display name. A source’s display name must be unique
67 amongst its siblings, for example, two sources with the same parent
68 can't share the same display name. The display name must start and end
69 with a letter or digit, may contain letters, digits, spaces, hyphens,
70 and underscores, and can be no longer than 32 characters.
71 type: string
72 organizationRef:
73 description: The organization 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 an `Organization`
91 resource.'
92 type: string
93 name:
94 description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
95 type: string
96 namespace:
97 description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
98 type: string
99 type: object
100 resourceID:
101 description: Immutable. Optional. The service-generated name of the
102 resource. Used for acquisition only. Leave unset to create a new
103 resource.
104 type: string
105 required:
106 - displayName
107 - organizationRef
108 type: object
109 status:
110 properties:
111 conditions:
112 description: Conditions represent the latest available observation
113 of the resource's current state.
114 items:
115 properties:
116 lastTransitionTime:
117 description: Last time the condition transitioned from one status
118 to another.
119 type: string
120 message:
121 description: Human-readable message indicating details about
122 last transition.
123 type: string
124 reason:
125 description: Unique, one-word, CamelCase reason for the condition's
126 last transition.
127 type: string
128 status:
129 description: Status is the status of the condition. Can be True,
130 False, Unknown.
131 type: string
132 type:
133 description: Type is the type of the condition.
134 type: string
135 type: object
136 type: array
137 name:
138 description: |-
139 The resource name of this source, in the format
140 'organizations/{{organization}}/sources/{{source}}'.
141 type: string
142 observedGeneration:
143 description: ObservedGeneration is the generation of the resource
144 that was most recently observed by the Config Connector controller.
145 If this is equal to metadata.generation, then that means that the
146 current reported status reflects the most recent desired state of
147 the resource.
148 type: integer
149 type: object
150 required:
151 - spec
152 type: object
153 served: true
154 storage: true
155 subresources:
156 status: {}
157status:
158 acceptedNames:
159 kind: ""
160 plural: ""
161 conditions: []
162 storedVersions: []
View as plain text