@maxim_mazurok/gapi.client.run-v1 0.0.20250504 → 0.0.20250606

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.
Files changed (2) hide show
  1. package/index.d.ts +97 -3
  2. 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: 20250504
12
+ // Revision: 20250606
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -572,7 +572,7 @@ declare namespace gapi.client {
572
572
  revision?: string;
573
573
  }
574
574
  interface GoogleDevtoolsCloudbuildV1GitSourceRepository {
575
- /** The Developer Connect Git repository link or the url that matches a repository link in the current project, formatted as `projects/*‍/locations/*‍/connections/*‍/gitRepositoryLink/*` */
575
+ /** The Developer Connect Git repository link formatted as `projects/*‍/locations/*‍/connections/*‍/gitRepositoryLink/*` */
576
576
  developerConnect?: string;
577
577
  /** Location of the Git repository. */
578
578
  url?: string;
@@ -1343,10 +1343,12 @@ declare namespace gapi.client {
1343
1343
  status?: TaskStatus;
1344
1344
  }
1345
1345
  interface TaskAttemptResult {
1346
- /** Optional. The exit code of this attempt. This may be unset if the container was unable to exit cleanly with a code due to some other failure. See status field for possible failure details. */
1346
+ /** Optional. The exit code of this attempt. This may be unset if the container was unable to exit cleanly with a code due to some other failure. See status field for possible failure details. At most one of exit_code or term_signal will be set. */
1347
1347
  exitCode?: number;
1348
1348
  /** Optional. The status of this attempt. If the status code is OK, then the attempt succeeded. */
1349
1349
  status?: GoogleRpcStatus;
1350
+ /** Optional. Termination signal of the container. This is set to non-zero if the container is terminated by the system. At most one of exit_code or term_signal will be set. */
1351
+ termSignal?: number;
1350
1352
  }
1351
1353
  interface TaskSpec {
1352
1354
  /** Optional. List of containers belonging to the task. We disallow a number of fields on this Container. */
@@ -3908,6 +3910,97 @@ declare namespace gapi.client {
3908
3910
  body: TestIamPermissionsRequest,
3909
3911
  ): Request<TestIamPermissionsResponse>;
3910
3912
  }
3913
+ interface WorkerpoolsResource {
3914
+ /** Get the IAM Access Control policy currently in effect for the given worker pool. This result does not include any inherited policies. */
3915
+ getIamPolicy(request?: {
3916
+ /** V1 error format. */
3917
+ '$.xgafv'?: string;
3918
+ /** OAuth access token. */
3919
+ access_token?: string;
3920
+ /** Data format for response. */
3921
+ alt?: string;
3922
+ /** JSONP */
3923
+ callback?: string;
3924
+ /** Selector specifying which fields to include in a partial response. */
3925
+ fields?: string;
3926
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
3927
+ key?: string;
3928
+ /** OAuth 2.0 token for the current user. */
3929
+ oauth_token?: string;
3930
+ /** Optional. The maximum policy version that will be used to format the policy. Valid values are 0, 1, and 3. Requests specifying an invalid value will be rejected. Requests for policies with any conditional role bindings must specify version 3. Policies with no conditional role bindings may specify any valid value or leave the field unset. The policy in the response might use the policy version that you specified, or it might use a lower policy version. For example, if you specify version 3, but the policy has no conditional role bindings, the response uses version 1. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies). */
3931
+ 'options.requestedPolicyVersion'?: number;
3932
+ /** Returns response with indentations and line breaks. */
3933
+ prettyPrint?: boolean;
3934
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
3935
+ quotaUser?: string;
3936
+ /** REQUIRED: The resource for which the policy is being requested. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field. */
3937
+ resource: string;
3938
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
3939
+ upload_protocol?: string;
3940
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3941
+ uploadType?: string;
3942
+ }): Request<Policy>;
3943
+ /** Sets the IAM Access control policy for the specified worker pool. Overwrites any existing policy. */
3944
+ setIamPolicy(
3945
+ request: {
3946
+ /** V1 error format. */
3947
+ '$.xgafv'?: string;
3948
+ /** OAuth access token. */
3949
+ access_token?: string;
3950
+ /** Data format for response. */
3951
+ alt?: string;
3952
+ /** JSONP */
3953
+ callback?: string;
3954
+ /** Selector specifying which fields to include in a partial response. */
3955
+ fields?: string;
3956
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
3957
+ key?: string;
3958
+ /** OAuth 2.0 token for the current user. */
3959
+ oauth_token?: string;
3960
+ /** Returns response with indentations and line breaks. */
3961
+ prettyPrint?: boolean;
3962
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
3963
+ quotaUser?: string;
3964
+ /** REQUIRED: The resource for which the policy is being specified. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field. */
3965
+ resource: string;
3966
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
3967
+ upload_protocol?: string;
3968
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3969
+ uploadType?: string;
3970
+ },
3971
+ body: SetIamPolicyRequest,
3972
+ ): Request<Policy>;
3973
+ /** Returns permissions that a caller has on the specified worker pool. There are no permissions required for making this API call. */
3974
+ testIamPermissions(
3975
+ request: {
3976
+ /** V1 error format. */
3977
+ '$.xgafv'?: string;
3978
+ /** OAuth access token. */
3979
+ access_token?: string;
3980
+ /** Data format for response. */
3981
+ alt?: string;
3982
+ /** JSONP */
3983
+ callback?: string;
3984
+ /** Selector specifying which fields to include in a partial response. */
3985
+ fields?: string;
3986
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
3987
+ key?: string;
3988
+ /** OAuth 2.0 token for the current user. */
3989
+ oauth_token?: string;
3990
+ /** Returns response with indentations and line breaks. */
3991
+ prettyPrint?: boolean;
3992
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
3993
+ quotaUser?: string;
3994
+ /** REQUIRED: The resource for which the policy detail is being requested. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field. */
3995
+ resource: string;
3996
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
3997
+ upload_protocol?: string;
3998
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3999
+ uploadType?: string;
4000
+ },
4001
+ body: TestIamPermissionsRequest,
4002
+ ): Request<TestIamPermissionsResponse>;
4003
+ }
3911
4004
  interface LocationsResource {
3912
4005
  /** Lists information about the supported locations for this service. */
3913
4006
  list(request?: {
@@ -3952,6 +4045,7 @@ declare namespace gapi.client {
3952
4045
  revisions: RevisionsResource;
3953
4046
  routes: RoutesResource;
3954
4047
  services: ServicesResource;
4048
+ workerpools: WorkerpoolsResource;
3955
4049
  }
3956
4050
  interface ProjectsResource {
3957
4051
  authorizeddomains: AuthorizeddomainsResource;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.run-v1",
3
- "version": "0.0.20250504",
3
+ "version": "0.0.20250606",
4
4
  "description": "TypeScript typings for Cloud Run Admin API v1",
5
5
  "repository": {
6
6
  "type": "git",