Skip to content

Commit

Permalink
fix(binaryauthorization): update the API
Browse files Browse the repository at this point in the history
#### binaryauthorization:v1beta1

The following keys were changed:
- schemas.AdmissionWhitelistPattern.properties.namePattern.description

#### binaryauthorization:v1

The following keys were changed:
- schemas.AdmissionWhitelistPattern.properties.namePattern.description
  • Loading branch information
yoshi-automation authored and bcoe committed May 3, 2021
1 parent 9159143 commit 3fd6fb9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions discovery/binaryauthorization-v1.json
Expand Up @@ -551,7 +551,7 @@
}
}
},
"revision": "20210326",
"revision": "20210422",
"rootUrl": "https://binaryauthorization.googleapis.com/",
"schemas": {
"AdmissionRule": {
Expand Down Expand Up @@ -603,7 +603,7 @@
"id": "AdmissionWhitelistPattern",
"properties": {
"namePattern": {
"description": "An image name pattern to allowlist, in the form `registry/path/to/image`. This supports a trailing `*` as a wildcard, but this is allowed only in text after the `registry/` part.",
"description": "An image name pattern to allowlist, in the form `registry/path/to/image`. This supports a trailing `*` wildcard, but this is allowed only in text after the `registry/` part. This also supports a trailing `**` wildcard which matches subdirectories of a given entry.",
"type": "string"
}
},
Expand Down
4 changes: 2 additions & 2 deletions discovery/binaryauthorization-v1beta1.json
Expand Up @@ -551,7 +551,7 @@
}
}
},
"revision": "20210326",
"revision": "20210422",
"rootUrl": "https://binaryauthorization.googleapis.com/",
"schemas": {
"AdmissionRule": {
Expand Down Expand Up @@ -603,7 +603,7 @@
"id": "AdmissionWhitelistPattern",
"properties": {
"namePattern": {
"description": "An image name pattern to allowlist, in the form `registry/path/to/image`. This supports a trailing `*` as a wildcard, but this is allowed only in text after the `registry/` part. Also wildcards do not match `/`, i.e., gcr.io/nginx* matches gcr.io/nginx@latest, but it does not match gcr.io/nginx/image.",
"description": "An image name pattern to allowlist, in the form `registry/path/to/image`. This supports a trailing `*` as a wildcard, but this is allowed only in text after the `registry/` part. `*` wildcard does not match `/`, i.e., gcr.io/nginx* matches gcr.io/nginx@latest, but it does not match gcr.io/nginx/image. This also supports a trailing `**` wildcard which matches subdirectories, i.e., gcr.io/nginx** matches gcr.io/nginx/image.",
"type": "string"
}
},
Expand Down
2 changes: 1 addition & 1 deletion src/apis/binaryauthorization/v1.ts
Expand Up @@ -149,7 +149,7 @@ export namespace binaryauthorization_v1 {
*/
export interface Schema$AdmissionWhitelistPattern {
/**
* An image name pattern to allowlist, in the form `registry/path/to/image`. This supports a trailing `*` as a wildcard, but this is allowed only in text after the `registry/` part.
* An image name pattern to allowlist, in the form `registry/path/to/image`. This supports a trailing `*` wildcard, but this is allowed only in text after the `registry/` part. This also supports a trailing `**` wildcard which matches subdirectories of a given entry.
*/
namePattern?: string | null;
}
Expand Down
2 changes: 1 addition & 1 deletion src/apis/binaryauthorization/v1beta1.ts
Expand Up @@ -149,7 +149,7 @@ export namespace binaryauthorization_v1beta1 {
*/
export interface Schema$AdmissionWhitelistPattern {
/**
* An image name pattern to allowlist, in the form `registry/path/to/image`. This supports a trailing `*` as a wildcard, but this is allowed only in text after the `registry/` part. Also wildcards do not match `/`, i.e., gcr.io/nginx* matches gcr.io/nginx@latest, but it does not match gcr.io/nginx/image.
* An image name pattern to allowlist, in the form `registry/path/to/image`. This supports a trailing `*` as a wildcard, but this is allowed only in text after the `registry/` part. `*` wildcard does not match `/`, i.e., gcr.io/nginx* matches gcr.io/nginx@latest, but it does not match gcr.io/nginx/image. This also supports a trailing `**` wildcard which matches subdirectories, i.e., gcr.io/nginx** matches gcr.io/nginx/image.
*/
namePattern?: string | null;
}
Expand Down

0 comments on commit 3fd6fb9

Please sign in to comment.