google-apis-vmmigration_v1alpha1 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bb5bed50bc79e578c1be643ce76ffb745e3acfbccf12a88026efc3c1c187db4f
4
- data.tar.gz: 490caeafb87617750df2bf8c97674f67957d213278f7c905d2e70d23d92a5a99
3
+ metadata.gz: b14f7e096a13f8a4f08cab84c004f3057a25ecd2cb5a7cab608dc5cd055c44a1
4
+ data.tar.gz: 8748dbbbdd6ba4d207cabb3f45ea3ae230eab78b3fff984b4f788dac29268d37
5
5
  SHA512:
6
- metadata.gz: 693b69a4a9a82819853f651fdedd83479babbac068559f598f835ca390c8c2bb2eb7e508cd9a65f8270547daeb648491a136f674e98c50c406bae32f1104d4f0
7
- data.tar.gz: 9593c17e020c777cd39bcd4b6efea4d470bf211716d1210b1cda152f17b54bd1579e6dbb7a9adc1302fe4e6b2cad5affcdc78d6590640dae991f433681ed740a
6
+ metadata.gz: d1e2c8813f7645e7254c623b262ea1eec4aff20bc77adc5f6973038ea59b9eda0ef16fb4d7ebf3a987ca014add26c3fff7cf415aeda8b1102105c713a288d60f
7
+ data.tar.gz: f3e30210ea7bba24edcba860839b8c75a754b1bc6996f20f6cd6883c459290bdf4db6b02bf9ee503b9fd5cd22225c297cc485e848a48b68b926fc5cf5af8ff79
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-vmmigration_v1alpha1
2
2
 
3
+ ### v0.2.0 (2021-10-29)
4
+
5
+ * Regenerated from discovery document revision 20211021
6
+
3
7
  ### v0.1.0 (2021-10-22)
4
8
 
5
9
  * Regenerated from discovery document revision 20211014
@@ -1220,14 +1220,16 @@ module Google
1220
1220
 
1221
1221
  # Output only. The recent clone jobs performed on the migrating VM. This field
1222
1222
  # holds the vm's last completed clone job and the vm's running clone job, if one
1223
- # exists.
1223
+ # exists. Note: To have this field populated you need to explicitly request it
1224
+ # via the "view" parameter of the Get/List request.
1224
1225
  # Corresponds to the JSON property `recentCloneJobs`
1225
1226
  # @return [Array<Google::Apis::VmmigrationV1alpha1::CloneJob>]
1226
1227
  attr_accessor :recent_clone_jobs
1227
1228
 
1228
1229
  # Output only. The recent cutover jobs performed on the migrating VM. This field
1229
1230
  # holds the vm's last completed cutover job and the vm's running cutover job, if
1230
- # one exists.
1231
+ # one exists. Note: To have this field populated you need to explicitly request
1232
+ # it via the "view" parameter of the Get/List request.
1231
1233
  # Corresponds to the JSON property `recentCutoverJobs`
1232
1234
  # @return [Array<Google::Apis::VmmigrationV1alpha1::CutoverJob>]
1233
1235
  attr_accessor :recent_cutover_jobs
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module VmmigrationV1alpha1
18
18
  # Version of the google-apis-vmmigration_v1alpha1 gem
19
- GEM_VERSION = "0.1.0"
19
+ GEM_VERSION = "0.2.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211014"
25
+ REVISION = "20211021"
26
26
  end
27
27
  end
28
28
  end
@@ -1096,6 +1096,8 @@ module Google
1096
1096
  # Gets details of a single MigratingVm.
1097
1097
  # @param [String] name
1098
1098
  # Required. The name of the MigratingVm.
1099
+ # @param [String] view
1100
+ # Optional. The level of details of the migrating VM.
1099
1101
  # @param [String] fields
1100
1102
  # Selector specifying which fields to include in a partial response.
1101
1103
  # @param [String] quota_user
@@ -1113,11 +1115,12 @@ module Google
1113
1115
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1114
1116
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1115
1117
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1116
- def get_project_location_source_migrating_vm(name, fields: nil, quota_user: nil, options: nil, &block)
1118
+ def get_project_location_source_migrating_vm(name, view: nil, fields: nil, quota_user: nil, options: nil, &block)
1117
1119
  command = make_simple_command(:get, 'v1alpha1/{+name}', options)
1118
1120
  command.response_representation = Google::Apis::VmmigrationV1alpha1::MigratingVm::Representation
1119
1121
  command.response_class = Google::Apis::VmmigrationV1alpha1::MigratingVm
1120
1122
  command.params['name'] = name unless name.nil?
1123
+ command.query['view'] = view unless view.nil?
1121
1124
  command.query['fields'] = fields unless fields.nil?
1122
1125
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1123
1126
  execute_or_queue_command(command, &block)
@@ -1140,6 +1143,8 @@ module Google
1140
1143
  # Provide this to retrieve the subsequent page. When paginating, all other
1141
1144
  # parameters provided to `ListMigratingVms` must match the call that provided
1142
1145
  # the page token.
1146
+ # @param [String] view
1147
+ # Optional. The level of details of each migrating VM.
1143
1148
  # @param [String] fields
1144
1149
  # Selector specifying which fields to include in a partial response.
1145
1150
  # @param [String] quota_user
@@ -1157,7 +1162,7 @@ module Google
1157
1162
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1158
1163
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1159
1164
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1160
- def list_project_location_source_migrating_vms(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1165
+ def list_project_location_source_migrating_vms(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
1161
1166
  command = make_simple_command(:get, 'v1alpha1/{+parent}/migratingVms', options)
1162
1167
  command.response_representation = Google::Apis::VmmigrationV1alpha1::ListMigratingVmsResponse::Representation
1163
1168
  command.response_class = Google::Apis::VmmigrationV1alpha1::ListMigratingVmsResponse
@@ -1166,6 +1171,7 @@ module Google
1166
1171
  command.query['orderBy'] = order_by unless order_by.nil?
1167
1172
  command.query['pageSize'] = page_size unless page_size.nil?
1168
1173
  command.query['pageToken'] = page_token unless page_token.nil?
1174
+ command.query['view'] = view unless view.nil?
1169
1175
  command.query['fields'] = fields unless fields.nil?
1170
1176
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1171
1177
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-vmmigration_v1alpha1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-10-27 00:00:00.000000000 Z
11
+ date: 2021-11-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vmmigration_v1alpha1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1alpha1/v0.1.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1alpha1/v0.2.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vmmigration_v1alpha1
63
63
  post_install_message:
64
64
  rdoc_options: []