google-apis-migrationcenter_v1 0.13.0 → 0.15.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 69c7b7b2a36b2a74636577df0d1e8af15fcdecdb3c754cf32bf2fcf6086cfc50
|
4
|
+
data.tar.gz: 92790393a58741a8ca92ef84233d09e4c856d6c60ee14ab6b46028b4206423a2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f5159d996b05b6f68646449827e51ae49cd0860aa3f05858c84360c87bc2efdd7de158fb9497c5b292a9d6a0a510db95d3663a75aa9baa5355341d4ad21cd96b
|
7
|
+
data.tar.gz: 6e10c07c61d2e45b3b23851e4e69cdb954b3ba0c572fdc28767d05fcab35c797e7d3a81ceba98a79932c028c7fa62da1fba73c2da038b600108c105fac054e30
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-migrationcenter_v1
|
2
2
|
|
3
|
+
### v0.15.0 (2024-09-01)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240822
|
6
|
+
* Regenerated using generator version 0.15.1
|
7
|
+
|
8
|
+
### v0.14.0 (2024-06-26)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20240620
|
11
|
+
|
3
12
|
### v0.13.0 (2024-05-26)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20240516
|
@@ -2156,6 +2156,11 @@ module Google
|
|
2156
2156
|
class ImportRowError
|
2157
2157
|
include Google::Apis::Core::Hashable
|
2158
2158
|
|
2159
|
+
# Error details for a CSV file.
|
2160
|
+
# Corresponds to the JSON property `csvError`
|
2161
|
+
# @return [Google::Apis::MigrationcenterV1::ImportRowErrorCsvErrorDetails]
|
2162
|
+
attr_accessor :csv_error
|
2163
|
+
|
2159
2164
|
# The list of errors detected in the row.
|
2160
2165
|
# Corresponds to the JSON property `errors`
|
2161
2166
|
# @return [Array<Google::Apis::MigrationcenterV1::ImportError>]
|
@@ -2176,16 +2181,67 @@ module Google
|
|
2176
2181
|
# @return [String]
|
2177
2182
|
attr_accessor :vm_uuid
|
2178
2183
|
|
2184
|
+
# Error details for an XLSX file.
|
2185
|
+
# Corresponds to the JSON property `xlsxError`
|
2186
|
+
# @return [Google::Apis::MigrationcenterV1::ImportRowErrorXlsxErrorDetails]
|
2187
|
+
attr_accessor :xlsx_error
|
2188
|
+
|
2179
2189
|
def initialize(**args)
|
2180
2190
|
update!(**args)
|
2181
2191
|
end
|
2182
2192
|
|
2183
2193
|
# Update properties of this object
|
2184
2194
|
def update!(**args)
|
2195
|
+
@csv_error = args[:csv_error] if args.key?(:csv_error)
|
2185
2196
|
@errors = args[:errors] if args.key?(:errors)
|
2186
2197
|
@row_number = args[:row_number] if args.key?(:row_number)
|
2187
2198
|
@vm_name = args[:vm_name] if args.key?(:vm_name)
|
2188
2199
|
@vm_uuid = args[:vm_uuid] if args.key?(:vm_uuid)
|
2200
|
+
@xlsx_error = args[:xlsx_error] if args.key?(:xlsx_error)
|
2201
|
+
end
|
2202
|
+
end
|
2203
|
+
|
2204
|
+
# Error details for a CSV file.
|
2205
|
+
class ImportRowErrorCsvErrorDetails
|
2206
|
+
include Google::Apis::Core::Hashable
|
2207
|
+
|
2208
|
+
# The row number where the error was detected.
|
2209
|
+
# Corresponds to the JSON property `rowNumber`
|
2210
|
+
# @return [Fixnum]
|
2211
|
+
attr_accessor :row_number
|
2212
|
+
|
2213
|
+
def initialize(**args)
|
2214
|
+
update!(**args)
|
2215
|
+
end
|
2216
|
+
|
2217
|
+
# Update properties of this object
|
2218
|
+
def update!(**args)
|
2219
|
+
@row_number = args[:row_number] if args.key?(:row_number)
|
2220
|
+
end
|
2221
|
+
end
|
2222
|
+
|
2223
|
+
# Error details for an XLSX file.
|
2224
|
+
class ImportRowErrorXlsxErrorDetails
|
2225
|
+
include Google::Apis::Core::Hashable
|
2226
|
+
|
2227
|
+
# The row number where the error was detected.
|
2228
|
+
# Corresponds to the JSON property `rowNumber`
|
2229
|
+
# @return [Fixnum]
|
2230
|
+
attr_accessor :row_number
|
2231
|
+
|
2232
|
+
# The name of the sheet where the error was detected.
|
2233
|
+
# Corresponds to the JSON property `sheet`
|
2234
|
+
# @return [String]
|
2235
|
+
attr_accessor :sheet
|
2236
|
+
|
2237
|
+
def initialize(**args)
|
2238
|
+
update!(**args)
|
2239
|
+
end
|
2240
|
+
|
2241
|
+
# Update properties of this object
|
2242
|
+
def update!(**args)
|
2243
|
+
@row_number = args[:row_number] if args.key?(:row_number)
|
2244
|
+
@sheet = args[:sheet] if args.key?(:sheet)
|
2189
2245
|
end
|
2190
2246
|
end
|
2191
2247
|
|
@@ -2718,7 +2774,7 @@ module Google
|
|
2718
2774
|
# @return [Google::Apis::MigrationcenterV1::MachineArchitectureDetails]
|
2719
2775
|
attr_accessor :architecture
|
2720
2776
|
|
2721
|
-
# Number of CPU cores in the machine. Must be non-negative.
|
2777
|
+
# Number of logical CPU cores in the machine. Must be non-negative.
|
2722
2778
|
# Corresponds to the JSON property `coreCount`
|
2723
2779
|
# @return [Fixnum]
|
2724
2780
|
attr_accessor :core_count
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module MigrationcenterV1
|
18
18
|
# Version of the google-apis-migrationcenter_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.15.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.15.
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240822"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -418,6 +418,18 @@ module Google
|
|
418
418
|
include Google::Apis::Core::JsonObjectSupport
|
419
419
|
end
|
420
420
|
|
421
|
+
class ImportRowErrorCsvErrorDetails
|
422
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
423
|
+
|
424
|
+
include Google::Apis::Core::JsonObjectSupport
|
425
|
+
end
|
426
|
+
|
427
|
+
class ImportRowErrorXlsxErrorDetails
|
428
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
429
|
+
|
430
|
+
include Google::Apis::Core::JsonObjectSupport
|
431
|
+
end
|
432
|
+
|
421
433
|
class Insight
|
422
434
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
423
435
|
|
@@ -1570,11 +1582,30 @@ module Google
|
|
1570
1582
|
class ImportRowError
|
1571
1583
|
# @private
|
1572
1584
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1585
|
+
property :csv_error, as: 'csvError', class: Google::Apis::MigrationcenterV1::ImportRowErrorCsvErrorDetails, decorator: Google::Apis::MigrationcenterV1::ImportRowErrorCsvErrorDetails::Representation
|
1586
|
+
|
1573
1587
|
collection :errors, as: 'errors', class: Google::Apis::MigrationcenterV1::ImportError, decorator: Google::Apis::MigrationcenterV1::ImportError::Representation
|
1574
1588
|
|
1575
1589
|
property :row_number, as: 'rowNumber'
|
1576
1590
|
property :vm_name, as: 'vmName'
|
1577
1591
|
property :vm_uuid, as: 'vmUuid'
|
1592
|
+
property :xlsx_error, as: 'xlsxError', class: Google::Apis::MigrationcenterV1::ImportRowErrorXlsxErrorDetails, decorator: Google::Apis::MigrationcenterV1::ImportRowErrorXlsxErrorDetails::Representation
|
1593
|
+
|
1594
|
+
end
|
1595
|
+
end
|
1596
|
+
|
1597
|
+
class ImportRowErrorCsvErrorDetails
|
1598
|
+
# @private
|
1599
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1600
|
+
property :row_number, as: 'rowNumber'
|
1601
|
+
end
|
1602
|
+
end
|
1603
|
+
|
1604
|
+
class ImportRowErrorXlsxErrorDetails
|
1605
|
+
# @private
|
1606
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1607
|
+
property :row_number, as: 'rowNumber'
|
1608
|
+
property :sheet, as: 'sheet'
|
1578
1609
|
end
|
1579
1610
|
end
|
1580
1611
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-migrationcenter_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.15.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: 2024-
|
11
|
+
date: 2024-09-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-migrationcenter_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-migrationcenter_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-migrationcenter_v1/v0.15.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-migrationcenter_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|