...
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: bigquerydatapolicydatapolicies.bigquerydatapolicy.cnrm.cloud.google.com
13spec:
14 group: bigquerydatapolicy.cnrm.cloud.google.com
15 names:
16 categories:
17 - gcp
18 kind: BigQueryDataPolicyDataPolicy
19 plural: bigquerydatapolicydatapolicies
20 shortNames:
21 - gcpbigquerydatapolicydatapolicy
22 - gcpbigquerydatapolicydatapolicies
23 singular: bigquerydatapolicydatapolicy
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 dataMaskingPolicy:
62 description: The data masking policy that specifies the data masking
63 rule to use.
64 properties:
65 predefinedExpression:
66 description: 'The available masking rules. Learn more here: https://cloud.google.com/bigquery/docs/column-data-masking-intro#masking_options.
67 Possible values: ["SHA256", "ALWAYS_NULL", "DEFAULT_MASKING_VALUE",
68 "LAST_FOUR_CHARACTERS", "FIRST_FOUR_CHARACTERS", "EMAIL_MASK",
69 "DATE_YEAR_MASK"].'
70 type: string
71 required:
72 - predefinedExpression
73 type: object
74 dataPolicyType:
75 description: 'The enrollment level of the service. Possible values:
76 ["COLUMN_LEVEL_SECURITY_POLICY", "DATA_MASKING_POLICY"].'
77 type: string
78 location:
79 description: Immutable. The name of the location of the data policy.
80 type: string
81 policyTag:
82 description: Policy tag resource name, in the format of projects/{project_number}/locations/{locationId}/taxonomies/{taxonomyId}/policyTags/{policyTag_id}.
83 type: string
84 projectRef:
85 description: The project that this resource belongs to.
86 oneOf:
87 - not:
88 required:
89 - external
90 required:
91 - name
92 - not:
93 anyOf:
94 - required:
95 - name
96 - required:
97 - namespace
98 required:
99 - external
100 properties:
101 external:
102 description: 'Allowed value: The `name` field of a `Project` resource.'
103 type: string
104 name:
105 description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
106 type: string
107 namespace:
108 description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
109 type: string
110 type: object
111 resourceID:
112 description: Immutable. Optional. The dataPolicyId of the resource.
113 Used for creation and acquisition. When unset, the value of `metadata.name`
114 is used as the default.
115 type: string
116 required:
117 - dataPolicyType
118 - location
119 - policyTag
120 - projectRef
121 type: object
122 status:
123 properties:
124 conditions:
125 description: Conditions represent the latest available observation
126 of the resource's current state.
127 items:
128 properties:
129 lastTransitionTime:
130 description: Last time the condition transitioned from one status
131 to another.
132 type: string
133 message:
134 description: Human-readable message indicating details about
135 last transition.
136 type: string
137 reason:
138 description: Unique, one-word, CamelCase reason for the condition's
139 last transition.
140 type: string
141 status:
142 description: Status is the status of the condition. Can be True,
143 False, Unknown.
144 type: string
145 type:
146 description: Type is the type of the condition.
147 type: string
148 type: object
149 type: array
150 name:
151 description: Resource name of this data policy, in the format of projects/{project_number}/locations/{locationId}/dataPolicies/{dataPolicyId}.
152 type: string
153 observedGeneration:
154 description: ObservedGeneration is the generation of the resource
155 that was most recently observed by the Config Connector controller.
156 If this is equal to metadata.generation, then that means that the
157 current reported status reflects the most recent desired state of
158 the resource.
159 type: integer
160 type: object
161 required:
162 - spec
163 type: object
164 served: true
165 storage: true
166 subresources:
167 status: {}
168status:
169 acceptedNames:
170 kind: ""
171 plural: ""
172 conditions: []
173 storedVersions: []
View as plain text