google-apis-migrationcenter_v1alpha1 0.34.0 → 0.36.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: 50639fba955a10c42106415a3f2e8d1689b5a2e8ac132f5be6867e66be1289ab
4
- data.tar.gz: db9f1b0703daaf96d6102db9ee7de5a0635862e89e4d85c87f0aa4ab6ac63684
3
+ metadata.gz: 42abcd01d2acf53d3549509316b4abf075bf4fbaf6c1d973a4927c3bfda021e3
4
+ data.tar.gz: b9bdd1c94f786c3249d1f5d97333ab0202ddf6bef400b13483c28e5385089388
5
5
  SHA512:
6
- metadata.gz: 1c56fe1b1643828c55919cde0326e7b90adb14f1a49281491f49b2d7ba59c02329626f842864a238daee85ba6f25c857262c75957153b62b96f0929c641c60ce
7
- data.tar.gz: 27e29a193df925355d49e994607f767ca3b1709c6fa81cf5056ccf9b43136fb5cf1a8a1aac36111fe1ff6199deb73ca07ea1d642628223011489f8c193c3cc67
6
+ metadata.gz: 73bf0f4d7ffea4ae661c1bf25c1c995a52edddeb2ed10b28fad33fa879777d213fc5356c973f5ae9003a35f73c61b3b06317550cb104f3beff060cb1197b7623
7
+ data.tar.gz: 965c483faa0d140a32482eec2771e7b0017ad6f7b133d4e75bc422812978f306beb07ac285dbff6d916ccb11caef0994afad7e2a5e6643612c7c45fe04352e16
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-migrationcenter_v1alpha1
2
2
 
3
+ ### v0.36.0 (2024-12-22)
4
+
5
+ * Regenerated from discovery document revision 20241212
6
+
7
+ ### v0.35.0 (2024-12-15)
8
+
9
+ * Regenerated from discovery document revision 20241205
10
+
3
11
  ### v0.34.0 (2024-12-02)
4
12
 
5
13
  * Regenerated from discovery document revision 20241027
@@ -5108,6 +5108,11 @@ module Google
5108
5108
  # @return [Fixnum]
5109
5109
  attr_accessor :file_size_bytes
5110
5110
 
5111
+ # Contains a single output file of type XLSX.
5112
+ # Corresponds to the JSON property `xlsxOutputFile`
5113
+ # @return [Google::Apis::MigrationcenterV1alpha1::XlsxOutputFile]
5114
+ attr_accessor :xlsx_output_file
5115
+
5111
5116
  def initialize(**args)
5112
5117
  update!(**args)
5113
5118
  end
@@ -5116,6 +5121,7 @@ module Google
5116
5121
  def update!(**args)
5117
5122
  @csv_output_file = args[:csv_output_file] if args.key?(:csv_output_file)
5118
5123
  @file_size_bytes = args[:file_size_bytes] if args.key?(:file_size_bytes)
5124
+ @xlsx_output_file = args[:xlsx_output_file] if args.key?(:xlsx_output_file)
5119
5125
  end
5120
5126
  end
5121
5127
 
@@ -6848,12 +6854,18 @@ module Google
6848
6854
  class SignedUriDestination
6849
6855
  include Google::Apis::Core::Hashable
6850
6856
 
6857
+ # Required. The file format to export.
6858
+ # Corresponds to the JSON property `fileFormat`
6859
+ # @return [String]
6860
+ attr_accessor :file_format
6861
+
6851
6862
  def initialize(**args)
6852
6863
  update!(**args)
6853
6864
  end
6854
6865
 
6855
6866
  # Update properties of this object
6856
6867
  def update!(**args)
6868
+ @file_format = args[:file_format] if args.key?(:file_format)
6857
6869
  end
6858
6870
  end
6859
6871
 
@@ -7222,12 +7234,12 @@ module Google
7222
7234
  class TimeZone
7223
7235
  include Google::Apis::Core::Hashable
7224
7236
 
7225
- # IANA Time Zone Database time zone, e.g. "America/New_York".
7237
+ # IANA Time Zone Database time zone. For example "America/New_York".
7226
7238
  # Corresponds to the JSON property `id`
7227
7239
  # @return [String]
7228
7240
  attr_accessor :id
7229
7241
 
7230
- # Optional. IANA Time Zone Database version number, e.g. "2019a".
7242
+ # Optional. IANA Time Zone Database version number. For example "2019a".
7231
7243
  # Corresponds to the JSON property `version`
7232
7244
  # @return [String]
7233
7245
  attr_accessor :version
@@ -7965,6 +7977,25 @@ module Google
7965
7977
  @vcenter_version = args[:vcenter_version] if args.key?(:vcenter_version)
7966
7978
  end
7967
7979
  end
7980
+
7981
+ # Contains a single output file of type XLSX.
7982
+ class XlsxOutputFile
7983
+ include Google::Apis::Core::Hashable
7984
+
7985
+ # Contains a signed URI.
7986
+ # Corresponds to the JSON property `signedUri`
7987
+ # @return [Google::Apis::MigrationcenterV1alpha1::SignedUri]
7988
+ attr_accessor :signed_uri
7989
+
7990
+ def initialize(**args)
7991
+ update!(**args)
7992
+ end
7993
+
7994
+ # Update properties of this object
7995
+ def update!(**args)
7996
+ @signed_uri = args[:signed_uri] if args.key?(:signed_uri)
7997
+ end
7998
+ end
7968
7999
  end
7969
8000
  end
7970
8001
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module MigrationcenterV1alpha1
18
18
  # Version of the google-apis-migrationcenter_v1alpha1 gem
19
- GEM_VERSION = "0.34.0"
19
+ GEM_VERSION = "0.36.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20241027"
25
+ REVISION = "20241212"
26
26
  end
27
27
  end
28
28
  end
@@ -1378,6 +1378,12 @@ module Google
1378
1378
  include Google::Apis::Core::JsonObjectSupport
1379
1379
  end
1380
1380
 
1381
+ class XlsxOutputFile
1382
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1383
+
1384
+ include Google::Apis::Core::JsonObjectSupport
1385
+ end
1386
+
1381
1387
  class AddAssetsToGroupRequest
1382
1388
  # @private
1383
1389
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2927,6 +2933,8 @@ module Google
2927
2933
  property :csv_output_file, as: 'csvOutputFile', class: Google::Apis::MigrationcenterV1alpha1::CsvOutputFile, decorator: Google::Apis::MigrationcenterV1alpha1::CsvOutputFile::Representation
2928
2934
 
2929
2935
  property :file_size_bytes, as: 'fileSizeBytes'
2936
+ property :xlsx_output_file, as: 'xlsxOutputFile', class: Google::Apis::MigrationcenterV1alpha1::XlsxOutputFile, decorator: Google::Apis::MigrationcenterV1alpha1::XlsxOutputFile::Representation
2937
+
2930
2938
  end
2931
2939
  end
2932
2940
 
@@ -3451,6 +3459,7 @@ module Google
3451
3459
  class SignedUriDestination
3452
3460
  # @private
3453
3461
  class Representation < Google::Apis::Core::JsonRepresentation
3462
+ property :file_format, as: 'fileFormat'
3454
3463
  end
3455
3464
  end
3456
3465
 
@@ -3758,6 +3767,14 @@ module Google
3758
3767
  property :vcenter_version, as: 'vcenterVersion'
3759
3768
  end
3760
3769
  end
3770
+
3771
+ class XlsxOutputFile
3772
+ # @private
3773
+ class Representation < Google::Apis::Core::JsonRepresentation
3774
+ property :signed_uri, as: 'signedUri', class: Google::Apis::MigrationcenterV1alpha1::SignedUri, decorator: Google::Apis::MigrationcenterV1alpha1::SignedUri::Representation
3775
+
3776
+ end
3777
+ end
3761
3778
  end
3762
3779
  end
3763
3780
  end
@@ -1703,8 +1703,8 @@ module Google
1703
1703
  # Clients can use Operations.GetOperation or other methods to check whether the
1704
1704
  # cancellation succeeded or whether the operation completed despite cancellation.
1705
1705
  # On successful cancellation, the operation is not deleted; instead, it becomes
1706
- # an operation with an Operation.error value with a google.rpc.Status.code of 1,
1707
- # corresponding to `Code.CANCELLED`.
1706
+ # an operation with an Operation.error value with a google.rpc.Status.code of `1`
1707
+ # , corresponding to `Code.CANCELLED`.
1708
1708
  # @param [String] name
1709
1709
  # The name of the operation resource to be cancelled.
1710
1710
  # @param [Google::Apis::MigrationcenterV1alpha1::CancelOperationRequest] cancel_operation_request_object
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-migrationcenter_v1alpha1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.34.0
4
+ version: 0.36.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-12-04 00:00:00.000000000 Z
11
+ date: 2025-01-05 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_v1alpha1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-migrationcenter_v1alpha1/v0.34.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-migrationcenter_v1alpha1/v0.36.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-migrationcenter_v1alpha1
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.5.22
78
+ rubygems_version: 3.5.23
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Migration Center API V1alpha1