google-apis-datamigration_v1beta1 0.36.0 → 0.37.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: d547a502240f2ee339514769dba1b938ee3e9731378542340f677210ba0e7e5e
4
+ data.tar.gz: b162b71c6358cefd136359641b95b764713c4510b02d6dc50d5f06ad9efd7b24
5
5
  SHA512:
6
- metadata.gz: 802a60c6abd779e737dd712095825641e45ebff97f1f9609c2221467360c37b584f21487bd4396d767d77c3bf61a4d231fb327736ce66544982fe36fddcf767f
7
- data.tar.gz: c9ae29edfccf55b1e531f43927943c94ea8b4343c86378f25e9f0dd11096b45a257f467810e3544e9524952883f81a38225f00f7f277d20ab5e5568f3b18621c
6
+ metadata.gz: b88a12a85a992a5a8dffa9ceb9c5672d6b5f3570dd23bc68426d5031c1f615b505d7d2fd03e797a0ddde135db0dbff69c2f818616acb6b50b3ac380fb68b738f
7
+ data.tar.gz: 34aa760b84e739b901c48a2bb9f165c0235e101418f1762d6c1db45e36c53ff4eea23b2e8f2612780e9960a16661f4ba320baf04f53f983c6b516e7353ce5c5f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-datamigration_v1beta1
2
2
 
3
+ ### v0.37.0 (2025-11-09)
4
+
5
+ * Regenerated from discovery document revision 20251029
6
+
3
7
  ### v0.36.0 (2025-08-24)
4
8
 
5
9
  * Regenerated from discovery document revision 20250815
@@ -746,6 +746,13 @@ 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 e.g.
751
+ # when attempting to list all resources across all supported locations.
752
+ # Corresponds to the JSON property `unreachable`
753
+ # @return [Array<String>]
754
+ attr_accessor :unreachable
755
+
749
756
  def initialize(**args)
750
757
  update!(**args)
751
758
  end
@@ -754,6 +761,7 @@ module Google
754
761
  def update!(**args)
755
762
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
756
763
  @operations = args[:operations] if args.key?(:operations)
764
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
757
765
  end
758
766
  end
759
767
 
@@ -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.37.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 = "20251029"
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,13 @@ 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 e.
1155
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
1156
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
1157
+ # explicitly documented otherwise in service or product specific documentation.
1151
1158
  # @param [String] fields
1152
1159
  # Selector specifying which fields to include in a partial response.
1153
1160
  # @param [String] quota_user
@@ -1165,7 +1172,7 @@ module Google
1165
1172
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1166
1173
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1167
1174
  # @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)
1175
+ 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
1176
  command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
1170
1177
  command.response_representation = Google::Apis::DatamigrationV1beta1::ListOperationsResponse::Representation
1171
1178
  command.response_class = Google::Apis::DatamigrationV1beta1::ListOperationsResponse
@@ -1173,6 +1180,7 @@ module Google
1173
1180
  command.query['filter'] = filter unless filter.nil?
1174
1181
  command.query['pageSize'] = page_size unless page_size.nil?
1175
1182
  command.query['pageToken'] = page_token unless page_token.nil?
1183
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
1176
1184
  command.query['fields'] = fields unless fields.nil?
1177
1185
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1178
1186
  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.37.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.37.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: