@maxim_mazurok/gapi.client.run-v1 0.0.20240621 → 0.0.20240705
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 +7 -13
- 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: 20240705
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -248,10 +248,14 @@ declare namespace gapi.client {
|
|
|
248
248
|
status?: ExecutionStatus;
|
|
249
249
|
}
|
|
250
250
|
interface ExecutionReference {
|
|
251
|
+
/** Optional. Status for the execution completion. */
|
|
252
|
+
completionStatus?: string;
|
|
251
253
|
/** Optional. Completion timestamp of the execution. */
|
|
252
254
|
completionTimestamp?: string;
|
|
253
255
|
/** Optional. Creation timestamp of the execution. */
|
|
254
256
|
creationTimestamp?: string;
|
|
257
|
+
/** Optional. The read-only soft deletion timestamp of the execution. */
|
|
258
|
+
deletionTimestamp?: string;
|
|
255
259
|
/** Optional. Name of the execution. */
|
|
256
260
|
name?: string;
|
|
257
261
|
}
|
|
@@ -529,14 +533,6 @@ declare namespace gapi.client {
|
|
|
529
533
|
/** Collection of file hashes. */
|
|
530
534
|
fileHash?: GoogleDevtoolsCloudbuildV1Hash[];
|
|
531
535
|
}
|
|
532
|
-
interface GoogleDevtoolsCloudbuildV1GCSLocation {
|
|
533
|
-
/** Cloud Storage bucket. See https://cloud.google.com/storage/docs/naming#requirements */
|
|
534
|
-
bucket?: string;
|
|
535
|
-
/** Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used. */
|
|
536
|
-
generation?: string;
|
|
537
|
-
/** Cloud Storage object. See https://cloud.google.com/storage/docs/naming#objectnames */
|
|
538
|
-
object?: string;
|
|
539
|
-
}
|
|
540
536
|
interface GoogleDevtoolsCloudbuildV1GitConfig {
|
|
541
537
|
/** Configuration for HTTP related git operations. */
|
|
542
538
|
http?: GoogleDevtoolsCloudbuildV1HttpConfig;
|
|
@@ -556,10 +552,8 @@ declare namespace gapi.client {
|
|
|
556
552
|
value?: string;
|
|
557
553
|
}
|
|
558
554
|
interface GoogleDevtoolsCloudbuildV1HttpConfig {
|
|
559
|
-
/** SecretVersion resource of the HTTP proxy URL. The proxy URL should be in format protocol://@]proxyhost[:port]
|
|
555
|
+
/** SecretVersion resource of the HTTP proxy URL. The Service Account used in the build (either the default Service Account or user-specified Service Account) should have `secretmanager.versions.access` permissions on this secret. The proxy URL should be in format `protocol://@]proxyhost[:port]`. */
|
|
560
556
|
proxySecretVersionName?: string;
|
|
561
|
-
/** Optional. Cloud Storage object storing the certificate to use with the HTTP proxy. */
|
|
562
|
-
proxySslCaInfo?: GoogleDevtoolsCloudbuildV1GCSLocation;
|
|
563
557
|
}
|
|
564
558
|
interface GoogleDevtoolsCloudbuildV1InlineSecret {
|
|
565
559
|
/** Map of environment variable name to its encrypted value. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step. Values can be at most 64 KB in size. There can be at most 100 secret values across all of a build's secrets. */
|
|
@@ -1084,7 +1078,7 @@ declare namespace gapi.client {
|
|
|
1084
1078
|
interface RevisionSpec {
|
|
1085
1079
|
/** ContainerConcurrency specifies the maximum allowed in-flight (concurrent) requests per container instance of the Revision. If not specified, defaults to 80. */
|
|
1086
1080
|
containerConcurrency?: number;
|
|
1087
|
-
/** Required. Containers holds the
|
|
1081
|
+
/** Required. Containers holds the list which define the units of execution for this Revision. In the context of a Revision, we disallow a number of fields on this Container, including: name and lifecycle. */
|
|
1088
1082
|
containers?: Container[];
|
|
1089
1083
|
/** Not supported by Cloud Run. */
|
|
1090
1084
|
enableServiceLinks?: boolean;
|