google-apis-datamigration_v1 0.71.0 → 0.73.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: 0ac88a2aeac64723d3c6ec4049bdf34e864e72d5d31e2d4ba6392905666ef784
4
- data.tar.gz: a59190ad745edb4426d2a8d454e838dc95e2fb4520a7e0f3d08d4be2264fae61
3
+ metadata.gz: 40f0b1dd72a00e1073ba25bdbecbf42eb4682a89377d4a5275e9a87914d1807f
4
+ data.tar.gz: 7586baeecffe3bcb36f7bbc446470e1a4ac3d4ee6e2cb4d4922c4394645bc9a7
5
5
  SHA512:
6
- metadata.gz: 0ca70693619171e886bac0795f09f928a6e4b9e7da629a46ef080125cb80e3c5dfca260e9fff3a53f05a9d79fed56ddd5a8bab38a80a1286b91dcf4955acb0ef
7
- data.tar.gz: 024def50d8d854f81164fde4756f9288eafcbb20b0ff934d3a3fc2f2637c772e8d94b8ad8e69856773a5b286fc5859cef2c25e7cecd41e209386d509c60c6149
6
+ metadata.gz: 523df88d43f7a93cfbbef91fcbab0a07da56ee9fc15bffd4f2b82fcc9aea405a38c259a0a4a297765860e1c9ba8c5b67e1617d2880ac5b48d6262c196a7b9ec9
7
+ data.tar.gz: f9edaf13db729f83e719d0eff8cc429ede7a50c0e5e126c88a4a0874837d35872cfaaf604aa8425aeb911d67faf76405ea452c3e6920b7270994f18b736b8d45
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-datamigration_v1
2
2
 
3
+ ### v0.73.0 (2025-04-27)
4
+
5
+ * Regenerated from discovery document revision 20250416
6
+
7
+ ### v0.72.0 (2025-04-20)
8
+
9
+ * Regenerated from discovery document revision 20250409
10
+
3
11
  ### v0.71.0 (2025-03-30)
4
12
 
5
13
  * Regenerated from discovery document revision 20250319
@@ -5014,6 +5014,18 @@ module Google
5014
5014
  # @return [String]
5015
5015
  attr_accessor :database
5016
5016
 
5017
+ # Optional. The schema name. This will be required only if the object uses a
5018
+ # schema name as part of its unique identifier.
5019
+ # Corresponds to the JSON property `schema`
5020
+ # @return [String]
5021
+ attr_accessor :schema
5022
+
5023
+ # Optional. The table name. This will be required only if the object is a level
5024
+ # below database or schema.
5025
+ # Corresponds to the JSON property `table`
5026
+ # @return [String]
5027
+ attr_accessor :table
5028
+
5017
5029
  # Required. The type of the migration job object.
5018
5030
  # Corresponds to the JSON property `type`
5019
5031
  # @return [String]
@@ -5026,6 +5038,8 @@ module Google
5026
5038
  # Update properties of this object
5027
5039
  def update!(**args)
5028
5040
  @database = args[:database] if args.key?(:database)
5041
+ @schema = args[:schema] if args.key?(:schema)
5042
+ @table = args[:table] if args.key?(:table)
5029
5043
  @type = args[:type] if args.key?(:type)
5030
5044
  end
5031
5045
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DatamigrationV1
18
18
  # Version of the google-apis-datamigration_v1 gem
19
- GEM_VERSION = "0.71.0"
19
+ GEM_VERSION = "0.73.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250319"
25
+ REVISION = "20250416"
26
26
  end
27
27
  end
28
28
  end
@@ -2212,6 +2212,8 @@ module Google
2212
2212
  # @private
2213
2213
  class Representation < Google::Apis::Core::JsonRepresentation
2214
2214
  property :database, as: 'database'
2215
+ property :schema, as: 'schema'
2216
+ property :table, as: 'table'
2215
2217
  property :type, as: 'type'
2216
2218
  end
2217
2219
  end
@@ -122,6 +122,9 @@ module Google
122
122
  # Lists information about the supported locations for this service.
123
123
  # @param [String] name
124
124
  # The resource that owns the locations collection, if applicable.
125
+ # @param [Array<String>, String] extra_location_types
126
+ # Optional. A list of extra location types that should be used as conditions for
127
+ # controlling the visibility of the locations.
125
128
  # @param [String] filter
126
129
  # A filter to narrow down results to a preferred subset. The filtering language
127
130
  # accepts strings like `"displayName=tokyo"`, and is documented in more detail
@@ -149,11 +152,12 @@ module Google
149
152
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
150
153
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
151
154
  # @raise [Google::Apis::AuthorizationError] Authorization is required
152
- def list_project_locations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
155
+ def list_project_locations(name, extra_location_types: nil, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
153
156
  command = make_simple_command(:get, 'v1/{+name}/locations', options)
154
157
  command.response_representation = Google::Apis::DatamigrationV1::ListLocationsResponse::Representation
155
158
  command.response_class = Google::Apis::DatamigrationV1::ListLocationsResponse
156
159
  command.params['name'] = name unless name.nil?
160
+ command.query['extraLocationTypes'] = extra_location_types unless extra_location_types.nil?
157
161
  command.query['filter'] = filter unless filter.nil?
158
162
  command.query['pageSize'] = page_size unless page_size.nil?
159
163
  command.query['pageToken'] = page_token unless page_token.nil?
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-datamigration_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.71.0
4
+ version: 0.73.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-30 00:00:00.000000000 Z
10
+ date: 2025-04-27 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: google-apis-core
@@ -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-datamigration_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-datamigration_v1/v0.71.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datamigration_v1/v0.73.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datamigration_v1
62
62
  rdoc_options: []
63
63
  require_paths: