@maxim_mazurok/gapi.client.dataform-v1beta1 0.0.20250622 → 0.0.20250720
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://dataform.googleapis.com/$discovery/rest?version=v1beta1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250720
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -330,6 +330,12 @@ declare namespace gapi.client {
|
|
|
330
330
|
/** Required. The Git remote's URL. */
|
|
331
331
|
url?: string;
|
|
332
332
|
}
|
|
333
|
+
interface IamPolicyOverrideView {
|
|
334
|
+
/** The IAM policy name for the resource. */
|
|
335
|
+
iamPolicyName?: PolicyName;
|
|
336
|
+
/** Whether the IAM policy encoded in this view is active. */
|
|
337
|
+
isActive?: boolean;
|
|
338
|
+
}
|
|
333
339
|
interface IncrementalLoadMode {
|
|
334
340
|
/** Column name for incremental load modes */
|
|
335
341
|
column?: string;
|
|
@@ -525,6 +531,14 @@ declare namespace gapi.client {
|
|
|
525
531
|
/** 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). */
|
|
526
532
|
version?: number;
|
|
527
533
|
}
|
|
534
|
+
interface PolicyName {
|
|
535
|
+
/** 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. */
|
|
536
|
+
id?: string;
|
|
537
|
+
/** For Cloud IAM: The location of the Policy. Must be empty or "global" for Policies owned by global IAM. Must name a region from prodspec/cloud-iam-cloudspec for Regional IAM Policies, see go/iam-faq#where-is-iam-currently-deployed. For Local IAM: This field should be set to "local". */
|
|
538
|
+
region?: string;
|
|
539
|
+
/** Resource type. Types are defined in IAM's .service files. Valid values for type might be 'storage_buckets', 'compute_instances', 'resourcemanager_customers', 'billing_accounts', etc. */
|
|
540
|
+
type?: string;
|
|
541
|
+
}
|
|
528
542
|
interface PullGitCommitsRequest {
|
|
529
543
|
/** Required. The author of any merge commit which may be created as a result of merging fetched Git commits into this workspace. */
|
|
530
544
|
author?: CommitAuthor;
|