@maxim_mazurok/gapi.client.dataform-v1beta1 0.1.20250917 → 0.1.20251018

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 +409 -1
  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://dataform.googleapis.com/$discovery/rest?version=v1beta1
12
- // Revision: 20250917
12
+ // Revision: 20251018
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -77,6 +77,14 @@ declare namespace gapi.client {
77
77
  /** Output only. The generated BigQuery SQL script that will be executed. */
78
78
  sqlScript?: string;
79
79
  }
80
+ interface Binding {
81
+ /** The condition that is associated with this binding. If the condition evaluates to `true`, then this binding applies to the current request. If the condition evaluates to `false`, then this binding does not apply to the current request. However, a different role binding might grant the same role to one or more of the principals in this binding. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies). */
82
+ condition?: Expr;
83
+ /** Specifies the principals requesting access for a Google Cloud resource. `members` can have the following values: * `allUsers`: A special identifier that represents anyone who is on the internet; with or without a Google account. * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service account. Does not include identities that come from external identity providers (IdPs) through identity federation. * `user:{emailid}`: An email address that represents a specific Google account. For example, `alice@example.com` . * `serviceAccount:{emailid}`: An email address that represents a Google service account. For example, `my-other-app@appspot.gserviceaccount.com`. * `serviceAccount:{projectid}.svc.id.goog[{namespace}/{kubernetes-sa}]`: An identifier for a [Kubernetes service account](https://cloud.google.com/kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, `my-project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:{emailid}`: An email address that represents a Google group. For example, `admins@example.com`. * `domain:{domain}`: The G Suite domain (primary) that represents all the users of that domain. For example, `google.com` or `example.com`. * `principal://iam.googleapis.com/locations/global/workforcePools/{pool_id}/subject/{subject_attribute_value}`: A single identity in a workforce identity pool. * `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/group/{group_id}`: All workforce identities in a group. * `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/attribute.{attribute_name}/{attribute_value}`: All workforce identities with a specific attribute value. * `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/*`: All identities in a workforce identity pool. * `principal://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/subject/{subject_attribute_value}`: A single identity in a workload identity pool. * `principalSet://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/group/{group_id}`: A workload identity pool group. * `principalSet://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/attribute.{attribute_name}/{attribute_value}`: All identities in a workload identity pool with a certain attribute. * `principalSet://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/*`: All identities in a workload identity pool. * `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a user that has been recently deleted. For example, `alice@example.com?uid=123456789012345678901`. If the user is recovered, this value reverts to `user:{emailid}` and the recovered user retains the role in the binding. * `deleted:serviceAccount:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a service account that has been recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`. If the service account is undeleted, this value reverts to `serviceAccount:{emailid}` and the undeleted service account retains the role in the binding. * `deleted:group:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a Google group that has been recently deleted. For example, `admins@example.com?uid=123456789012345678901`. If the group is recovered, this value reverts to `group:{emailid}` and the recovered group retains the role in the binding. * `deleted:principal://iam.googleapis.com/locations/global/workforcePools/{pool_id}/subject/{subject_attribute_value}`: Deleted single identity in a workforce identity pool. For example, `deleted:principal://iam.googleapis.com/locations/global/workforcePools/my-pool-id/subject/my-subject-attribute-value`. */
84
+ members?: string[];
85
+ /** Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`. For an overview of the IAM roles and permissions, see the [IAM documentation](https://cloud.google.com/iam/docs/roles-overview). For a list of the available pre-defined roles, see [here](https://cloud.google.com/iam/docs/understanding-roles). */
86
+ role?: string;
87
+ }
80
88
  interface CancelOperationRequest {}
81
89
  interface CancelWorkflowInvocationRequest {}
82
90
  interface CancelWorkflowInvocationResponse {}
@@ -216,6 +224,8 @@ declare namespace gapi.client {
216
224
  interface Config {
217
225
  /** Optional. The default KMS key that is used if no encryption key is provided when a repository is created. */
218
226
  defaultKmsKeyName?: string;
227
+ /** Output only. All the metadata information that is used internally to serve the resource. For example: timestamps, flags, status fields, etc. The format of this field is a JSON string. */
228
+ internalMetadata?: string;
219
229
  /** Identifier. The config name. */
220
230
  name?: string;
221
231
  }
@@ -267,6 +277,16 @@ declare namespace gapi.client {
267
277
  /** Error Table target. */
268
278
  target?: Target;
269
279
  }
280
+ interface Expr {
281
+ /** Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI. */
282
+ description?: string;
283
+ /** Textual representation of an expression in Common Expression Language syntax. */
284
+ expression?: string;
285
+ /** Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file. */
286
+ location?: string;
287
+ /** Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression. */
288
+ title?: string;
289
+ }
270
290
  interface FetchFileDiffResponse {
271
291
  /** The raw formatted Git diff for the file. */
272
292
  formattedDiff?: string;
@@ -352,6 +372,8 @@ declare namespace gapi.client {
352
372
  includedTags?: string[];
353
373
  /** Optional. The set of action identifiers to include. */
354
374
  includedTargets?: Target[];
375
+ /** Optional. Specifies the priority for query execution in BigQuery. More information can be found at https://cloud.google.com/bigquery/docs/running-queries#queries. */
376
+ queryPriority?: string;
355
377
  /** Optional. The service account to run workflow invocations under. */
356
378
  serviceAccount?: string;
357
379
  /** Optional. When set to true, transitive dependencies of included actions will be executed. */
@@ -378,6 +400,8 @@ declare namespace gapi.client {
378
400
  nextPageToken?: string;
379
401
  /** A list of operations that matches the specified filter in the request. */
380
402
  operations?: Operation[];
403
+ /** Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections e.g. when attempting to list all resources across all supported locations. */
404
+ unreachable?: string[];
381
405
  }
382
406
  interface ListReleaseConfigsResponse {
383
407
  /** A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
@@ -524,6 +548,14 @@ declare namespace gapi.client {
524
548
  /** Arbitrary, user-defined tags on this action. */
525
549
  tags?: string[];
526
550
  }
551
+ interface Policy {
552
+ /** Associates a list of `members`, or principals, with a `role`. Optionally, may specify a `condition` that determines how and when the `bindings` are applied. Each of the `bindings` must contain at least one principal. The `bindings` in a `Policy` can refer to up to 1,500 principals; up to 250 of these principals can be Google groups. Each occurrence of a principal counts towards these limits. For example, if the `bindings` grant 50 different roles to `user:alice@example.com`, and not to any other principal, then you can add another 1,450 principals to the `bindings` in the `Policy`. */
553
+ bindings?: Binding[];
554
+ /** `etag` is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. It is strongly suggested that systems make use of the `etag` in the read-modify-write cycle to perform policy updates in order to avoid race conditions: An `etag` is returned in the response to `getIamPolicy`, and systems are expected to put that etag in the request to `setIamPolicy` to ensure that their change will be applied to the same version of the policy. **Important:** If you use IAM Conditions, you must include the `etag` field whenever you call `setIamPolicy`. If you omit this field, then IAM allows you to overwrite a version `3` policy with a version `1` policy, and all of the conditions in the version `3` policy are lost. */
555
+ etag?: string;
556
+ /** Specifies the format of the policy. Valid values are `0`, `1`, and `3`. Requests that specify an invalid value are rejected. Any operation that affects conditional role bindings must specify version `3`. This requirement applies to the following operations: * Getting a policy that includes a conditional role binding * Adding a conditional role binding to a policy * Changing a conditional role binding in a policy * Removing any role binding, with or without a condition, from a policy that includes conditions **Important:** If you use IAM Conditions, you must include the `etag` field whenever you call `setIamPolicy`. If you omit this field, then IAM allows you to overwrite a version `3` policy with a version `1` policy, and all of the conditions in the version `3` policy are lost. If a policy does not include any conditions, operations on that policy may specify any valid version or leave the field unset. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies). */
557
+ version?: number;
558
+ }
527
559
  interface PolicyName {
528
560
  /** Identifies an instance of the type. ID format varies by type. The ID format is defined in the IAM .service file that defines the type, either in path_mapping or in a comment. */
529
561
  id?: string;
@@ -705,6 +737,10 @@ declare namespace gapi.client {
705
737
  /** Details when search result is a file. */
706
738
  file?: FileSearchResult;
707
739
  }
740
+ interface SetIamPolicyRequest {
741
+ /** REQUIRED: The complete policy to be applied to the `resource`. The size of the policy is limited to a few 10s of KB. An empty policy is a valid policy but certain Google Cloud services (such as Projects) might reject them. */
742
+ policy?: Policy;
743
+ }
708
744
  interface SimpleLoadMode {}
709
745
  interface SqlDefinition {
710
746
  /** Error table configuration, */
@@ -736,6 +772,14 @@ declare namespace gapi.client {
736
772
  /** Optional. The action's schema (BigQuery dataset ID), within `database`. */
737
773
  schema?: string;
738
774
  }
775
+ interface TestIamPermissionsRequest {
776
+ /** The set of permissions to check for the `resource`. Permissions with wildcards (such as `*` or `storage.*`) are not allowed. For more information see [IAM Overview](https://cloud.google.com/iam/docs/overview#permissions). */
777
+ permissions?: string[];
778
+ }
779
+ interface TestIamPermissionsResponse {
780
+ /** A subset of `TestPermissionsRequest.permissions` that the caller is allowed. */
781
+ permissions?: string[];
782
+ }
739
783
  interface UncommittedFileChange {
740
784
  /** The file's full path including filename, relative to the workspace root. */
741
785
  path?: string;
@@ -833,6 +877,97 @@ declare namespace gapi.client {
833
877
  path?: string;
834
878
  }
835
879
  interface WriteFileResponse {}
880
+ interface FoldersResource {
881
+ /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
882
+ getIamPolicy(request?: {
883
+ /** V1 error format. */
884
+ '$.xgafv'?: string;
885
+ /** OAuth access token. */
886
+ access_token?: string;
887
+ /** Data format for response. */
888
+ alt?: string;
889
+ /** JSONP */
890
+ callback?: string;
891
+ /** Selector specifying which fields to include in a partial response. */
892
+ fields?: string;
893
+ /** 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. */
894
+ key?: string;
895
+ /** OAuth 2.0 token for the current user. */
896
+ oauth_token?: string;
897
+ /** 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). */
898
+ 'options.requestedPolicyVersion'?: number;
899
+ /** Returns response with indentations and line breaks. */
900
+ prettyPrint?: boolean;
901
+ /** 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. */
902
+ quotaUser?: string;
903
+ /** 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. */
904
+ resource: string;
905
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
906
+ upload_protocol?: string;
907
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
908
+ uploadType?: string;
909
+ }): Request<Policy>;
910
+ /** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
911
+ setIamPolicy(
912
+ request: {
913
+ /** V1 error format. */
914
+ '$.xgafv'?: string;
915
+ /** OAuth access token. */
916
+ access_token?: string;
917
+ /** Data format for response. */
918
+ alt?: string;
919
+ /** JSONP */
920
+ callback?: string;
921
+ /** Selector specifying which fields to include in a partial response. */
922
+ fields?: string;
923
+ /** 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. */
924
+ key?: string;
925
+ /** OAuth 2.0 token for the current user. */
926
+ oauth_token?: string;
927
+ /** Returns response with indentations and line breaks. */
928
+ prettyPrint?: boolean;
929
+ /** 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. */
930
+ quotaUser?: string;
931
+ /** 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. */
932
+ resource: string;
933
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
934
+ upload_protocol?: string;
935
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
936
+ uploadType?: string;
937
+ },
938
+ body: SetIamPolicyRequest,
939
+ ): Request<Policy>;
940
+ /** Returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a `NOT_FOUND` error. Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning. */
941
+ testIamPermissions(
942
+ request: {
943
+ /** V1 error format. */
944
+ '$.xgafv'?: string;
945
+ /** OAuth access token. */
946
+ access_token?: string;
947
+ /** Data format for response. */
948
+ alt?: string;
949
+ /** JSONP */
950
+ callback?: string;
951
+ /** Selector specifying which fields to include in a partial response. */
952
+ fields?: string;
953
+ /** 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. */
954
+ key?: string;
955
+ /** OAuth 2.0 token for the current user. */
956
+ oauth_token?: string;
957
+ /** Returns response with indentations and line breaks. */
958
+ prettyPrint?: boolean;
959
+ /** 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. */
960
+ quotaUser?: string;
961
+ /** 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. */
962
+ resource: string;
963
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
964
+ upload_protocol?: string;
965
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
966
+ uploadType?: string;
967
+ },
968
+ body: TestIamPermissionsRequest,
969
+ ): Request<TestIamPermissionsResponse>;
970
+ }
836
971
  interface OperationsResource {
837
972
  /** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
838
973
  cancel(request: {
@@ -974,6 +1109,8 @@ declare namespace gapi.client {
974
1109
  prettyPrint?: boolean;
975
1110
  /** 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. */
976
1111
  quotaUser?: string;
1112
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
1113
+ returnPartialSuccess?: boolean;
977
1114
  /** Upload protocol for media (e.g. "raw", "multipart"). */
978
1115
  upload_protocol?: string;
979
1116
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -2055,6 +2192,35 @@ declare namespace gapi.client {
2055
2192
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2056
2193
  uploadType?: string;
2057
2194
  }): Request<Workspace>;
2195
+ /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
2196
+ getIamPolicy(request?: {
2197
+ /** V1 error format. */
2198
+ '$.xgafv'?: string;
2199
+ /** OAuth access token. */
2200
+ access_token?: string;
2201
+ /** Data format for response. */
2202
+ alt?: string;
2203
+ /** JSONP */
2204
+ callback?: string;
2205
+ /** Selector specifying which fields to include in a partial response. */
2206
+ fields?: string;
2207
+ /** 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. */
2208
+ key?: string;
2209
+ /** OAuth 2.0 token for the current user. */
2210
+ oauth_token?: string;
2211
+ /** 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). */
2212
+ 'options.requestedPolicyVersion'?: number;
2213
+ /** Returns response with indentations and line breaks. */
2214
+ prettyPrint?: boolean;
2215
+ /** 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. */
2216
+ quotaUser?: string;
2217
+ /** 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. */
2218
+ resource: string;
2219
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2220
+ upload_protocol?: string;
2221
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2222
+ uploadType?: string;
2223
+ }): Request<Policy>;
2058
2224
  /** Installs dependency NPM packages (inside a Workspace). */
2059
2225
  installNpmPackages(request: {
2060
2226
  /** V1 error format. */
@@ -2709,6 +2875,66 @@ declare namespace gapi.client {
2709
2875
  /** Required. The workspace's name. */
2710
2876
  workspace: string;
2711
2877
  }): Request<SearchFilesResponse>;
2878
+ /** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
2879
+ setIamPolicy(
2880
+ request: {
2881
+ /** V1 error format. */
2882
+ '$.xgafv'?: string;
2883
+ /** OAuth access token. */
2884
+ access_token?: string;
2885
+ /** Data format for response. */
2886
+ alt?: string;
2887
+ /** JSONP */
2888
+ callback?: string;
2889
+ /** Selector specifying which fields to include in a partial response. */
2890
+ fields?: string;
2891
+ /** 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. */
2892
+ key?: string;
2893
+ /** OAuth 2.0 token for the current user. */
2894
+ oauth_token?: string;
2895
+ /** Returns response with indentations and line breaks. */
2896
+ prettyPrint?: boolean;
2897
+ /** 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. */
2898
+ quotaUser?: string;
2899
+ /** 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. */
2900
+ resource: string;
2901
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2902
+ upload_protocol?: string;
2903
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2904
+ uploadType?: string;
2905
+ },
2906
+ body: SetIamPolicyRequest,
2907
+ ): Request<Policy>;
2908
+ /** Returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a `NOT_FOUND` error. Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning. */
2909
+ testIamPermissions(
2910
+ request: {
2911
+ /** V1 error format. */
2912
+ '$.xgafv'?: string;
2913
+ /** OAuth access token. */
2914
+ access_token?: string;
2915
+ /** Data format for response. */
2916
+ alt?: string;
2917
+ /** JSONP */
2918
+ callback?: string;
2919
+ /** Selector specifying which fields to include in a partial response. */
2920
+ fields?: string;
2921
+ /** 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. */
2922
+ key?: string;
2923
+ /** OAuth 2.0 token for the current user. */
2924
+ oauth_token?: string;
2925
+ /** Returns response with indentations and line breaks. */
2926
+ prettyPrint?: boolean;
2927
+ /** 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. */
2928
+ quotaUser?: string;
2929
+ /** 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. */
2930
+ resource: string;
2931
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2932
+ upload_protocol?: string;
2933
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2934
+ uploadType?: string;
2935
+ },
2936
+ body: TestIamPermissionsRequest,
2937
+ ): Request<TestIamPermissionsResponse>;
2712
2938
  /** Writes to a file (inside a Workspace). */
2713
2939
  writeFile(request: {
2714
2940
  /** V1 error format. */
@@ -3030,6 +3256,35 @@ declare namespace gapi.client {
3030
3256
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3031
3257
  uploadType?: string;
3032
3258
  }): Request<Repository>;
3259
+ /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
3260
+ getIamPolicy(request?: {
3261
+ /** V1 error format. */
3262
+ '$.xgafv'?: string;
3263
+ /** OAuth access token. */
3264
+ access_token?: string;
3265
+ /** Data format for response. */
3266
+ alt?: string;
3267
+ /** JSONP */
3268
+ callback?: string;
3269
+ /** Selector specifying which fields to include in a partial response. */
3270
+ fields?: string;
3271
+ /** 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. */
3272
+ key?: string;
3273
+ /** OAuth 2.0 token for the current user. */
3274
+ oauth_token?: string;
3275
+ /** 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). */
3276
+ 'options.requestedPolicyVersion'?: number;
3277
+ /** Returns response with indentations and line breaks. */
3278
+ prettyPrint?: boolean;
3279
+ /** 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. */
3280
+ quotaUser?: string;
3281
+ /** 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. */
3282
+ resource: string;
3283
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
3284
+ upload_protocol?: string;
3285
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3286
+ uploadType?: string;
3287
+ }): Request<Policy>;
3033
3288
  /** Lists Repositories in a given project and location. **Note:** *This method can return repositories not shown in the [Dataform UI](https://console.cloud.google.com/bigquery/dataform)*. */
3034
3289
  list(request?: {
3035
3290
  /** V1 error format. */
@@ -3193,12 +3448,163 @@ declare namespace gapi.client {
3193
3448
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3194
3449
  uploadType?: string;
3195
3450
  }): Request<ReadRepositoryFileResponse>;
3451
+ /** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
3452
+ setIamPolicy(
3453
+ request: {
3454
+ /** V1 error format. */
3455
+ '$.xgafv'?: string;
3456
+ /** OAuth access token. */
3457
+ access_token?: string;
3458
+ /** Data format for response. */
3459
+ alt?: string;
3460
+ /** JSONP */
3461
+ callback?: string;
3462
+ /** Selector specifying which fields to include in a partial response. */
3463
+ fields?: string;
3464
+ /** 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. */
3465
+ key?: string;
3466
+ /** OAuth 2.0 token for the current user. */
3467
+ oauth_token?: string;
3468
+ /** Returns response with indentations and line breaks. */
3469
+ prettyPrint?: boolean;
3470
+ /** 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. */
3471
+ quotaUser?: string;
3472
+ /** 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. */
3473
+ resource: string;
3474
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
3475
+ upload_protocol?: string;
3476
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3477
+ uploadType?: string;
3478
+ },
3479
+ body: SetIamPolicyRequest,
3480
+ ): Request<Policy>;
3481
+ /** Returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a `NOT_FOUND` error. Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning. */
3482
+ testIamPermissions(
3483
+ request: {
3484
+ /** V1 error format. */
3485
+ '$.xgafv'?: string;
3486
+ /** OAuth access token. */
3487
+ access_token?: string;
3488
+ /** Data format for response. */
3489
+ alt?: string;
3490
+ /** JSONP */
3491
+ callback?: string;
3492
+ /** Selector specifying which fields to include in a partial response. */
3493
+ fields?: string;
3494
+ /** 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. */
3495
+ key?: string;
3496
+ /** OAuth 2.0 token for the current user. */
3497
+ oauth_token?: string;
3498
+ /** Returns response with indentations and line breaks. */
3499
+ prettyPrint?: boolean;
3500
+ /** 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. */
3501
+ quotaUser?: string;
3502
+ /** 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. */
3503
+ resource: string;
3504
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
3505
+ upload_protocol?: string;
3506
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3507
+ uploadType?: string;
3508
+ },
3509
+ body: TestIamPermissionsRequest,
3510
+ ): Request<TestIamPermissionsResponse>;
3196
3511
  compilationResults: CompilationResultsResource;
3197
3512
  releaseConfigs: ReleaseConfigsResource;
3198
3513
  workflowConfigs: WorkflowConfigsResource;
3199
3514
  workflowInvocations: WorkflowInvocationsResource;
3200
3515
  workspaces: WorkspacesResource;
3201
3516
  }
3517
+ interface TeamFoldersResource {
3518
+ /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
3519
+ getIamPolicy(request?: {
3520
+ /** V1 error format. */
3521
+ '$.xgafv'?: string;
3522
+ /** OAuth access token. */
3523
+ access_token?: string;
3524
+ /** Data format for response. */
3525
+ alt?: string;
3526
+ /** JSONP */
3527
+ callback?: string;
3528
+ /** Selector specifying which fields to include in a partial response. */
3529
+ fields?: string;
3530
+ /** 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. */
3531
+ key?: string;
3532
+ /** OAuth 2.0 token for the current user. */
3533
+ oauth_token?: string;
3534
+ /** 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). */
3535
+ 'options.requestedPolicyVersion'?: number;
3536
+ /** Returns response with indentations and line breaks. */
3537
+ prettyPrint?: boolean;
3538
+ /** 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. */
3539
+ quotaUser?: string;
3540
+ /** 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. */
3541
+ resource: string;
3542
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
3543
+ upload_protocol?: string;
3544
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3545
+ uploadType?: string;
3546
+ }): Request<Policy>;
3547
+ /** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
3548
+ setIamPolicy(
3549
+ request: {
3550
+ /** V1 error format. */
3551
+ '$.xgafv'?: string;
3552
+ /** OAuth access token. */
3553
+ access_token?: string;
3554
+ /** Data format for response. */
3555
+ alt?: string;
3556
+ /** JSONP */
3557
+ callback?: string;
3558
+ /** Selector specifying which fields to include in a partial response. */
3559
+ fields?: string;
3560
+ /** 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. */
3561
+ key?: string;
3562
+ /** OAuth 2.0 token for the current user. */
3563
+ oauth_token?: string;
3564
+ /** Returns response with indentations and line breaks. */
3565
+ prettyPrint?: boolean;
3566
+ /** 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. */
3567
+ quotaUser?: string;
3568
+ /** 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. */
3569
+ resource: string;
3570
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
3571
+ upload_protocol?: string;
3572
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3573
+ uploadType?: string;
3574
+ },
3575
+ body: SetIamPolicyRequest,
3576
+ ): Request<Policy>;
3577
+ /** Returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a `NOT_FOUND` error. Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning. */
3578
+ testIamPermissions(
3579
+ request: {
3580
+ /** V1 error format. */
3581
+ '$.xgafv'?: string;
3582
+ /** OAuth access token. */
3583
+ access_token?: string;
3584
+ /** Data format for response. */
3585
+ alt?: string;
3586
+ /** JSONP */
3587
+ callback?: string;
3588
+ /** Selector specifying which fields to include in a partial response. */
3589
+ fields?: string;
3590
+ /** 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. */
3591
+ key?: string;
3592
+ /** OAuth 2.0 token for the current user. */
3593
+ oauth_token?: string;
3594
+ /** Returns response with indentations and line breaks. */
3595
+ prettyPrint?: boolean;
3596
+ /** 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. */
3597
+ quotaUser?: string;
3598
+ /** 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. */
3599
+ resource: string;
3600
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
3601
+ upload_protocol?: string;
3602
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3603
+ uploadType?: string;
3604
+ },
3605
+ body: TestIamPermissionsRequest,
3606
+ ): Request<TestIamPermissionsResponse>;
3607
+ }
3202
3608
  interface LocationsResource {
3203
3609
  /** Gets information about a location. */
3204
3610
  get(request?: {
@@ -3351,8 +3757,10 @@ declare namespace gapi.client {
3351
3757
  },
3352
3758
  body: Config,
3353
3759
  ): Request<Config>;
3760
+ folders: FoldersResource;
3354
3761
  operations: OperationsResource;
3355
3762
  repositories: RepositoriesResource;
3763
+ teamFolders: TeamFoldersResource;
3356
3764
  }
3357
3765
  interface ProjectsResource {
3358
3766
  locations: LocationsResource;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.dataform-v1beta1",
3
- "version": "0.1.20250917",
3
+ "version": "0.1.20251018",
4
4
  "description": "TypeScript typings for Dataform API v1beta1",
5
5
  "repository": {
6
6
  "type": "git",