google-apis-datamigration_v1beta1 0.36.0 → 0.38.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: 97381081f3bacd935731400738bb2d1855e091bfdd4dcc472c53d8beb4d52e9f
4
- data.tar.gz: 9625fdc70c92522c7cbb8a8b506d7cdcf0484e9a3e337c5418b36007d2201e07
3
+ metadata.gz: 7808fc719315aa54b82e09400f66af4c889e6b99edc49176a73de03e88d743cf
4
+ data.tar.gz: 6df0e892e2ff70ff1af3eec848253b66d9099d72f1707431bcc79f98fa55c764
5
5
  SHA512:
6
- metadata.gz: 802a60c6abd779e737dd712095825641e45ebff97f1f9609c2221467360c37b584f21487bd4396d767d77c3bf61a4d231fb327736ce66544982fe36fddcf767f
7
- data.tar.gz: c9ae29edfccf55b1e531f43927943c94ea8b4343c86378f25e9f0dd11096b45a257f467810e3544e9524952883f81a38225f00f7f277d20ab5e5568f3b18621c
6
+ metadata.gz: 59717fe2e5aee998be4c963d9f47c57880247a61a9a270835dc7d45ca6a624d88a3f96f6ba2b9de329f5357af756e8fee2ccc33c81331d530bed7bb241596544
7
+ data.tar.gz: 2ff9844c9fcbd4c1fc97ec1f0c42e75ab830af9756eda287dad5297b944f2fe0441b04560cc6cc109201cf0acc1364315618019e995015928c1be1972e62934b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-datamigration_v1beta1
2
2
 
3
+ ### v0.38.0 (2025-12-07)
4
+
5
+ * Regenerated from discovery document revision 20251201
6
+
7
+ ### v0.37.0 (2025-11-09)
8
+
9
+ * Regenerated from discovery document revision 20251029
10
+
3
11
  ### v0.36.0 (2025-08-24)
4
12
 
5
13
  * Regenerated from discovery document revision 20250815
@@ -746,6 +746,14 @@ module Google
746
746
  # @return [Array<Google::Apis::DatamigrationV1beta1::Operation>]
747
747
  attr_accessor :operations
748
748
 
749
+ # Unordered list. Unreachable resources. Populated when the request sets `
750
+ # ListOperationsRequest.return_partial_success` and reads across collections.
751
+ # For example, when attempting to list all resources across all supported
752
+ # locations.
753
+ # Corresponds to the JSON property `unreachable`
754
+ # @return [Array<String>]
755
+ attr_accessor :unreachable
756
+
749
757
  def initialize(**args)
750
758
  update!(**args)
751
759
  end
@@ -754,6 +762,7 @@ module Google
754
762
  def update!(**args)
755
763
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
756
764
  @operations = args[:operations] if args.key?(:operations)
765
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
757
766
  end
758
767
  end
759
768
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DatamigrationV1beta1
18
18
  # Version of the google-apis-datamigration_v1beta1 gem
19
- GEM_VERSION = "0.36.0"
19
+ GEM_VERSION = "0.38.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 = "20250815"
25
+ REVISION = "20251201"
26
26
  end
27
27
  end
28
28
  end
@@ -436,6 +436,7 @@ module Google
436
436
  property :next_page_token, as: 'nextPageToken'
437
437
  collection :operations, as: 'operations', class: Google::Apis::DatamigrationV1beta1::Operation, decorator: Google::Apis::DatamigrationV1beta1::Operation::Representation
438
438
 
439
+ collection :unreachable, as: 'unreachable'
439
440
  end
440
441
  end
441
442
 
@@ -1148,6 +1148,14 @@ module Google
1148
1148
  # The standard list page size.
1149
1149
  # @param [String] page_token
1150
1150
  # The standard list page token.
1151
+ # @param [Boolean] return_partial_success
1152
+ # When set to `true`, operations that are reachable are returned as normal, and
1153
+ # those that are unreachable are returned in the ListOperationsResponse.
1154
+ # unreachable field. This can only be `true` when reading across collections.
1155
+ # For example, when `parent` is set to `"projects/example/locations/-"`. This
1156
+ # field is not supported by default and will result in an `UNIMPLEMENTED` error
1157
+ # if set unless explicitly documented otherwise in service or product specific
1158
+ # documentation.
1151
1159
  # @param [String] fields
1152
1160
  # Selector specifying which fields to include in a partial response.
1153
1161
  # @param [String] quota_user
@@ -1165,7 +1173,7 @@ module Google
1165
1173
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1166
1174
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1167
1175
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1168
- def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1176
+ def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
1169
1177
  command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
1170
1178
  command.response_representation = Google::Apis::DatamigrationV1beta1::ListOperationsResponse::Representation
1171
1179
  command.response_class = Google::Apis::DatamigrationV1beta1::ListOperationsResponse
@@ -1173,6 +1181,7 @@ module Google
1173
1181
  command.query['filter'] = filter unless filter.nil?
1174
1182
  command.query['pageSize'] = page_size unless page_size.nil?
1175
1183
  command.query['pageToken'] = page_token unless page_token.nil?
1184
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
1176
1185
  command.query['fields'] = fields unless fields.nil?
1177
1186
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1178
1187
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-datamigration_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.36.0
4
+ version: 0.38.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-datamigration_v1beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-datamigration_v1beta1/v0.36.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datamigration_v1beta1/v0.38.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datamigration_v1beta1
62
62
  rdoc_options: []
63
63
  require_paths: