google-apis-dataplex_v1 0.91.0 → 0.92.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: fb75cfa9562c5b7c807cf842c471a704e05ab18cba6470baca55719faf42357f
4
- data.tar.gz: d56bcad3bb499ef91484697109da57a2b3df13216b79e0a9e77baaa7462e8f06
3
+ metadata.gz: 2d364ce1217b45f2bda903eea47fb2a3ed20cba65249378336e47581da421c09
4
+ data.tar.gz: 9cf4dad59c99ee2a72859c025b745b66fef1a360982bc5199426a5ea1a8f908e
5
5
  SHA512:
6
- metadata.gz: b78c26c180e23d8fc85c83aa556474845cad58ace766bdf0222e2cb2118e10aba2ec8afe66e6988d385d1371e4935226161d39733165459c31f42b684f5d280b
7
- data.tar.gz: 8e6bea30f055c6a8a8cce0539ecb177496be3a41012c20d963bb93cf1ba0e0e3c06d90550e50548316e33fd512b2ec69c87cccffaa287e0c6a65e393a084f63c
6
+ metadata.gz: 678b40875b2fc9e58a666b6aaa34ee67906451c27832ffc5802a6407d09121c9d882238ac57202e0d915b8c86411daa575052fbc4164aae68c383a8706d70b9b
7
+ data.tar.gz: b209ae27029858ae5da7d62f18ed512410302451ff13a3dd82e940c13a616288dc8a12219698dc8525f95b3c7d796c2985a1dac426489a2f30fb93122a1d6450
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dataplex_v1
2
2
 
3
+ ### v0.92.0 (2026-07-12)
4
+
5
+ * Regenerated from discovery document revision 20260623
6
+
3
7
  ### v0.91.0 (2026-06-14)
4
8
 
5
9
  * Regenerated from discovery document revision 20260603
@@ -1468,6 +1468,59 @@ module Google
1468
1468
  end
1469
1469
  end
1470
1470
 
1471
+ # Identity of a business contact.
1472
+ class GoogleCloudDataplexV1ContactIdentity
1473
+ include Google::Apis::Core::Hashable
1474
+
1475
+ # Optional. Email ID or freeform ID of the Contact person.
1476
+ # Corresponds to the JSON property `contactId`
1477
+ # @return [String]
1478
+ attr_accessor :contact_id
1479
+
1480
+ # Required. Name of the contact person for the Data Domain; unvalidated freeform
1481
+ # text.
1482
+ # Corresponds to the JSON property `contactName`
1483
+ # @return [String]
1484
+ attr_accessor :contact_name
1485
+
1486
+ # Required. Designation of the person i.e. Data Steward or Data Analyst. Example
1487
+ # values: owner, steward, producer, admin.
1488
+ # Corresponds to the JSON property `contactRole`
1489
+ # @return [String]
1490
+ attr_accessor :contact_role
1491
+
1492
+ def initialize(**args)
1493
+ update!(**args)
1494
+ end
1495
+
1496
+ # Update properties of this object
1497
+ def update!(**args)
1498
+ @contact_id = args[:contact_id] if args.key?(:contact_id)
1499
+ @contact_name = args[:contact_name] if args.key?(:contact_name)
1500
+ @contact_role = args[:contact_role] if args.key?(:contact_role)
1501
+ end
1502
+ end
1503
+
1504
+ # Business contacts part of business context of a Data Domain. Corresponds to
1505
+ # the Contacts Aspect in Dataplex Universal Catalog.
1506
+ class GoogleCloudDataplexV1Contacts
1507
+ include Google::Apis::Core::Hashable
1508
+
1509
+ # Required. Identities of the business contacts.
1510
+ # Corresponds to the JSON property `identities`
1511
+ # @return [Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1ContactIdentity>]
1512
+ attr_accessor :identities
1513
+
1514
+ def initialize(**args)
1515
+ update!(**args)
1516
+ end
1517
+
1518
+ # Update properties of this object
1519
+ def update!(**args)
1520
+ @identities = args[:identities] if args.key?(:identities)
1521
+ end
1522
+ end
1523
+
1471
1524
  # Request message for CreateEntryLink.
1472
1525
  class GoogleCloudDataplexV1CreateEntryLinkRequest
1473
1526
  include Google::Apis::Core::Hashable
@@ -2341,6 +2394,12 @@ module Google
2341
2394
  class GoogleCloudDataplexV1DataDiscoverySpecStorageConfigUnstructuredDataOptions
2342
2395
  include Google::Apis::Core::Hashable
2343
2396
 
2397
+ # Optional. Whether to use the global model endpoint.
2398
+ # Corresponds to the JSON property `globalEndpointEnabled`
2399
+ # @return [Boolean]
2400
+ attr_accessor :global_endpoint_enabled
2401
+ alias_method :global_endpoint_enabled?, :global_endpoint_enabled
2402
+
2344
2403
  # Optional. Specifies whether deeper semantic inference over the objects'
2345
2404
  # contents using GenAI is enabled.
2346
2405
  # Corresponds to the JSON property `semanticInferenceEnabled`
@@ -2354,6 +2413,7 @@ module Google
2354
2413
 
2355
2414
  # Update properties of this object
2356
2415
  def update!(**args)
2416
+ @global_endpoint_enabled = args[:global_endpoint_enabled] if args.key?(:global_endpoint_enabled)
2357
2417
  @semantic_inference_enabled = args[:semantic_inference_enabled] if args.key?(:semantic_inference_enabled)
2358
2418
  end
2359
2419
  end
@@ -2625,6 +2685,141 @@ module Google
2625
2685
  end
2626
2686
  end
2627
2687
 
2688
+ # A DataDomain is a logical grouping of data resources for governance, discovery,
2689
+ # and management at scale.
2690
+ class GoogleCloudDataplexV1DataDomain
2691
+ include Google::Apis::Core::Hashable
2692
+
2693
+ # Business contacts part of business context of a Data Domain. Corresponds to
2694
+ # the Contacts Aspect in Dataplex Universal Catalog.
2695
+ # Corresponds to the JSON property `contacts`
2696
+ # @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1Contacts]
2697
+ attr_accessor :contacts
2698
+
2699
+ # Output only. The time at which the DataDomain was created.
2700
+ # Corresponds to the JSON property `createTime`
2701
+ # @return [String]
2702
+ attr_accessor :create_time
2703
+
2704
+ # Optional. User-provided description of the DataDomain.
2705
+ # Corresponds to the JSON property `description`
2706
+ # @return [String]
2707
+ attr_accessor :description
2708
+
2709
+ # Required. User-friendly display name.
2710
+ # Corresponds to the JSON property `displayName`
2711
+ # @return [String]
2712
+ attr_accessor :display_name
2713
+
2714
+ # Optional. User-defined labels for the DataDomain.
2715
+ # Corresponds to the JSON property `labels`
2716
+ # @return [Hash<String,String>]
2717
+ attr_accessor :labels
2718
+
2719
+ # Identifier. The relative resource name of the DataDomain, of the form:
2720
+ # projects/`project_id_or_number`/locations/`location_id`/dataDomains/`
2721
+ # data_domain_id`
2722
+ # Corresponds to the JSON property `name`
2723
+ # @return [String]
2724
+ attr_accessor :name
2725
+
2726
+ # Optional. Immutable. The resource name of the parent DataDomain. Empty if this
2727
+ # is a top-level DataDomain. Format: projects/`project_id_or_number`/locations/`
2728
+ # location`/dataDomains/`parent_data_domain_id` This field is immutable after
2729
+ # creation.
2730
+ # Corresponds to the JSON property `parentDataDomain`
2731
+ # @return [String]
2732
+ attr_accessor :parent_data_domain
2733
+
2734
+ # Output-only policy member strings of a Google Cloud resource's built-in
2735
+ # identity.
2736
+ # Corresponds to the JSON property `policyMember`
2737
+ # @return [Google::Apis::DataplexV1::GoogleIamV1ResourcePolicyMember]
2738
+ attr_accessor :policy_member
2739
+
2740
+ # Output only. System-generated globally unique ID for the DataDomain.
2741
+ # Corresponds to the JSON property `uid`
2742
+ # @return [String]
2743
+ attr_accessor :uid
2744
+
2745
+ # Output only. The time at which the DataDomain was last updated.
2746
+ # Corresponds to the JSON property `updateTime`
2747
+ # @return [String]
2748
+ attr_accessor :update_time
2749
+
2750
+ def initialize(**args)
2751
+ update!(**args)
2752
+ end
2753
+
2754
+ # Update properties of this object
2755
+ def update!(**args)
2756
+ @contacts = args[:contacts] if args.key?(:contacts)
2757
+ @create_time = args[:create_time] if args.key?(:create_time)
2758
+ @description = args[:description] if args.key?(:description)
2759
+ @display_name = args[:display_name] if args.key?(:display_name)
2760
+ @labels = args[:labels] if args.key?(:labels)
2761
+ @name = args[:name] if args.key?(:name)
2762
+ @parent_data_domain = args[:parent_data_domain] if args.key?(:parent_data_domain)
2763
+ @policy_member = args[:policy_member] if args.key?(:policy_member)
2764
+ @uid = args[:uid] if args.key?(:uid)
2765
+ @update_time = args[:update_time] if args.key?(:update_time)
2766
+ end
2767
+ end
2768
+
2769
+ # DataDomainBinding represents a rule that includes a Google Cloud resource and
2770
+ # its contents into a DataDomain.
2771
+ class GoogleCloudDataplexV1DataDomainBinding
2772
+ include Google::Apis::Core::Hashable
2773
+
2774
+ # Output only. The time at which the DataDomainBinding was created.
2775
+ # Corresponds to the JSON property `createTime`
2776
+ # @return [String]
2777
+ attr_accessor :create_time
2778
+
2779
+ # Identifier. The relative resource name of the DataDomainBinding. Format:
2780
+ # projects/`project_id_or_number`/locations/`location`/dataDomains/`
2781
+ # data_domain_id`/bindings/`binding_id`
2782
+ # Corresponds to the JSON property `name`
2783
+ # @return [String]
2784
+ attr_accessor :name
2785
+
2786
+ # Required. Immutable. The full resource name of the Google Cloud resource to be
2787
+ # bound (i.e. included together with its contents) to the DataDomain.Format: IAM
2788
+ # Full resource name (https://docs.cloud.google.com/iam/docs/full-resource-names)
2789
+ # Examples: - GCP Project: //cloudresourcemanager.googleapis.com/projects/`
2790
+ # project-id` - BigQuery Dataset: //bigquery.googleapis.com/projects/`project-id`
2791
+ # /datasets/`dataset-id` - BigQuery Table: //bigquery.googleapis.com/projects/`
2792
+ # project-id`/datasets/`dataset-id`/tables/`table-id` - Dataplex Data Product: //
2793
+ # dataplex.googleapis.com/projects/`project-number`/locations/`location`/
2794
+ # dataProducts/`data-product-id`Authorization: the resource to be bound must
2795
+ # first grant an IAM role with the resource-specific setIamPolicy permission to
2796
+ # the DataDomain. Example: - resource: //bigquery.googleapis.com/projects/`
2797
+ # project-id`/datasets/`dataset-id` - IAM role: with bigquery.datasets.
2798
+ # setIamPolicy permission (e.g. roles/owner) - IAM member: principal://dataplex.
2799
+ # googleapis.com/projects/`project-number`/name/locations/`location`/dataDomains/
2800
+ # `data-domain-id`
2801
+ # Corresponds to the JSON property `resource`
2802
+ # @return [String]
2803
+ attr_accessor :resource
2804
+
2805
+ # Output only. System-generated unique ID.
2806
+ # Corresponds to the JSON property `uid`
2807
+ # @return [String]
2808
+ attr_accessor :uid
2809
+
2810
+ def initialize(**args)
2811
+ update!(**args)
2812
+ end
2813
+
2814
+ # Update properties of this object
2815
+ def update!(**args)
2816
+ @create_time = args[:create_time] if args.key?(:create_time)
2817
+ @name = args[:name] if args.key?(:name)
2818
+ @resource = args[:resource] if args.key?(:resource)
2819
+ @uid = args[:uid] if args.key?(:uid)
2820
+ end
2821
+ end
2822
+
2628
2823
  # A data product is a curated collection of data assets, packaged to address
2629
2824
  # specific use cases. It's a way to manage and share data in a more organized,
2630
2825
  # product-like manner.
@@ -8042,6 +8237,56 @@ module Google
8042
8237
  end
8043
8238
  end
8044
8239
 
8240
+ # List DataDomainBindings response.
8241
+ class GoogleCloudDataplexV1ListDataDomainBindingsResponse
8242
+ include Google::Apis::Core::Hashable
8243
+
8244
+ # DataDomainBindings under the given parent.
8245
+ # Corresponds to the JSON property `dataDomainBindings`
8246
+ # @return [Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDomainBinding>]
8247
+ attr_accessor :data_domain_bindings
8248
+
8249
+ # Token to retrieve the next page of results.
8250
+ # Corresponds to the JSON property `nextPageToken`
8251
+ # @return [String]
8252
+ attr_accessor :next_page_token
8253
+
8254
+ def initialize(**args)
8255
+ update!(**args)
8256
+ end
8257
+
8258
+ # Update properties of this object
8259
+ def update!(**args)
8260
+ @data_domain_bindings = args[:data_domain_bindings] if args.key?(:data_domain_bindings)
8261
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
8262
+ end
8263
+ end
8264
+
8265
+ # List DataDomains response.
8266
+ class GoogleCloudDataplexV1ListDataDomainsResponse
8267
+ include Google::Apis::Core::Hashable
8268
+
8269
+ # DataDomains under the given parent.
8270
+ # Corresponds to the JSON property `dataDomains`
8271
+ # @return [Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDomain>]
8272
+ attr_accessor :data_domains
8273
+
8274
+ # Token to retrieve the next page of results.
8275
+ # Corresponds to the JSON property `nextPageToken`
8276
+ # @return [String]
8277
+ attr_accessor :next_page_token
8278
+
8279
+ def initialize(**args)
8280
+ update!(**args)
8281
+ end
8282
+
8283
+ # Update properties of this object
8284
+ def update!(**args)
8285
+ @data_domains = args[:data_domains] if args.key?(:data_domains)
8286
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
8287
+ end
8288
+ end
8289
+
8045
8290
  # Response message for listing data products.
8046
8291
  class GoogleCloudDataplexV1ListDataProductsResponse
8047
8292
  include Google::Apis::Core::Hashable
@@ -11572,6 +11817,40 @@ module Google
11572
11817
  end
11573
11818
  end
11574
11819
 
11820
+ # Output-only policy member strings of a Google Cloud resource's built-in
11821
+ # identity.
11822
+ class GoogleIamV1ResourcePolicyMember
11823
+ include Google::Apis::Core::Hashable
11824
+
11825
+ # Output only. IAM policy binding member referring to a Google Cloud resource by
11826
+ # user-assigned name (https://google.aip.dev/122). If a resource is deleted and
11827
+ # recreated with the same name, the binding will be applicable to the new
11828
+ # resource.Example: principal://parametermanager.googleapis.com/projects/12345/
11829
+ # name/locations/us-central1-a/parameters/my-parameter
11830
+ # Corresponds to the JSON property `iamPolicyNamePrincipal`
11831
+ # @return [String]
11832
+ attr_accessor :iam_policy_name_principal
11833
+
11834
+ # Output only. IAM policy binding member referring to a Google Cloud resource by
11835
+ # system-assigned unique identifier (https://google.aip.dev/148#uid). If a
11836
+ # resource is deleted and recreated with the same name, the binding will not be
11837
+ # applicable to the new resourceExample: principal://parametermanager.googleapis.
11838
+ # com/projects/12345/uid/locations/us-central1-a/parameters/a918fed5
11839
+ # Corresponds to the JSON property `iamPolicyUidPrincipal`
11840
+ # @return [String]
11841
+ attr_accessor :iam_policy_uid_principal
11842
+
11843
+ def initialize(**args)
11844
+ update!(**args)
11845
+ end
11846
+
11847
+ # Update properties of this object
11848
+ def update!(**args)
11849
+ @iam_policy_name_principal = args[:iam_policy_name_principal] if args.key?(:iam_policy_name_principal)
11850
+ @iam_policy_uid_principal = args[:iam_policy_uid_principal] if args.key?(:iam_policy_uid_principal)
11851
+ end
11852
+ end
11853
+
11575
11854
  # Request message for SetIamPolicy method.
11576
11855
  class GoogleIamV1SetIamPolicyRequest
11577
11856
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DataplexV1
18
18
  # Version of the google-apis-dataplex_v1 gem
19
- GEM_VERSION = "0.91.0"
19
+ GEM_VERSION = "0.92.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260603"
25
+ REVISION = "20260623"
26
26
  end
27
27
  end
28
28
  end
@@ -232,6 +232,18 @@ module Google
232
232
  include Google::Apis::Core::JsonObjectSupport
233
233
  end
234
234
 
235
+ class GoogleCloudDataplexV1ContactIdentity
236
+ class Representation < Google::Apis::Core::JsonRepresentation; end
237
+
238
+ include Google::Apis::Core::JsonObjectSupport
239
+ end
240
+
241
+ class GoogleCloudDataplexV1Contacts
242
+ class Representation < Google::Apis::Core::JsonRepresentation; end
243
+
244
+ include Google::Apis::Core::JsonObjectSupport
245
+ end
246
+
235
247
  class GoogleCloudDataplexV1CreateEntryLinkRequest
236
248
  class Representation < Google::Apis::Core::JsonRepresentation; end
237
249
 
@@ -406,6 +418,18 @@ module Google
406
418
  include Google::Apis::Core::JsonObjectSupport
407
419
  end
408
420
 
421
+ class GoogleCloudDataplexV1DataDomain
422
+ class Representation < Google::Apis::Core::JsonRepresentation; end
423
+
424
+ include Google::Apis::Core::JsonObjectSupport
425
+ end
426
+
427
+ class GoogleCloudDataplexV1DataDomainBinding
428
+ class Representation < Google::Apis::Core::JsonRepresentation; end
429
+
430
+ include Google::Apis::Core::JsonObjectSupport
431
+ end
432
+
409
433
  class GoogleCloudDataplexV1DataProduct
410
434
  class Representation < Google::Apis::Core::JsonRepresentation; end
411
435
 
@@ -1192,6 +1216,18 @@ module Google
1192
1216
  include Google::Apis::Core::JsonObjectSupport
1193
1217
  end
1194
1218
 
1219
+ class GoogleCloudDataplexV1ListDataDomainBindingsResponse
1220
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1221
+
1222
+ include Google::Apis::Core::JsonObjectSupport
1223
+ end
1224
+
1225
+ class GoogleCloudDataplexV1ListDataDomainsResponse
1226
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1227
+
1228
+ include Google::Apis::Core::JsonObjectSupport
1229
+ end
1230
+
1195
1231
  class GoogleCloudDataplexV1ListDataProductsResponse
1196
1232
  class Representation < Google::Apis::Core::JsonRepresentation; end
1197
1233
 
@@ -1732,6 +1768,12 @@ module Google
1732
1768
  include Google::Apis::Core::JsonObjectSupport
1733
1769
  end
1734
1770
 
1771
+ class GoogleIamV1ResourcePolicyMember
1772
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1773
+
1774
+ include Google::Apis::Core::JsonObjectSupport
1775
+ end
1776
+
1735
1777
  class GoogleIamV1SetIamPolicyRequest
1736
1778
  class Representation < Google::Apis::Core::JsonRepresentation; end
1737
1779
 
@@ -2179,6 +2221,23 @@ module Google
2179
2221
  end
2180
2222
  end
2181
2223
 
2224
+ class GoogleCloudDataplexV1ContactIdentity
2225
+ # @private
2226
+ class Representation < Google::Apis::Core::JsonRepresentation
2227
+ property :contact_id, as: 'contactId'
2228
+ property :contact_name, as: 'contactName'
2229
+ property :contact_role, as: 'contactRole'
2230
+ end
2231
+ end
2232
+
2233
+ class GoogleCloudDataplexV1Contacts
2234
+ # @private
2235
+ class Representation < Google::Apis::Core::JsonRepresentation
2236
+ collection :identities, as: 'identities', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ContactIdentity, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1ContactIdentity::Representation
2237
+
2238
+ end
2239
+ end
2240
+
2182
2241
  class GoogleCloudDataplexV1CreateEntryLinkRequest
2183
2242
  # @private
2184
2243
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2394,6 +2453,7 @@ module Google
2394
2453
  class GoogleCloudDataplexV1DataDiscoverySpecStorageConfigUnstructuredDataOptions
2395
2454
  # @private
2396
2455
  class Representation < Google::Apis::Core::JsonRepresentation
2456
+ property :global_endpoint_enabled, as: 'globalEndpointEnabled'
2397
2457
  property :semantic_inference_enabled, as: 'semanticInferenceEnabled'
2398
2458
  end
2399
2459
  end
@@ -2485,6 +2545,34 @@ module Google
2485
2545
  end
2486
2546
  end
2487
2547
 
2548
+ class GoogleCloudDataplexV1DataDomain
2549
+ # @private
2550
+ class Representation < Google::Apis::Core::JsonRepresentation
2551
+ property :contacts, as: 'contacts', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1Contacts, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1Contacts::Representation
2552
+
2553
+ property :create_time, as: 'createTime'
2554
+ property :description, as: 'description'
2555
+ property :display_name, as: 'displayName'
2556
+ hash :labels, as: 'labels'
2557
+ property :name, as: 'name'
2558
+ property :parent_data_domain, as: 'parentDataDomain'
2559
+ property :policy_member, as: 'policyMember', class: Google::Apis::DataplexV1::GoogleIamV1ResourcePolicyMember, decorator: Google::Apis::DataplexV1::GoogleIamV1ResourcePolicyMember::Representation
2560
+
2561
+ property :uid, as: 'uid'
2562
+ property :update_time, as: 'updateTime'
2563
+ end
2564
+ end
2565
+
2566
+ class GoogleCloudDataplexV1DataDomainBinding
2567
+ # @private
2568
+ class Representation < Google::Apis::Core::JsonRepresentation
2569
+ property :create_time, as: 'createTime'
2570
+ property :name, as: 'name'
2571
+ property :resource, as: 'resource'
2572
+ property :uid, as: 'uid'
2573
+ end
2574
+ end
2575
+
2488
2576
  class GoogleCloudDataplexV1DataProduct
2489
2577
  # @private
2490
2578
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3938,6 +4026,24 @@ module Google
3938
4026
  end
3939
4027
  end
3940
4028
 
4029
+ class GoogleCloudDataplexV1ListDataDomainBindingsResponse
4030
+ # @private
4031
+ class Representation < Google::Apis::Core::JsonRepresentation
4032
+ collection :data_domain_bindings, as: 'dataDomainBindings', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDomainBinding, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDomainBinding::Representation
4033
+
4034
+ property :next_page_token, as: 'nextPageToken'
4035
+ end
4036
+ end
4037
+
4038
+ class GoogleCloudDataplexV1ListDataDomainsResponse
4039
+ # @private
4040
+ class Representation < Google::Apis::Core::JsonRepresentation
4041
+ collection :data_domains, as: 'dataDomains', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDomain, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDomain::Representation
4042
+
4043
+ property :next_page_token, as: 'nextPageToken'
4044
+ end
4045
+ end
4046
+
3941
4047
  class GoogleCloudDataplexV1ListDataProductsResponse
3942
4048
  # @private
3943
4049
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4860,6 +4966,14 @@ module Google
4860
4966
  end
4861
4967
  end
4862
4968
 
4969
+ class GoogleIamV1ResourcePolicyMember
4970
+ # @private
4971
+ class Representation < Google::Apis::Core::JsonRepresentation
4972
+ property :iam_policy_name_principal, as: 'iamPolicyNamePrincipal'
4973
+ property :iam_policy_uid_principal, as: 'iamPolicyUidPrincipal'
4974
+ end
4975
+ end
4976
+
4863
4977
  class GoogleIamV1SetIamPolicyRequest
4864
4978
  # @private
4865
4979
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1827,6 +1827,111 @@ module Google
1827
1827
  execute_or_queue_command(command, &block)
1828
1828
  end
1829
1829
 
1830
+ # Creates a DataDomain resource.
1831
+ # @param [String] parent
1832
+ # Required. The resource name of the parent location: projects/`
1833
+ # project_id_or_number`/locations/`location_id`
1834
+ # @param [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDomain] google_cloud_dataplex_v1_data_domain_object
1835
+ # @param [String] data_domain_id
1836
+ # Required. DataDomain identifier. * Must contain only lowercase letters,
1837
+ # numbers and hyphens. * Must start with a letter. * Must be between 1-63
1838
+ # characters. * Must end with a number or a letter. * Must be unique within the
1839
+ # project and location.
1840
+ # @param [Boolean] validate_only
1841
+ # Optional. Only validate the request, but do not perform mutations.
1842
+ # @param [String] fields
1843
+ # Selector specifying which fields to include in a partial response.
1844
+ # @param [String] quota_user
1845
+ # Available to use for quota purposes for server-side applications. Can be any
1846
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1847
+ # @param [Google::Apis::RequestOptions] options
1848
+ # Request-specific options
1849
+ #
1850
+ # @yield [result, err] Result & error if block supplied
1851
+ # @yieldparam result [Google::Apis::DataplexV1::GoogleLongrunningOperation] parsed result object
1852
+ # @yieldparam err [StandardError] error object if request failed
1853
+ #
1854
+ # @return [Google::Apis::DataplexV1::GoogleLongrunningOperation]
1855
+ #
1856
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1857
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1858
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1859
+ def create_project_location_data_domain(parent, google_cloud_dataplex_v1_data_domain_object = nil, data_domain_id: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
1860
+ command = make_simple_command(:post, 'v1/{+parent}/dataDomains', options)
1861
+ command.request_representation = Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDomain::Representation
1862
+ command.request_object = google_cloud_dataplex_v1_data_domain_object
1863
+ command.response_representation = Google::Apis::DataplexV1::GoogleLongrunningOperation::Representation
1864
+ command.response_class = Google::Apis::DataplexV1::GoogleLongrunningOperation
1865
+ command.params['parent'] = parent unless parent.nil?
1866
+ command.query['dataDomainId'] = data_domain_id unless data_domain_id.nil?
1867
+ command.query['validateOnly'] = validate_only unless validate_only.nil?
1868
+ command.query['fields'] = fields unless fields.nil?
1869
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1870
+ execute_or_queue_command(command, &block)
1871
+ end
1872
+
1873
+ # Deletes a DataDomain resource (allowed only when there are no bindings).
1874
+ # @param [String] name
1875
+ # Required. The resource name of the DataDomain: projects/`project_id_or_number`/
1876
+ # locations/`location_id`/dataDomains/`data_domain_id`
1877
+ # @param [String] fields
1878
+ # Selector specifying which fields to include in a partial response.
1879
+ # @param [String] quota_user
1880
+ # Available to use for quota purposes for server-side applications. Can be any
1881
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1882
+ # @param [Google::Apis::RequestOptions] options
1883
+ # Request-specific options
1884
+ #
1885
+ # @yield [result, err] Result & error if block supplied
1886
+ # @yieldparam result [Google::Apis::DataplexV1::GoogleLongrunningOperation] parsed result object
1887
+ # @yieldparam err [StandardError] error object if request failed
1888
+ #
1889
+ # @return [Google::Apis::DataplexV1::GoogleLongrunningOperation]
1890
+ #
1891
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1892
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1893
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1894
+ def delete_project_location_data_domain(name, fields: nil, quota_user: nil, options: nil, &block)
1895
+ command = make_simple_command(:delete, 'v1/{+name}', options)
1896
+ command.response_representation = Google::Apis::DataplexV1::GoogleLongrunningOperation::Representation
1897
+ command.response_class = Google::Apis::DataplexV1::GoogleLongrunningOperation
1898
+ command.params['name'] = name unless name.nil?
1899
+ command.query['fields'] = fields unless fields.nil?
1900
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1901
+ execute_or_queue_command(command, &block)
1902
+ end
1903
+
1904
+ # Retrieves a DataDomain resource.
1905
+ # @param [String] name
1906
+ # Required. The resource name of the DataDomain: projects/`project_id_or_number`/
1907
+ # locations/`location_id`/dataDomains/`data_domain_id`
1908
+ # @param [String] fields
1909
+ # Selector specifying which fields to include in a partial response.
1910
+ # @param [String] quota_user
1911
+ # Available to use for quota purposes for server-side applications. Can be any
1912
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1913
+ # @param [Google::Apis::RequestOptions] options
1914
+ # Request-specific options
1915
+ #
1916
+ # @yield [result, err] Result & error if block supplied
1917
+ # @yieldparam result [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDomain] parsed result object
1918
+ # @yieldparam err [StandardError] error object if request failed
1919
+ #
1920
+ # @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDomain]
1921
+ #
1922
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1923
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1924
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1925
+ def get_project_location_data_domain(name, fields: nil, quota_user: nil, options: nil, &block)
1926
+ command = make_simple_command(:get, 'v1/{+name}', options)
1927
+ command.response_representation = Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDomain::Representation
1928
+ command.response_class = Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDomain
1929
+ command.params['name'] = name unless name.nil?
1930
+ command.query['fields'] = fields unless fields.nil?
1931
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1932
+ execute_or_queue_command(command, &block)
1933
+ end
1934
+
1830
1935
  # Gets the access control policy for a resource. Returns an empty policy if the
1831
1936
  # resource exists and does not have a policy set.
1832
1937
  # @param [String] resource
@@ -1872,6 +1977,92 @@ module Google
1872
1977
  execute_or_queue_command(command, &block)
1873
1978
  end
1874
1979
 
1980
+ # Lists DataDomain resources in a project and location.
1981
+ # @param [String] parent
1982
+ # Required. The resource name of the parent location: projects/`
1983
+ # project_id_or_number`/locations/`location_id`
1984
+ # @param [String] filter
1985
+ # Optional. Filter request. Supports filter by parent_data_domain.
1986
+ # @param [String] order_by
1987
+ # Optional. Order by fields for the result.
1988
+ # @param [Fixnum] page_size
1989
+ # Optional. Maximum number of DataDomains to return. The service may return
1990
+ # fewer. If unspecified, at most 50 domains will be returned. The maximum value
1991
+ # is 100; values above 100 will be coerced to 100.
1992
+ # @param [String] page_token
1993
+ # Optional. Page token received from a previous ListDataDomains call.
1994
+ # @param [String] fields
1995
+ # Selector specifying which fields to include in a partial response.
1996
+ # @param [String] quota_user
1997
+ # Available to use for quota purposes for server-side applications. Can be any
1998
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1999
+ # @param [Google::Apis::RequestOptions] options
2000
+ # Request-specific options
2001
+ #
2002
+ # @yield [result, err] Result & error if block supplied
2003
+ # @yieldparam result [Google::Apis::DataplexV1::GoogleCloudDataplexV1ListDataDomainsResponse] parsed result object
2004
+ # @yieldparam err [StandardError] error object if request failed
2005
+ #
2006
+ # @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1ListDataDomainsResponse]
2007
+ #
2008
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2009
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2010
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
2011
+ def list_project_location_data_domains(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
2012
+ command = make_simple_command(:get, 'v1/{+parent}/dataDomains', options)
2013
+ command.response_representation = Google::Apis::DataplexV1::GoogleCloudDataplexV1ListDataDomainsResponse::Representation
2014
+ command.response_class = Google::Apis::DataplexV1::GoogleCloudDataplexV1ListDataDomainsResponse
2015
+ command.params['parent'] = parent unless parent.nil?
2016
+ command.query['filter'] = filter unless filter.nil?
2017
+ command.query['orderBy'] = order_by unless order_by.nil?
2018
+ command.query['pageSize'] = page_size unless page_size.nil?
2019
+ command.query['pageToken'] = page_token unless page_token.nil?
2020
+ command.query['fields'] = fields unless fields.nil?
2021
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
2022
+ execute_or_queue_command(command, &block)
2023
+ end
2024
+
2025
+ # Updates a DataDomain resource.
2026
+ # @param [String] name
2027
+ # Identifier. The relative resource name of the DataDomain, of the form:
2028
+ # projects/`project_id_or_number`/locations/`location_id`/dataDomains/`
2029
+ # data_domain_id`
2030
+ # @param [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDomain] google_cloud_dataplex_v1_data_domain_object
2031
+ # @param [String] update_mask
2032
+ # Optional. Mask of fields to update.
2033
+ # @param [Boolean] validate_only
2034
+ # Optional. Only validate the request, but do not perform mutations.
2035
+ # @param [String] fields
2036
+ # Selector specifying which fields to include in a partial response.
2037
+ # @param [String] quota_user
2038
+ # Available to use for quota purposes for server-side applications. Can be any
2039
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
2040
+ # @param [Google::Apis::RequestOptions] options
2041
+ # Request-specific options
2042
+ #
2043
+ # @yield [result, err] Result & error if block supplied
2044
+ # @yieldparam result [Google::Apis::DataplexV1::GoogleLongrunningOperation] parsed result object
2045
+ # @yieldparam err [StandardError] error object if request failed
2046
+ #
2047
+ # @return [Google::Apis::DataplexV1::GoogleLongrunningOperation]
2048
+ #
2049
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2050
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2051
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
2052
+ def patch_project_location_data_domain(name, google_cloud_dataplex_v1_data_domain_object = nil, update_mask: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
2053
+ command = make_simple_command(:patch, 'v1/{+name}', options)
2054
+ command.request_representation = Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDomain::Representation
2055
+ command.request_object = google_cloud_dataplex_v1_data_domain_object
2056
+ command.response_representation = Google::Apis::DataplexV1::GoogleLongrunningOperation::Representation
2057
+ command.response_class = Google::Apis::DataplexV1::GoogleLongrunningOperation
2058
+ command.params['name'] = name unless name.nil?
2059
+ command.query['updateMask'] = update_mask unless update_mask.nil?
2060
+ command.query['validateOnly'] = validate_only unless validate_only.nil?
2061
+ command.query['fields'] = fields unless fields.nil?
2062
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
2063
+ execute_or_queue_command(command, &block)
2064
+ end
2065
+
1875
2066
  # Sets the access control policy on the specified resource. Replaces any
1876
2067
  # existing policy.Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED
1877
2068
  # errors.
@@ -1948,6 +2139,158 @@ module Google
1948
2139
  execute_or_queue_command(command, &block)
1949
2140
  end
1950
2141
 
2142
+ # Creates a DataDomainBinding resource.
2143
+ # @param [String] parent
2144
+ # Required. The resource name of the parent DataDomain: projects/`
2145
+ # project_id_or_number`/locations/`location_id`/dataDomains/`data_domain_id`
2146
+ # @param [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDomainBinding] google_cloud_dataplex_v1_data_domain_binding_object
2147
+ # @param [String] data_domain_binding_id
2148
+ # Optional. DataDomainBinding identifier. * Must contain only lowercase letters,
2149
+ # numbers and hyphens. * Must start with a letter. * Must be between 1-63
2150
+ # characters. * Must end with a number or a letter. * Must be unique within the
2151
+ # parent DataDomain. If not provided, a system-generated UUID will be used.
2152
+ # @param [Boolean] validate_only
2153
+ # Optional. Only validate the request, but do not perform mutations.
2154
+ # @param [String] fields
2155
+ # Selector specifying which fields to include in a partial response.
2156
+ # @param [String] quota_user
2157
+ # Available to use for quota purposes for server-side applications. Can be any
2158
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
2159
+ # @param [Google::Apis::RequestOptions] options
2160
+ # Request-specific options
2161
+ #
2162
+ # @yield [result, err] Result & error if block supplied
2163
+ # @yieldparam result [Google::Apis::DataplexV1::GoogleLongrunningOperation] parsed result object
2164
+ # @yieldparam err [StandardError] error object if request failed
2165
+ #
2166
+ # @return [Google::Apis::DataplexV1::GoogleLongrunningOperation]
2167
+ #
2168
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2169
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2170
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
2171
+ def create_project_location_data_domain_binding(parent, google_cloud_dataplex_v1_data_domain_binding_object = nil, data_domain_binding_id: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
2172
+ command = make_simple_command(:post, 'v1/{+parent}/bindings', options)
2173
+ command.request_representation = Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDomainBinding::Representation
2174
+ command.request_object = google_cloud_dataplex_v1_data_domain_binding_object
2175
+ command.response_representation = Google::Apis::DataplexV1::GoogleLongrunningOperation::Representation
2176
+ command.response_class = Google::Apis::DataplexV1::GoogleLongrunningOperation
2177
+ command.params['parent'] = parent unless parent.nil?
2178
+ command.query['dataDomainBindingId'] = data_domain_binding_id unless data_domain_binding_id.nil?
2179
+ command.query['validateOnly'] = validate_only unless validate_only.nil?
2180
+ command.query['fields'] = fields unless fields.nil?
2181
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
2182
+ execute_or_queue_command(command, &block)
2183
+ end
2184
+
2185
+ # Deletes a DataDomainBinding resource.
2186
+ # @param [String] name
2187
+ # Required. The resource name of the DataDomainBinding: projects/`
2188
+ # project_id_or_number`/locations/`location_id`/dataDomains/`data_domain_id`/
2189
+ # bindings/`binding_id`
2190
+ # @param [String] fields
2191
+ # Selector specifying which fields to include in a partial response.
2192
+ # @param [String] quota_user
2193
+ # Available to use for quota purposes for server-side applications. Can be any
2194
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
2195
+ # @param [Google::Apis::RequestOptions] options
2196
+ # Request-specific options
2197
+ #
2198
+ # @yield [result, err] Result & error if block supplied
2199
+ # @yieldparam result [Google::Apis::DataplexV1::GoogleLongrunningOperation] parsed result object
2200
+ # @yieldparam err [StandardError] error object if request failed
2201
+ #
2202
+ # @return [Google::Apis::DataplexV1::GoogleLongrunningOperation]
2203
+ #
2204
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2205
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2206
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
2207
+ def delete_project_location_data_domain_binding(name, fields: nil, quota_user: nil, options: nil, &block)
2208
+ command = make_simple_command(:delete, 'v1/{+name}', options)
2209
+ command.response_representation = Google::Apis::DataplexV1::GoogleLongrunningOperation::Representation
2210
+ command.response_class = Google::Apis::DataplexV1::GoogleLongrunningOperation
2211
+ command.params['name'] = name unless name.nil?
2212
+ command.query['fields'] = fields unless fields.nil?
2213
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
2214
+ execute_or_queue_command(command, &block)
2215
+ end
2216
+
2217
+ # Retrieves a DataDomainBinding resource.
2218
+ # @param [String] name
2219
+ # Required. The resource name of the DataDomainBinding: projects/`
2220
+ # project_id_or_number`/locations/`location_id`/dataDomains/`data_domain_id`/
2221
+ # bindings/`binding_id`
2222
+ # @param [String] fields
2223
+ # Selector specifying which fields to include in a partial response.
2224
+ # @param [String] quota_user
2225
+ # Available to use for quota purposes for server-side applications. Can be any
2226
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
2227
+ # @param [Google::Apis::RequestOptions] options
2228
+ # Request-specific options
2229
+ #
2230
+ # @yield [result, err] Result & error if block supplied
2231
+ # @yieldparam result [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDomainBinding] parsed result object
2232
+ # @yieldparam err [StandardError] error object if request failed
2233
+ #
2234
+ # @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDomainBinding]
2235
+ #
2236
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2237
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2238
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
2239
+ def get_project_location_data_domain_binding(name, fields: nil, quota_user: nil, options: nil, &block)
2240
+ command = make_simple_command(:get, 'v1/{+name}', options)
2241
+ command.response_representation = Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDomainBinding::Representation
2242
+ command.response_class = Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDomainBinding
2243
+ command.params['name'] = name unless name.nil?
2244
+ command.query['fields'] = fields unless fields.nil?
2245
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
2246
+ execute_or_queue_command(command, &block)
2247
+ end
2248
+
2249
+ # Lists DataDomainBinding resources under a DataDomain.
2250
+ # @param [String] parent
2251
+ # Required. The resource name of the parent DataDomain: projects/`
2252
+ # project_id_or_number`/locations/`location_id`/dataDomains/`data_domain_id`
2253
+ # @param [String] filter
2254
+ # Optional. Filter request.
2255
+ # @param [String] order_by
2256
+ # Optional. Order by fields for the result.
2257
+ # @param [Fixnum] page_size
2258
+ # Optional. Maximum number of DataDomainBindings to return. The service may
2259
+ # return fewer. If unspecified, at most 50 bindings will be returned. The
2260
+ # maximum value is 100; values above 100 will be coerced to 100.
2261
+ # @param [String] page_token
2262
+ # Optional. Page token received from a previous ListDataDomainBindings call.
2263
+ # @param [String] fields
2264
+ # Selector specifying which fields to include in a partial response.
2265
+ # @param [String] quota_user
2266
+ # Available to use for quota purposes for server-side applications. Can be any
2267
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
2268
+ # @param [Google::Apis::RequestOptions] options
2269
+ # Request-specific options
2270
+ #
2271
+ # @yield [result, err] Result & error if block supplied
2272
+ # @yieldparam result [Google::Apis::DataplexV1::GoogleCloudDataplexV1ListDataDomainBindingsResponse] parsed result object
2273
+ # @yieldparam err [StandardError] error object if request failed
2274
+ #
2275
+ # @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1ListDataDomainBindingsResponse]
2276
+ #
2277
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2278
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2279
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
2280
+ def list_project_location_data_domain_bindings(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
2281
+ command = make_simple_command(:get, 'v1/{+parent}/bindings', options)
2282
+ command.response_representation = Google::Apis::DataplexV1::GoogleCloudDataplexV1ListDataDomainBindingsResponse::Representation
2283
+ command.response_class = Google::Apis::DataplexV1::GoogleCloudDataplexV1ListDataDomainBindingsResponse
2284
+ command.params['parent'] = parent unless parent.nil?
2285
+ command.query['filter'] = filter unless filter.nil?
2286
+ command.query['orderBy'] = order_by unless order_by.nil?
2287
+ command.query['pageSize'] = page_size unless page_size.nil?
2288
+ command.query['pageToken'] = page_token unless page_token.nil?
2289
+ command.query['fields'] = fields unless fields.nil?
2290
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
2291
+ execute_or_queue_command(command, &block)
2292
+ end
2293
+
1951
2294
  # Creates a data product.
1952
2295
  # @param [String] parent
1953
2296
  # Required. The parent resource where this data product will be created. Format:
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dataplex_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.91.0
4
+ version: 0.92.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-dataplex_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.91.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.92.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataplex_v1
62
62
  rdoc_options: []
63
63
  require_paths: