@maxim_mazurok/gapi.client.run-v1 0.0.20250504 → 0.0.20250509
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 +93 -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://run.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250509
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -3908,6 +3908,97 @@ declare namespace gapi.client {
|
|
|
3908
3908
|
body: TestIamPermissionsRequest,
|
|
3909
3909
|
): Request<TestIamPermissionsResponse>;
|
|
3910
3910
|
}
|
|
3911
|
+
interface WorkerpoolsResource {
|
|
3912
|
+
/** Get the IAM Access Control policy currently in effect for the given worker pool. This result does not include any inherited policies. */
|
|
3913
|
+
getIamPolicy(request?: {
|
|
3914
|
+
/** V1 error format. */
|
|
3915
|
+
'$.xgafv'?: string;
|
|
3916
|
+
/** OAuth access token. */
|
|
3917
|
+
access_token?: string;
|
|
3918
|
+
/** Data format for response. */
|
|
3919
|
+
alt?: string;
|
|
3920
|
+
/** JSONP */
|
|
3921
|
+
callback?: string;
|
|
3922
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3923
|
+
fields?: string;
|
|
3924
|
+
/** 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. */
|
|
3925
|
+
key?: string;
|
|
3926
|
+
/** OAuth 2.0 token for the current user. */
|
|
3927
|
+
oauth_token?: string;
|
|
3928
|
+
/** 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). */
|
|
3929
|
+
'options.requestedPolicyVersion'?: number;
|
|
3930
|
+
/** Returns response with indentations and line breaks. */
|
|
3931
|
+
prettyPrint?: boolean;
|
|
3932
|
+
/** 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. */
|
|
3933
|
+
quotaUser?: string;
|
|
3934
|
+
/** 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. */
|
|
3935
|
+
resource: string;
|
|
3936
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3937
|
+
upload_protocol?: string;
|
|
3938
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3939
|
+
uploadType?: string;
|
|
3940
|
+
}): Request<Policy>;
|
|
3941
|
+
/** Sets the IAM Access control policy for the specified worker pool. Overwrites any existing policy. */
|
|
3942
|
+
setIamPolicy(
|
|
3943
|
+
request: {
|
|
3944
|
+
/** V1 error format. */
|
|
3945
|
+
'$.xgafv'?: string;
|
|
3946
|
+
/** OAuth access token. */
|
|
3947
|
+
access_token?: string;
|
|
3948
|
+
/** Data format for response. */
|
|
3949
|
+
alt?: string;
|
|
3950
|
+
/** JSONP */
|
|
3951
|
+
callback?: string;
|
|
3952
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3953
|
+
fields?: string;
|
|
3954
|
+
/** 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. */
|
|
3955
|
+
key?: string;
|
|
3956
|
+
/** OAuth 2.0 token for the current user. */
|
|
3957
|
+
oauth_token?: string;
|
|
3958
|
+
/** Returns response with indentations and line breaks. */
|
|
3959
|
+
prettyPrint?: boolean;
|
|
3960
|
+
/** 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. */
|
|
3961
|
+
quotaUser?: string;
|
|
3962
|
+
/** 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. */
|
|
3963
|
+
resource: string;
|
|
3964
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3965
|
+
upload_protocol?: string;
|
|
3966
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3967
|
+
uploadType?: string;
|
|
3968
|
+
},
|
|
3969
|
+
body: SetIamPolicyRequest,
|
|
3970
|
+
): Request<Policy>;
|
|
3971
|
+
/** Returns permissions that a caller has on the specified worker pool. There are no permissions required for making this API call. */
|
|
3972
|
+
testIamPermissions(
|
|
3973
|
+
request: {
|
|
3974
|
+
/** V1 error format. */
|
|
3975
|
+
'$.xgafv'?: string;
|
|
3976
|
+
/** OAuth access token. */
|
|
3977
|
+
access_token?: string;
|
|
3978
|
+
/** Data format for response. */
|
|
3979
|
+
alt?: string;
|
|
3980
|
+
/** JSONP */
|
|
3981
|
+
callback?: string;
|
|
3982
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3983
|
+
fields?: string;
|
|
3984
|
+
/** 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. */
|
|
3985
|
+
key?: string;
|
|
3986
|
+
/** OAuth 2.0 token for the current user. */
|
|
3987
|
+
oauth_token?: string;
|
|
3988
|
+
/** Returns response with indentations and line breaks. */
|
|
3989
|
+
prettyPrint?: boolean;
|
|
3990
|
+
/** 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. */
|
|
3991
|
+
quotaUser?: string;
|
|
3992
|
+
/** 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. */
|
|
3993
|
+
resource: string;
|
|
3994
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3995
|
+
upload_protocol?: string;
|
|
3996
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3997
|
+
uploadType?: string;
|
|
3998
|
+
},
|
|
3999
|
+
body: TestIamPermissionsRequest,
|
|
4000
|
+
): Request<TestIamPermissionsResponse>;
|
|
4001
|
+
}
|
|
3911
4002
|
interface LocationsResource {
|
|
3912
4003
|
/** Lists information about the supported locations for this service. */
|
|
3913
4004
|
list(request?: {
|
|
@@ -3952,6 +4043,7 @@ declare namespace gapi.client {
|
|
|
3952
4043
|
revisions: RevisionsResource;
|
|
3953
4044
|
routes: RoutesResource;
|
|
3954
4045
|
services: ServicesResource;
|
|
4046
|
+
workerpools: WorkerpoolsResource;
|
|
3955
4047
|
}
|
|
3956
4048
|
interface ProjectsResource {
|
|
3957
4049
|
authorizeddomains: AuthorizeddomainsResource;
|