google-apis-dataplex_v1 0.74.0 → 0.75.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: 7c5223341388a9c56e76107bfb80e599745d4845e78adcbe7529a59e55c2602a
4
- data.tar.gz: e91b53fadcf8835caa4cc0442e78d3e050994e2597de47f74959a43578c41030
3
+ metadata.gz: 48908da71c22268c0c64a2d14de8dea4a3ee6175f4db845e05cbcb93f88676a0
4
+ data.tar.gz: 186d2006644a26f6668fe4ba189a14ecf3bda9e653becf4c94e4fc10c09009a5
5
5
  SHA512:
6
- metadata.gz: 1a6bbd44dc380a0cf225da6fbfe6c624c1c83c32bc16a3acb4b32b5e2639a91e02ce5203914fb796beb0ba55b63c6115d4765f6a1a21f075f7c9997b4c508043
7
- data.tar.gz: 98d47112af4091d421308891641fb4232a5a1b7a97caa3ef24e19301904ec46d49155b1f9bbbdaa762682397f3d28b5fb3e21c658464352523632749a8912b46
6
+ metadata.gz: d8ed52d82d7329333310d85145b52bd9b00e73d140a42b8b6c745876706aa096b689a8284e0f589c61d853931c82aa96f30024e2248c36011748e12a9953804e
7
+ data.tar.gz: 586e404b179a2e2bc2a4597bbd63c43c853a2687da111126c6a1c05925075edb6dda9a0d622635da908e1bd76995b0c84f2a53737ebbe03326788ecd2fe3b3ed
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dataplex_v1
2
2
 
3
+ ### v0.75.0 (2025-05-21)
4
+
5
+ * Regenerated from discovery document revision 20250513
6
+
3
7
  ### v0.74.0 (2025-05-04)
4
8
 
5
9
  * Regenerated from discovery document revision 20250429
@@ -4659,7 +4659,7 @@ module Google
4659
4659
  end
4660
4660
  end
4661
4661
 
4662
- # EntryLink represents a link between two entries.
4662
+ # EntryLink represents a link between two Entries.
4663
4663
  class GoogleCloudDataplexV1EntryLink
4664
4664
  include Google::Apis::Core::Hashable
4665
4665
 
@@ -4669,21 +4669,21 @@ module Google
4669
4669
  attr_accessor :create_time
4670
4670
 
4671
4671
  # Required. Immutable. Relative resource name of the Entry Link Type used to
4672
- # create this Entry Link, of the form: projects/`project`/locations/`location`/
4673
- # entryLinkTypes/`entry_link_type`.
4672
+ # create this Entry Link, of the form: `projects/`project_id_or_number`/
4673
+ # locations/`location_id`/entryLinkTypes/`entry_link_type_id`.
4674
4674
  # Corresponds to the JSON property `entryLinkType`
4675
4675
  # @return [String]
4676
4676
  attr_accessor :entry_link_type
4677
4677
 
4678
- # Required. Specifies the entries referenced in the entry link. There should be
4678
+ # Required. Specifies the Entries referenced in the Entry Link. There should be
4679
4679
  # exactly two entry references.
4680
4680
  # Corresponds to the JSON property `entryReferences`
4681
4681
  # @return [Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1EntryLinkEntryReference>]
4682
4682
  attr_accessor :entry_references
4683
4683
 
4684
4684
  # Output only. Immutable. Identifier. The relative resource name of the Entry
4685
- # Link, of the form: projects/`project`/locations/`location`/entryGroups/`
4686
- # entry_group`/entryLinks/`entry_link`.
4685
+ # Link, of the form: projects/`project_id_or_number`/locations/`location_id`/
4686
+ # entryGroups/`entry_group_id`/entryLinks/`entry_link_id`
4687
4687
  # Corresponds to the JSON property `name`
4688
4688
  # @return [String]
4689
4689
  attr_accessor :name
@@ -4707,24 +4707,24 @@ module Google
4707
4707
  end
4708
4708
  end
4709
4709
 
4710
- # Reference to the Entry that is linked through the entry link.
4710
+ # Reference to the Entry that is linked through the Entry Link.
4711
4711
  class GoogleCloudDataplexV1EntryLinkEntryReference
4712
4712
  include Google::Apis::Core::Hashable
4713
4713
 
4714
- # Required. Immutable. The relative resource name of the referenced entry, of
4715
- # the form: projects/`project`/locations/`location`/entryGroups/`entryGroup`/
4716
- # entries/`entry`.
4714
+ # Required. Immutable. The relative resource name of the referenced Entry, of
4715
+ # the form: projects/`project_id_or_number`/locations/`location_id`/entryGroups/`
4716
+ # entry_group_id`/entries/`entry_id`
4717
4717
  # Corresponds to the JSON property `name`
4718
4718
  # @return [String]
4719
4719
  attr_accessor :name
4720
4720
 
4721
- # Immutable. The path in the entry that is referenced in the entry link. Empty
4722
- # path denotes that the entry itself is referenced in the entry link.
4721
+ # Immutable. The path in the Entry that is referenced in the Entry Link. Empty
4722
+ # path denotes that the Entry itself is referenced in the Entry Link.
4723
4723
  # Corresponds to the JSON property `path`
4724
4724
  # @return [String]
4725
4725
  attr_accessor :path
4726
4726
 
4727
- # Required. Immutable. The reference type of the entry.
4727
+ # Required. Immutable. The reference type of the Entry.
4728
4728
  # Corresponds to the JSON property `type`
4729
4729
  # @return [String]
4730
4730
  attr_accessor :type
@@ -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.74.0"
19
+ GEM_VERSION = "0.75.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.17.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250429"
25
+ REVISION = "20250513"
26
26
  end
27
27
  end
28
28
  end
@@ -638,7 +638,7 @@ module Google
638
638
  # Searches for Entries matching the given query and scope.
639
639
  # @param [String] name
640
640
  # Required. The project to which the request should be attributed in the
641
- # following form: projects/`project`/locations/`location`.
641
+ # following form: projects/`project`/locations/global.
642
642
  # @param [String] order_by
643
643
  # Optional. Specifies the ordering of results. Supported values are: relevance (
644
644
  # default) last_modified_timestamp last_modified_timestamp asc
@@ -3070,8 +3070,8 @@ module Google
3070
3070
 
3071
3071
  # Creates an Entry Link.
3072
3072
  # @param [String] parent
3073
- # Required. The resource name of the parent Entry Group: projects/`project`/
3074
- # locations/`location`/entryGroups/`entry_group`.
3073
+ # Required. The resource name of the parent Entry Group: projects/`
3074
+ # project_id_or_number`/locations/`location_id`/entryGroups/`entry_group_id`.
3075
3075
  # @param [Google::Apis::DataplexV1::GoogleCloudDataplexV1EntryLink] google_cloud_dataplex_v1_entry_link_object
3076
3076
  # @param [String] entry_link_id
3077
3077
  # Required. Entry Link identifier * Must contain only lowercase letters, numbers
@@ -3109,8 +3109,9 @@ module Google
3109
3109
 
3110
3110
  # Deletes an Entry Link.
3111
3111
  # @param [String] name
3112
- # Required. The resource name of the Entry Link: projects/`project`/locations/`
3113
- # location`/entryGroups/`entry_group`/entryLinks/`entry_link`.
3112
+ # Required. The resource name of the Entry Link: projects/`project_id_or_number`/
3113
+ # locations/`location_id`/entryGroups/`entry_group_id`/entryLinks/`entry_link_id`
3114
+ # .
3114
3115
  # @param [String] fields
3115
3116
  # Selector specifying which fields to include in a partial response.
3116
3117
  # @param [String] quota_user
@@ -3138,10 +3139,11 @@ module Google
3138
3139
  execute_or_queue_command(command, &block)
3139
3140
  end
3140
3141
 
3141
- # Gets an entry link.
3142
+ # Gets an Entry Link.
3142
3143
  # @param [String] name
3143
- # Required. The resource name of the Entry Link: projects/`project`/locations/`
3144
- # location`/entryGroups/`entry_group`/entryLinks/`entry_link`.
3144
+ # Required. The resource name of the Entry Link: projects/`project_id_or_number`/
3145
+ # locations/`location_id`/entryGroups/`entry_group_id`/entryLinks/`entry_link_id`
3146
+ # .
3145
3147
  # @param [String] fields
3146
3148
  # Selector specifying which fields to include in a partial response.
3147
3149
  # @param [String] quota_user
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.74.0
4
+ version: 0.75.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.74.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.75.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:
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.8
76
+ rubygems_version: 3.6.9
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Cloud Dataplex API V1
79
79
  test_files: []