@maxim_mazurok/gapi.client.cloudbuild-v2 0.0.20240415 → 0.0.20240427
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 +15 -1
- 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://cloudbuild.googleapis.com/$discovery/rest?version=v2
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240427
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -644,6 +644,10 @@ declare namespace gapi.client {
|
|
|
644
644
|
image?: string;
|
|
645
645
|
/** Name of the container specified as a DNS_LABEL. */
|
|
646
646
|
name?: string;
|
|
647
|
+
/** Optional. Optional parameters passed to the StepAction. */
|
|
648
|
+
params?: Param[];
|
|
649
|
+
/** Optional. Optional reference to a remote StepAction. */
|
|
650
|
+
ref?: StepRef;
|
|
647
651
|
/** The contents of an executable file to execute. */
|
|
648
652
|
script?: string;
|
|
649
653
|
/** Optional. SecurityContext defines the security options the Step should be run with. If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ +optional */
|
|
@@ -655,6 +659,14 @@ declare namespace gapi.client {
|
|
|
655
659
|
/** Container's working directory. */
|
|
656
660
|
workingDir?: string;
|
|
657
661
|
}
|
|
662
|
+
interface StepRef {
|
|
663
|
+
/** Optional. Name of the step. */
|
|
664
|
+
name?: string;
|
|
665
|
+
/** Optional. Parameters used to control the resolution. */
|
|
666
|
+
params?: Param[];
|
|
667
|
+
/** Optional. Type of the resolver. */
|
|
668
|
+
resolver?: string;
|
|
669
|
+
}
|
|
658
670
|
interface StepTemplate {
|
|
659
671
|
/** Optional. List of environment variables to set in the Step. Cannot be updated. */
|
|
660
672
|
env?: EnvVar[];
|
|
@@ -678,6 +690,8 @@ declare namespace gapi.client {
|
|
|
678
690
|
properties?: {[P in string]: PropertySpec};
|
|
679
691
|
/** The type of data that the result holds. */
|
|
680
692
|
type?: string;
|
|
693
|
+
/** Optional. Optionally used to initialize a Task's result with a Step's result. */
|
|
694
|
+
value?: ParamValue;
|
|
681
695
|
}
|
|
682
696
|
interface TaskSpec {
|
|
683
697
|
/** Description of the task. */
|