@maxim_mazurok/gapi.client.run-v1 0.0.20240510 → 0.0.20240524
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +27 -27
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://run.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240524
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -390,7 +390,7 @@ declare namespace gapi.client {
|
|
|
390
390
|
secrets?: GoogleDevtoolsCloudbuildV1Secret[];
|
|
391
391
|
/** IAM service account whose credentials will be used at build runtime. Must be of the format `projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}`. ACCOUNT can be email address or uniqueId of the service account. */
|
|
392
392
|
serviceAccount?: string;
|
|
393
|
-
/** The location of the source files to build. */
|
|
393
|
+
/** Optional. The location of the source files to build. */
|
|
394
394
|
source?: GoogleDevtoolsCloudbuildV1Source;
|
|
395
395
|
/** Output only. A permanent fixed identifier for source. */
|
|
396
396
|
sourceProvenance?: GoogleDevtoolsCloudbuildV1SourceProvenance;
|
|
@@ -430,7 +430,7 @@ declare namespace gapi.client {
|
|
|
430
430
|
automapSubstitutions?: boolean;
|
|
431
431
|
/** Optional. Option to specify how default logs buckets are setup. */
|
|
432
432
|
defaultLogsBucketBehavior?: string;
|
|
433
|
-
/** Requested disk size for the VM that runs the build. Note that this is *NOT* "disk free"; some of the space will be used by the operating system and build utilities. Also note that this is the minimum disk size that will be allocated for the build -- the build may run with a larger disk than requested. At present, the maximum disk size is
|
|
433
|
+
/** Requested disk size for the VM that runs the build. Note that this is *NOT* "disk free"; some of the space will be used by the operating system and build utilities. Also note that this is the minimum disk size that will be allocated for the build -- the build may run with a larger disk than requested. At present, the maximum disk size is 4000GB; builds that request more than the maximum are rejected with an error. */
|
|
434
434
|
diskSizeGb?: string;
|
|
435
435
|
/** Option to specify whether or not to apply bash style string operations to the substitutions. NOTE: this is always enabled for triggered builds and cannot be overridden in the build configuration file. */
|
|
436
436
|
dynamicSubstitutions?: boolean;
|
|
@@ -504,11 +504,11 @@ declare namespace gapi.client {
|
|
|
504
504
|
pushTiming?: GoogleDevtoolsCloudbuildV1TimeSpan;
|
|
505
505
|
}
|
|
506
506
|
interface GoogleDevtoolsCloudbuildV1ConnectedRepository {
|
|
507
|
-
/** Directory, relative to the source root, in which to run the build. */
|
|
507
|
+
/** Optional. Directory, relative to the source root, in which to run the build. */
|
|
508
508
|
dir?: string;
|
|
509
509
|
/** Required. Name of the Google Cloud Build repository, formatted as `projects/*/locations/*/connections/*/repositories/*`. */
|
|
510
510
|
repository?: string;
|
|
511
|
-
/** The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref. */
|
|
511
|
+
/** Required. The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref. */
|
|
512
512
|
revision?: string;
|
|
513
513
|
}
|
|
514
514
|
interface GoogleDevtoolsCloudbuildV1DeveloperConnectConfig {
|
|
@@ -542,11 +542,11 @@ declare namespace gapi.client {
|
|
|
542
542
|
http?: GoogleDevtoolsCloudbuildV1HttpConfig;
|
|
543
543
|
}
|
|
544
544
|
interface GoogleDevtoolsCloudbuildV1GitSource {
|
|
545
|
-
/** Directory, relative to the source root, in which to run the build. This must be a relative path. If a step's `dir` is specified and is an absolute path, this value is ignored for that step's execution. */
|
|
545
|
+
/** Optional. Directory, relative to the source root, in which to run the build. This must be a relative path. If a step's `dir` is specified and is an absolute path, this value is ignored for that step's execution. */
|
|
546
546
|
dir?: string;
|
|
547
|
-
/** The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref. Cloud Build uses `git fetch` to fetch the revision from the Git repository; therefore make sure that the string you provide for `revision` is parsable by the command. For information on string values accepted by `git fetch`, see https://git-scm.com/docs/gitrevisions#_specifying_revisions. For information on `git fetch`, see https://git-scm.com/docs/git-fetch. */
|
|
547
|
+
/** Optional. The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref. Cloud Build uses `git fetch` to fetch the revision from the Git repository; therefore make sure that the string you provide for `revision` is parsable by the command. For information on string values accepted by `git fetch`, see https://git-scm.com/docs/gitrevisions#_specifying_revisions. For information on `git fetch`, see https://git-scm.com/docs/git-fetch. */
|
|
548
548
|
revision?: string;
|
|
549
|
-
/** Location of the Git repo to build. This will be used as a `git remote`, see https://git-scm.com/docs/git-remote. */
|
|
549
|
+
/** Required. Location of the Git repo to build. This will be used as a `git remote`, see https://git-scm.com/docs/git-remote. */
|
|
550
550
|
url?: string;
|
|
551
551
|
}
|
|
552
552
|
interface GoogleDevtoolsCloudbuildV1Hash {
|
|
@@ -600,15 +600,15 @@ declare namespace gapi.client {
|
|
|
600
600
|
branchName?: string;
|
|
601
601
|
/** Explicit commit SHA to build. */
|
|
602
602
|
commitSha?: string;
|
|
603
|
-
/** Directory, relative to the source root, in which to run the build. This must be a relative path. If a step's `dir` is specified and is an absolute path, this value is ignored for that step's execution. */
|
|
603
|
+
/** Optional. Directory, relative to the source root, in which to run the build. This must be a relative path. If a step's `dir` is specified and is an absolute path, this value is ignored for that step's execution. */
|
|
604
604
|
dir?: string;
|
|
605
|
-
/** Only trigger a build if the revision regex does NOT match the revision regex. */
|
|
605
|
+
/** Optional. Only trigger a build if the revision regex does NOT match the revision regex. */
|
|
606
606
|
invertRegex?: boolean;
|
|
607
|
-
/** ID of the project that owns the Cloud Source Repository. If omitted, the project ID requesting the build is assumed. */
|
|
607
|
+
/** Optional. ID of the project that owns the Cloud Source Repository. If omitted, the project ID requesting the build is assumed. */
|
|
608
608
|
projectId?: string;
|
|
609
|
-
/** Name of the Cloud Source Repository. */
|
|
609
|
+
/** Required. Name of the Cloud Source Repository. */
|
|
610
610
|
repoName?: string;
|
|
611
|
-
/** Substitutions to use in a triggered build. Should only be used with RunBuildTrigger */
|
|
611
|
+
/** Optional. Substitutions to use in a triggered build. Should only be used with RunBuildTrigger */
|
|
612
612
|
substitutions?: {[P in string]: string};
|
|
613
613
|
/** Regex matching tags to build. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax */
|
|
614
614
|
tagName?: string;
|
|
@@ -682,19 +682,19 @@ declare namespace gapi.client {
|
|
|
682
682
|
interface GoogleDevtoolsCloudbuildV1StorageSource {
|
|
683
683
|
/** Cloud Storage bucket containing the source (see [Bucket Name Requirements](https://cloud.google.com/storage/docs/bucket-naming#requirements)). */
|
|
684
684
|
bucket?: string;
|
|
685
|
-
/** Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used. */
|
|
685
|
+
/** Optional. Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used. */
|
|
686
686
|
generation?: string;
|
|
687
|
-
/** Cloud Storage object containing the source. This object must be a zipped (`.zip`) or gzipped archive file (`.tar.gz`) containing source to build. */
|
|
687
|
+
/** Required. Cloud Storage object containing the source. This object must be a zipped (`.zip`) or gzipped archive file (`.tar.gz`) containing source to build. */
|
|
688
688
|
object?: string;
|
|
689
689
|
/** Optional. Option to specify the tool to fetch the source file for the build. */
|
|
690
690
|
sourceFetcher?: string;
|
|
691
691
|
}
|
|
692
692
|
interface GoogleDevtoolsCloudbuildV1StorageSourceManifest {
|
|
693
|
-
/** Cloud Storage bucket containing the source manifest (see [Bucket Name Requirements](https://cloud.google.com/storage/docs/bucket-naming#requirements)). */
|
|
693
|
+
/** Required. Cloud Storage bucket containing the source manifest (see [Bucket Name Requirements](https://cloud.google.com/storage/docs/bucket-naming#requirements)). */
|
|
694
694
|
bucket?: string;
|
|
695
695
|
/** Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used. */
|
|
696
696
|
generation?: string;
|
|
697
|
-
/** Cloud Storage object containing the source manifest. This object must be a JSON file. */
|
|
697
|
+
/** Required. Cloud Storage object containing the source manifest. This object must be a JSON file. */
|
|
698
698
|
object?: string;
|
|
699
699
|
}
|
|
700
700
|
interface GoogleDevtoolsCloudbuildV1TimeSpan {
|
|
@@ -1424,7 +1424,7 @@ declare namespace gapi.client {
|
|
|
1424
1424
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1425
1425
|
uploadType?: string;
|
|
1426
1426
|
}): Request<Configuration>;
|
|
1427
|
-
/** List configurations. */
|
|
1427
|
+
/** List configurations. Results are sorted by creation time, descending. */
|
|
1428
1428
|
list(request?: {
|
|
1429
1429
|
/** V1 error format. */
|
|
1430
1430
|
'$.xgafv'?: string;
|
|
@@ -1752,7 +1752,7 @@ declare namespace gapi.client {
|
|
|
1752
1752
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1753
1753
|
uploadType?: string;
|
|
1754
1754
|
}): Request<Execution>;
|
|
1755
|
-
/** List executions. */
|
|
1755
|
+
/** List executions. Results are sorted by creation time, descending. */
|
|
1756
1756
|
list(request?: {
|
|
1757
1757
|
/** V1 error format. */
|
|
1758
1758
|
'$.xgafv'?: string;
|
|
@@ -1913,7 +1913,7 @@ declare namespace gapi.client {
|
|
|
1913
1913
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1914
1914
|
uploadType?: string;
|
|
1915
1915
|
}): Request<Job>;
|
|
1916
|
-
/** List jobs. */
|
|
1916
|
+
/** List jobs. Results are sorted by creation time, descending. */
|
|
1917
1917
|
list(request?: {
|
|
1918
1918
|
/** V1 error format. */
|
|
1919
1919
|
'$.xgafv'?: string;
|
|
@@ -2134,7 +2134,7 @@ declare namespace gapi.client {
|
|
|
2134
2134
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2135
2135
|
uploadType?: string;
|
|
2136
2136
|
}): Request<Revision>;
|
|
2137
|
-
/** List revisions. */
|
|
2137
|
+
/** List revisions. Results are sorted by creation time, descending. */
|
|
2138
2138
|
list(request?: {
|
|
2139
2139
|
/** V1 error format. */
|
|
2140
2140
|
'$.xgafv'?: string;
|
|
@@ -2204,7 +2204,7 @@ declare namespace gapi.client {
|
|
|
2204
2204
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2205
2205
|
uploadType?: string;
|
|
2206
2206
|
}): Request<Route>;
|
|
2207
|
-
/** List routes. */
|
|
2207
|
+
/** List routes. Results are sorted by creation time, descending. */
|
|
2208
2208
|
list(request?: {
|
|
2209
2209
|
/** V1 error format. */
|
|
2210
2210
|
'$.xgafv'?: string;
|
|
@@ -2371,7 +2371,7 @@ declare namespace gapi.client {
|
|
|
2371
2371
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2372
2372
|
uploadType?: string;
|
|
2373
2373
|
}): Request<Service>;
|
|
2374
|
-
/** Lists services for the given project and region. */
|
|
2374
|
+
/** Lists services for the given project and region. Results are sorted by creation time, descending. */
|
|
2375
2375
|
list(request?: {
|
|
2376
2376
|
/** V1 error format. */
|
|
2377
2377
|
'$.xgafv'?: string;
|
|
@@ -2650,7 +2650,7 @@ declare namespace gapi.client {
|
|
|
2650
2650
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2651
2651
|
uploadType?: string;
|
|
2652
2652
|
}): Request<Configuration>;
|
|
2653
|
-
/** List configurations. */
|
|
2653
|
+
/** List configurations. Results are sorted by creation time, descending. */
|
|
2654
2654
|
list(request?: {
|
|
2655
2655
|
/** V1 error format. */
|
|
2656
2656
|
'$.xgafv'?: string;
|
|
@@ -3160,7 +3160,7 @@ declare namespace gapi.client {
|
|
|
3160
3160
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3161
3161
|
uploadType?: string;
|
|
3162
3162
|
}): Request<Revision>;
|
|
3163
|
-
/** List revisions. */
|
|
3163
|
+
/** List revisions. Results are sorted by creation time, descending. */
|
|
3164
3164
|
list(request?: {
|
|
3165
3165
|
/** V1 error format. */
|
|
3166
3166
|
'$.xgafv'?: string;
|
|
@@ -3230,7 +3230,7 @@ declare namespace gapi.client {
|
|
|
3230
3230
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3231
3231
|
uploadType?: string;
|
|
3232
3232
|
}): Request<Route>;
|
|
3233
|
-
/** List routes. */
|
|
3233
|
+
/** List routes. Results are sorted by creation time, descending. */
|
|
3234
3234
|
list(request?: {
|
|
3235
3235
|
/** V1 error format. */
|
|
3236
3236
|
'$.xgafv'?: string;
|
|
@@ -3426,7 +3426,7 @@ declare namespace gapi.client {
|
|
|
3426
3426
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3427
3427
|
uploadType?: string;
|
|
3428
3428
|
}): Request<Policy>;
|
|
3429
|
-
/** Lists services for the given project and region. */
|
|
3429
|
+
/** Lists services for the given project and region. Results are sorted by creation time, descending. */
|
|
3430
3430
|
list(request?: {
|
|
3431
3431
|
/** V1 error format. */
|
|
3432
3432
|
'$.xgafv'?: string;
|