google-apis-dataform_v1beta1 0.45.0 → 0.46.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9370760ac1f186f3cc561d4a9702d45389bd3fcc6f70ea29bb7f5df7833650a3
4
- data.tar.gz: d0048e3fd71b4298338ea6156f17347f3dfb5b9e89ea27163027d8ddc22fa990
3
+ metadata.gz: 472a7654f28d48e5cb9808c38d10b3ffca45229d69a910c730083617904efc45
4
+ data.tar.gz: eb890502958cf0d803408304287f7905f5924ac2ec35456ed1ad8c036dd3d652
5
5
  SHA512:
6
- metadata.gz: 789ffd872d9924b86ab09af473c8b753176fd1bdd6662911396e5671fe91e68842424d1d9823c08ca75c980b308bd2c642e6225e146733fc756f6683ee94645d
7
- data.tar.gz: a3b97aa7b21a3f7a16b0a177aef514112bfd5c696ef65c6e11634d53063af597417c847f91a0e4ecca00985c8b38724287b9be145f8c56f665abec02b410d759
6
+ metadata.gz: c41fdf66a71220d04750bf95c824a9a343bbd4d96a32b198871ffb9c752c65e43c6760f956461d593d108ebf823c3560a763bd62d035d94ac18600917a35f288
7
+ data.tar.gz: 2f8aa1afefd0189f4ee4dd3f447de7e5306f906d73c2f3f7296ab2e12ff655fc10f06fa0e8274d613ee29fffa6dca8b45b60d83155be12fb5f995d6aa59ceac1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dataform_v1beta1
2
2
 
3
+ ### v0.46.0 (2025-07-20)
4
+
5
+ * Regenerated from discovery document revision 20250708
6
+
3
7
  ### v0.45.0 (2025-06-15)
4
8
 
5
9
  * Regenerated from discovery document revision 20250608
@@ -1374,6 +1374,37 @@ module Google
1374
1374
  end
1375
1375
  end
1376
1376
 
1377
+ # Contains metadata about the IAM policy override for a given Dataform resource.
1378
+ # If is_active is true, this the policy encoded in iam_policy_name is the source
1379
+ # of truth for this resource. Will be provided in internal ESV2 views for:
1380
+ # Workspaces, Repositories, Folders, TeamFolders.
1381
+ class IamPolicyOverrideView
1382
+ include Google::Apis::Core::Hashable
1383
+
1384
+ # An internal name for an IAM policy, based on the resource to which the policy
1385
+ # applies. Not to be confused with a resource's external full resource name. For
1386
+ # more information on this distinction, see go/iam-full-resource-names.
1387
+ # Corresponds to the JSON property `iamPolicyName`
1388
+ # @return [Google::Apis::DataformV1beta1::PolicyName]
1389
+ attr_accessor :iam_policy_name
1390
+
1391
+ # Whether the IAM policy encoded in this view is active.
1392
+ # Corresponds to the JSON property `isActive`
1393
+ # @return [Boolean]
1394
+ attr_accessor :is_active
1395
+ alias_method :is_active?, :is_active
1396
+
1397
+ def initialize(**args)
1398
+ update!(**args)
1399
+ end
1400
+
1401
+ # Update properties of this object
1402
+ def update!(**args)
1403
+ @iam_policy_name = args[:iam_policy_name] if args.key?(:iam_policy_name)
1404
+ @is_active = args[:is_active] if args.key?(:is_active)
1405
+ end
1406
+ end
1407
+
1377
1408
  # Load definition for incremental load modes
1378
1409
  class IncrementalLoadMode
1379
1410
  include Google::Apis::Core::Hashable
@@ -2266,6 +2297,46 @@ module Google
2266
2297
  end
2267
2298
  end
2268
2299
 
2300
+ # An internal name for an IAM policy, based on the resource to which the policy
2301
+ # applies. Not to be confused with a resource's external full resource name. For
2302
+ # more information on this distinction, see go/iam-full-resource-names.
2303
+ class PolicyName
2304
+ include Google::Apis::Core::Hashable
2305
+
2306
+ # Identifies an instance of the type. ID format varies by type. The ID format is
2307
+ # defined in the IAM .service file that defines the type, either in path_mapping
2308
+ # or in a comment.
2309
+ # Corresponds to the JSON property `id`
2310
+ # @return [String]
2311
+ attr_accessor :id
2312
+
2313
+ # For Cloud IAM: The location of the Policy. Must be empty or "global" for
2314
+ # Policies owned by global IAM. Must name a region from prodspec/cloud-iam-
2315
+ # cloudspec for Regional IAM Policies, see go/iam-faq#where-is-iam-currently-
2316
+ # deployed. For Local IAM: This field should be set to "local".
2317
+ # Corresponds to the JSON property `region`
2318
+ # @return [String]
2319
+ attr_accessor :region
2320
+
2321
+ # Resource type. Types are defined in IAM's .service files. Valid values for
2322
+ # type might be 'storage_buckets', 'compute_instances', '
2323
+ # resourcemanager_customers', 'billing_accounts', etc.
2324
+ # Corresponds to the JSON property `type`
2325
+ # @return [String]
2326
+ attr_accessor :type
2327
+
2328
+ def initialize(**args)
2329
+ update!(**args)
2330
+ end
2331
+
2332
+ # Update properties of this object
2333
+ def update!(**args)
2334
+ @id = args[:id] if args.key?(:id)
2335
+ @region = args[:region] if args.key?(:region)
2336
+ @type = args[:type] if args.key?(:type)
2337
+ end
2338
+ end
2339
+
2269
2340
  # `PullGitCommits` request message.
2270
2341
  class PullGitCommitsRequest
2271
2342
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DataformV1beta1
18
18
  # Version of the google-apis-dataform_v1beta1 gem
19
- GEM_VERSION = "0.45.0"
19
+ GEM_VERSION = "0.46.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250608"
25
+ REVISION = "20250708"
26
26
  end
27
27
  end
28
28
  end
@@ -274,6 +274,12 @@ module Google
274
274
  include Google::Apis::Core::JsonObjectSupport
275
275
  end
276
276
 
277
+ class IamPolicyOverrideView
278
+ class Representation < Google::Apis::Core::JsonRepresentation; end
279
+
280
+ include Google::Apis::Core::JsonObjectSupport
281
+ end
282
+
277
283
  class IncrementalLoadMode
278
284
  class Representation < Google::Apis::Core::JsonRepresentation; end
279
285
 
@@ -436,6 +442,12 @@ module Google
436
442
  include Google::Apis::Core::JsonObjectSupport
437
443
  end
438
444
 
445
+ class PolicyName
446
+ class Representation < Google::Apis::Core::JsonRepresentation; end
447
+
448
+ include Google::Apis::Core::JsonObjectSupport
449
+ end
450
+
439
451
  class PullGitCommitsRequest
440
452
  class Representation < Google::Apis::Core::JsonRepresentation; end
441
453
 
@@ -1085,6 +1097,15 @@ module Google
1085
1097
  end
1086
1098
  end
1087
1099
 
1100
+ class IamPolicyOverrideView
1101
+ # @private
1102
+ class Representation < Google::Apis::Core::JsonRepresentation
1103
+ property :iam_policy_name, as: 'iamPolicyName', class: Google::Apis::DataformV1beta1::PolicyName, decorator: Google::Apis::DataformV1beta1::PolicyName::Representation
1104
+
1105
+ property :is_active, as: 'isActive'
1106
+ end
1107
+ end
1108
+
1088
1109
  class IncrementalLoadMode
1089
1110
  # @private
1090
1111
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1336,6 +1357,15 @@ module Google
1336
1357
  end
1337
1358
  end
1338
1359
 
1360
+ class PolicyName
1361
+ # @private
1362
+ class Representation < Google::Apis::Core::JsonRepresentation
1363
+ property :id, as: 'id'
1364
+ property :region, as: 'region'
1365
+ property :type, as: 'type'
1366
+ end
1367
+ end
1368
+
1339
1369
  class PullGitCommitsRequest
1340
1370
  # @private
1341
1371
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dataform_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.45.0
4
+ version: 0.46.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataform_v1beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-dataform_v1beta1/v0.45.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataform_v1beta1/v0.46.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataform_v1beta1
62
62
  rdoc_options: []
63
63
  require_paths: