Skip to content

Commit

Permalink
Update for version 1.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
spew committed Sep 19, 2020
1 parent 1672dab commit a221554
Show file tree
Hide file tree
Showing 101 changed files with 9,946 additions and 905 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
annotations:
cnrm.cloud.google.com/version: 1.20.1
cnrm.cloud.google.com/version: 1.21.0
creationTimestamp: null
labels:
cnrm.cloud.google.com/managed-by-kcc: "true"
Expand Down Expand Up @@ -106,14 +106,14 @@ spec:
allowedDeviceManagementLevels:
description: |-
A list of allowed device management levels.
An empty list allows all management levels.
An empty list allows all management levels. Possible values: ["MANAGEMENT_UNSPECIFIED", "NONE", "BASIC", "COMPLETE"]
items:
type: string
type: array
allowedEncryptionStatuses:
description: |-
A list of allowed encryptions statuses.
An empty list allows all statuses.
An empty list allows all statuses. Possible values: ["ENCRYPTION_UNSPECIFIED", "ENCRYPTION_UNSUPPORTED", "UNENCRYPTED", "ENCRYPTED"]
items:
type: string
type: array
Expand Down Expand Up @@ -266,6 +266,39 @@ spec:
required:
- conditions
type: object
custom:
description: "Custom access level conditions are set using the Cloud
Common Expression Language to represent the necessary conditions for
the level to apply to a request. \nSee CEL spec at: https://github.com/google/cel-spec."
properties:
expr:
description: "Represents a textual expression in the Common Expression
Language (CEL) syntax. CEL is a C-like expression language.\nThis
page details the objects and attributes that are used to the build
the CEL expressions for \ncustom access levels - https://cloud.google.com/access-context-manager/docs/custom-access-level-spec."
properties:
description:
description: Description of the expression
type: string
expression:
description: Textual representation of an expression in Common
Expression Language syntax.
type: string
location:
description: String indicating the location of the expression
for error reporting, e.g. a file name and a position in the
file
type: string
title:
description: Title for the expression, i.e. a short string describing
its purpose.
type: string
required:
- expression
type: object
required:
- expr
type: object
description:
description: Description of the AccessLevel and its use. Does not affect
behavior.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
annotations:
cnrm.cloud.google.com/version: 1.20.1
cnrm.cloud.google.com/version: 1.21.0
creationTimestamp: null
labels:
cnrm.cloud.google.com/managed-by-kcc: "true"
Expand Down
28 changes: 27 additions & 1 deletion crds/artifactregistry_v1beta1_artifactregistryrepository.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
annotations:
cnrm.cloud.google.com/version: 1.20.1
cnrm.cloud.google.com/version: 1.21.0
creationTimestamp: null
labels:
cnrm.cloud.google.com/managed-by-kcc: "true"
Expand Down Expand Up @@ -59,6 +59,32 @@ spec:
description: 'The format of packages that are stored in the repoitory.
Possible values: ["DOCKER"]'
type: string
kmsKeyRef:
oneOf:
- not:
required:
- external
required:
- name
- not:
anyOf:
- required:
- name
- required:
- namespace
required:
- external
properties:
external:
description: The selfLink of a KMSCryptoKey.
type: string
name:
description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
type: string
namespace:
description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
type: string
type: object
location:
description: The name of the location this repository is located in.
type: string
Expand Down
2 changes: 1 addition & 1 deletion crds/bigquery_v1beta1_bigquerydataset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
annotations:
cnrm.cloud.google.com/version: 1.20.1
cnrm.cloud.google.com/version: 1.21.0
creationTimestamp: null
labels:
cnrm.cloud.google.com/managed-by-kcc: "true"
Expand Down
9 changes: 5 additions & 4 deletions crds/bigquery_v1beta1_bigqueryjob.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
annotations:
cnrm.cloud.google.com/version: 1.20.1
cnrm.cloud.google.com/version: 1.21.0
creationTimestamp: null
labels:
cnrm.cloud.google.com/managed-by-kcc: "true"
Expand Down Expand Up @@ -622,9 +622,10 @@ spec:
"INTERACTIVE" Possible values: ["INTERACTIVE", "BATCH"]'
type: string
query:
description: SQL query text to execute. The useLegacySql field can
be used to indicate whether the query uses legacy SQL or standard
SQL.
description: |-
SQL query text to execute. The useLegacySql field can be used to indicate whether the query uses legacy SQL or standard SQL.
*NOTE*: queries containing [DML language](https://cloud.google.com/bigquery/docs/reference/standard-sql/data-manipulation-language)
('DELETE', 'UPDATE', 'MERGE', 'INSERT') must specify 'create_disposition = ""' and 'write_disposition = ""'.
type: string
schemaUpdateOptions:
description: |-
Expand Down
Loading

0 comments on commit a221554

Please sign in to comment.