google-apis-migrationcenter_v1alpha1 0.35.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: bee62636d845e0866a26ed6bdfeb7d5b1fc55ba2fadb296e17bf1d0fdbbfe42c
4
- data.tar.gz: 4e9f63fd8829444f2594281f3b59d9b382ee12cb6a0c9a028a757f6e5513239e
3
+ metadata.gz: 42abcd01d2acf53d3549509316b4abf075bf4fbaf6c1d973a4927c3bfda021e3
4
+ data.tar.gz: b9bdd1c94f786c3249d1f5d97333ab0202ddf6bef400b13483c28e5385089388
5
5
  SHA512:
6
- metadata.gz: ec89fa17adb8c52b83f2c740d24b393c1c99188e5d7e0fad8348f4732e0edd86e2535e073fe130c1b2eb0c27887367c14022fdf846ac8a7e500d51c163550020
7
- data.tar.gz: 5a26223fe12a9821d502d30e6aae1451903068c7f4e273a97010f98f47391a0797ce0aa60ad5f6eab0cb74436a885b1b7554ae689c24bbefcff4c90550bc7fab
6
+ metadata.gz: 73bf0f4d7ffea4ae661c1bf25c1c995a52edddeb2ed10b28fad33fa879777d213fc5356c973f5ae9003a35f73c61b3b06317550cb104f3beff060cb1197b7623
7
+ data.tar.gz: 965c483faa0d140a32482eec2771e7b0017ad6f7b133d4e75bc422812978f306beb07ac285dbff6d916ccb11caef0994afad7e2a5e6643612c7c45fe04352e16
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.35.0 (2024-12-15)
4
8
 
5
9
  * Regenerated from discovery document revision 20241205
@@ -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
 
@@ -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.35.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 = "20241205"
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
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.35.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-15 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.35.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: []