Skip to content

Commit

Permalink
fix(cloudbuild): update the API
Browse files Browse the repository at this point in the history
#### cloudbuild:v1alpha1
The following keys were changed:
- schemas.BuildOptions.properties.logging.description

#### cloudbuild:v1alpha2
The following keys were changed:
- schemas.BuildOptions.properties.logging.description

#### cloudbuild:v1
The following keys were changed:
- schemas.BuildOptions.properties.logging.description
  • Loading branch information
yoshi-automation authored and JustinBeckwith committed Jun 12, 2020
1 parent 124978c commit fb83f71
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions discovery/cloudbuild-v1.json
Expand Up @@ -720,7 +720,7 @@
}
}
},
"revision": "20200601",
"revision": "20200606",
"rootUrl": "https://cloudbuild.googleapis.com/",
"schemas": {
"ArtifactObjects": {
Expand Down Expand Up @@ -971,7 +971,7 @@
"type": "string"
},
"logging": {
"description": "Option to specify the logging mode, which determines where the logs are\nstored.",
"description": "Option to specify the logging mode, which determines if and where build\nlogs are stored.",
"enum": [
"LOGGING_UNSPECIFIED",
"LEGACY",
Expand Down
4 changes: 2 additions & 2 deletions discovery/cloudbuild-v1alpha1.json
Expand Up @@ -347,7 +347,7 @@
}
}
},
"revision": "20200601",
"revision": "20200606",
"rootUrl": "https://cloudbuild.googleapis.com/",
"schemas": {
"ArtifactObjects": {
Expand Down Expand Up @@ -598,7 +598,7 @@
"type": "string"
},
"logging": {
"description": "Option to specify the logging mode, which determines where the logs are\nstored.",
"description": "Option to specify the logging mode, which determines if and where build\nlogs are stored.",
"enum": [
"LOGGING_UNSPECIFIED",
"LEGACY",
Expand Down
4 changes: 2 additions & 2 deletions discovery/cloudbuild-v1alpha2.json
Expand Up @@ -358,7 +358,7 @@
}
}
},
"revision": "20200601",
"revision": "20200606",
"rootUrl": "https://cloudbuild.googleapis.com/",
"schemas": {
"ArtifactObjects": {
Expand Down Expand Up @@ -609,7 +609,7 @@
"type": "string"
},
"logging": {
"description": "Option to specify the logging mode, which determines where the logs are\nstored.",
"description": "Option to specify the logging mode, which determines if and where build\nlogs are stored.",
"enum": [
"LOGGING_UNSPECIFIED",
"LEGACY",
Expand Down
2 changes: 1 addition & 1 deletion src/apis/cloudbuild/v1.ts
Expand Up @@ -297,7 +297,7 @@ export namespace cloudbuild_v1 {
*/
env?: string[] | null;
/**
* Option to specify the logging mode, which determines where the logs are stored.
* Option to specify the logging mode, which determines if and where build logs are stored.
*/
logging?: string | null;
/**
Expand Down
2 changes: 1 addition & 1 deletion src/apis/cloudbuild/v1alpha1.ts
Expand Up @@ -293,7 +293,7 @@ export namespace cloudbuild_v1alpha1 {
*/
env?: string[] | null;
/**
* Option to specify the logging mode, which determines where the logs are stored.
* Option to specify the logging mode, which determines if and where build logs are stored.
*/
logging?: string | null;
/**
Expand Down
2 changes: 1 addition & 1 deletion src/apis/cloudbuild/v1alpha2.ts
Expand Up @@ -293,7 +293,7 @@ export namespace cloudbuild_v1alpha2 {
*/
env?: string[] | null;
/**
* Option to specify the logging mode, which determines where the logs are stored.
* Option to specify the logging mode, which determines if and where build logs are stored.
*/
logging?: string | null;
/**
Expand Down

0 comments on commit fb83f71

Please sign in to comment.