Skip to content

Commit 07cb22b

Browse files
feat: Automated regeneration of migrationcenter v1alpha1 client (googleapis#21110)
Auto-created at 2024-12-22 09:57:31 +0000 using the toys pull request generator.
1 parent d586500 commit 07cb22b

File tree

5 files changed

+58
-2
lines changed

5 files changed

+58
-2
lines changed

api_names_out.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -264080,6 +264080,7 @@
264080264080
"/migrationcenter:v1alpha1/OutputFile": output_file
264081264081
"/migrationcenter:v1alpha1/OutputFile/csvOutputFile": csv_output_file
264082264082
"/migrationcenter:v1alpha1/OutputFile/fileSizeBytes": file_size_bytes
264083+
"/migrationcenter:v1alpha1/OutputFile/xlsxOutputFile": xlsx_output_file
264083264084
"/migrationcenter:v1alpha1/OutputFileList": output_file_list
264084264085
"/migrationcenter:v1alpha1/OutputFileList/entries": entries
264085264086
"/migrationcenter:v1alpha1/OutputFileList/entries/entry": entry
@@ -264320,6 +264321,7 @@
264320264321
"/migrationcenter:v1alpha1/SignedUri/file": file
264321264322
"/migrationcenter:v1alpha1/SignedUri/uri": uri
264322264323
"/migrationcenter:v1alpha1/SignedUriDestination": signed_uri_destination
264324+
"/migrationcenter:v1alpha1/SignedUriDestination/fileFormat": file_format
264323264325
"/migrationcenter:v1alpha1/SignedUris": signed_uris
264324264326
"/migrationcenter:v1alpha1/SignedUris/signedUris": signed_uris
264325264327
"/migrationcenter:v1alpha1/SignedUris/signedUris/signed_uri": signed_uri
@@ -264471,6 +264473,8 @@
264471264473
"/migrationcenter:v1alpha1/VmwarePlatformDetails/esxVersion": esx_version
264472264474
"/migrationcenter:v1alpha1/VmwarePlatformDetails/osid": osid
264473264475
"/migrationcenter:v1alpha1/VmwarePlatformDetails/vcenterVersion": vcenter_version
264476+
"/migrationcenter:v1alpha1/XlsxOutputFile": xlsx_output_file
264477+
"/migrationcenter:v1alpha1/XlsxOutputFile/signedUri": signed_uri
264474264478
"/migrationcenter:v1alpha1/fields": fields
264475264479
"/migrationcenter:v1alpha1/key": key
264476264480
"/migrationcenter:v1alpha1/migrationcenter.projects.locations.assets.aggregateValues": aggregate_project_location_asset_values

generated/google-apis-migrationcenter_v1alpha1/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-migrationcenter_v1alpha1
22

3+
### v0.36.0 (2024-12-22)
4+
5+
* Regenerated from discovery document revision 20241212
6+
37
### v0.35.0 (2024-12-15)
48

59
* Regenerated from discovery document revision 20241205

generated/google-apis-migrationcenter_v1alpha1/lib/google/apis/migrationcenter_v1alpha1/classes.rb

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5108,6 +5108,11 @@ class OutputFile
51085108
# @return [Fixnum]
51095109
attr_accessor :file_size_bytes
51105110

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+
51115116
def initialize(**args)
51125117
update!(**args)
51135118
end
@@ -5116,6 +5121,7 @@ def initialize(**args)
51165121
def update!(**args)
51175122
@csv_output_file = args[:csv_output_file] if args.key?(:csv_output_file)
51185123
@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)
51195125
end
51205126
end
51215127

@@ -6848,12 +6854,18 @@ def update!(**args)
68486854
class SignedUriDestination
68496855
include Google::Apis::Core::Hashable
68506856

6857+
# Required. The file format to export.
6858+
# Corresponds to the JSON property `fileFormat`
6859+
# @return [String]
6860+
attr_accessor :file_format
6861+
68516862
def initialize(**args)
68526863
update!(**args)
68536864
end
68546865

68556866
# Update properties of this object
68566867
def update!(**args)
6868+
@file_format = args[:file_format] if args.key?(:file_format)
68576869
end
68586870
end
68596871

@@ -7965,6 +7977,25 @@ def update!(**args)
79657977
@vcenter_version = args[:vcenter_version] if args.key?(:vcenter_version)
79667978
end
79677979
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
79687999
end
79698000
end
79708001
end

generated/google-apis-migrationcenter_v1alpha1/lib/google/apis/migrationcenter_v1alpha1/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module MigrationcenterV1alpha1
1818
# Version of the google-apis-migrationcenter_v1alpha1 gem
19-
GEM_VERSION = "0.35.0"
19+
GEM_VERSION = "0.36.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.15.1"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20241205"
25+
REVISION = "20241212"
2626
end
2727
end
2828
end

generated/google-apis-migrationcenter_v1alpha1/lib/google/apis/migrationcenter_v1alpha1/representations.rb

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1378,6 +1378,12 @@ class Representation < Google::Apis::Core::JsonRepresentation; end
13781378
include Google::Apis::Core::JsonObjectSupport
13791379
end
13801380

1381+
class XlsxOutputFile
1382+
class Representation < Google::Apis::Core::JsonRepresentation; end
1383+
1384+
include Google::Apis::Core::JsonObjectSupport
1385+
end
1386+
13811387
class AddAssetsToGroupRequest
13821388
# @private
13831389
class Representation < Google::Apis::Core::JsonRepresentation
@@ -2927,6 +2933,8 @@ class Representation < Google::Apis::Core::JsonRepresentation
29272933
property :csv_output_file, as: 'csvOutputFile', class: Google::Apis::MigrationcenterV1alpha1::CsvOutputFile, decorator: Google::Apis::MigrationcenterV1alpha1::CsvOutputFile::Representation
29282934

29292935
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+
29302938
end
29312939
end
29322940

@@ -3451,6 +3459,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
34513459
class SignedUriDestination
34523460
# @private
34533461
class Representation < Google::Apis::Core::JsonRepresentation
3462+
property :file_format, as: 'fileFormat'
34543463
end
34553464
end
34563465

@@ -3758,6 +3767,14 @@ class Representation < Google::Apis::Core::JsonRepresentation
37583767
property :vcenter_version, as: 'vcenterVersion'
37593768
end
37603769
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
37613778
end
37623779
end
37633780
end

0 commit comments

Comments
 (0)