google-apis-migrationcenter_v1 0.27.0 → 0.29.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/migrationcenter_v1/classes.rb +50 -0
- data/lib/google/apis/migrationcenter_v1/gem_version.rb +2 -2
- data/lib/google/apis/migrationcenter_v1/representations.rb +28 -0
- data/lib/google/apis/migrationcenter_v1/service.rb +33 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 501c0d26bd9845680d8ee9a15bbb8c4047e75fec77a28a84cd874f62586dbac7
|
|
4
|
+
data.tar.gz: 10e7dfab370f9491ddb80375a8df5437698ba5e24079e85058306ce0f5660b0e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aeaefa9d7ebeffacbfca81faec46d0d323fe2247d277b4dda6772d06269467f5defbd3ef9031302191ba8340b7b042a861298f23934458432d6489aeef987842
|
|
7
|
+
data.tar.gz: 0f542b0d300afddb097e9d5779f8ddfd080f2e4818d2caa8d19bf34def469579067f7f4bce17883aa2fb8692c3ce42a5cd799ca90ad9452cace9efd0dfb00674
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-migrationcenter_v1
|
|
2
2
|
|
|
3
|
+
### v0.29.0 (2025-11-23)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251111
|
|
6
|
+
|
|
7
|
+
### v0.28.0 (2025-11-16)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251106
|
|
10
|
+
|
|
3
11
|
### v0.27.0 (2025-10-26)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251023
|
|
@@ -2175,6 +2175,25 @@ module Google
|
|
|
2175
2175
|
end
|
|
2176
2176
|
end
|
|
2177
2177
|
|
|
2178
|
+
# A request to generate a link to an artifact for a Report.
|
|
2179
|
+
class GenerateReportArtifactLinkRequest
|
|
2180
|
+
include Google::Apis::Core::Hashable
|
|
2181
|
+
|
|
2182
|
+
# Required. Type of the artifact requested.
|
|
2183
|
+
# Corresponds to the JSON property `artifactType`
|
|
2184
|
+
# @return [String]
|
|
2185
|
+
attr_accessor :artifact_type
|
|
2186
|
+
|
|
2187
|
+
def initialize(**args)
|
|
2188
|
+
update!(**args)
|
|
2189
|
+
end
|
|
2190
|
+
|
|
2191
|
+
# Update properties of this object
|
|
2192
|
+
def update!(**args)
|
|
2193
|
+
@artifact_type = args[:artifact_type] if args.key?(:artifact_type)
|
|
2194
|
+
end
|
|
2195
|
+
end
|
|
2196
|
+
|
|
2178
2197
|
# A generic insight about an asset.
|
|
2179
2198
|
class GenericInsight
|
|
2180
2199
|
include Google::Apis::Core::Hashable
|
|
@@ -3510,6 +3529,11 @@ module Google
|
|
|
3510
3529
|
# @return [Google::Apis::MigrationcenterV1::NetworkAdapterList]
|
|
3511
3530
|
attr_accessor :adapters
|
|
3512
3531
|
|
|
3532
|
+
# Optional. Default gateway address.
|
|
3533
|
+
# Corresponds to the JSON property `defaultGateway`
|
|
3534
|
+
# @return [String]
|
|
3535
|
+
attr_accessor :default_gateway
|
|
3536
|
+
|
|
3513
3537
|
# The primary IP address of the machine.
|
|
3514
3538
|
# Corresponds to the JSON property `primaryIpAddress`
|
|
3515
3539
|
# @return [String]
|
|
@@ -3533,6 +3557,7 @@ module Google
|
|
|
3533
3557
|
# Update properties of this object
|
|
3534
3558
|
def update!(**args)
|
|
3535
3559
|
@adapters = args[:adapters] if args.key?(:adapters)
|
|
3560
|
+
@default_gateway = args[:default_gateway] if args.key?(:default_gateway)
|
|
3536
3561
|
@primary_ip_address = args[:primary_ip_address] if args.key?(:primary_ip_address)
|
|
3537
3562
|
@primary_mac_address = args[:primary_mac_address] if args.key?(:primary_mac_address)
|
|
3538
3563
|
@public_ip_address = args[:public_ip_address] if args.key?(:public_ip_address)
|
|
@@ -4786,6 +4811,31 @@ module Google
|
|
|
4786
4811
|
end
|
|
4787
4812
|
end
|
|
4788
4813
|
|
|
4814
|
+
# Describes a link to a generated artifact of the report.
|
|
4815
|
+
class ReportArtifactLink
|
|
4816
|
+
include Google::Apis::Core::Hashable
|
|
4817
|
+
|
|
4818
|
+
# Output only. URI of the artifact.
|
|
4819
|
+
# Corresponds to the JSON property `uri`
|
|
4820
|
+
# @return [String]
|
|
4821
|
+
attr_accessor :uri
|
|
4822
|
+
|
|
4823
|
+
# Output only. Expiration time of the URI.
|
|
4824
|
+
# Corresponds to the JSON property `uriExpirationTime`
|
|
4825
|
+
# @return [String]
|
|
4826
|
+
attr_accessor :uri_expiration_time
|
|
4827
|
+
|
|
4828
|
+
def initialize(**args)
|
|
4829
|
+
update!(**args)
|
|
4830
|
+
end
|
|
4831
|
+
|
|
4832
|
+
# Update properties of this object
|
|
4833
|
+
def update!(**args)
|
|
4834
|
+
@uri = args[:uri] if args.key?(:uri)
|
|
4835
|
+
@uri_expiration_time = args[:uri_expiration_time] if args.key?(:uri_expiration_time)
|
|
4836
|
+
end
|
|
4837
|
+
end
|
|
4838
|
+
|
|
4789
4839
|
# A response to a call to `ReportAssetFrame`.
|
|
4790
4840
|
class ReportAssetFramesResponse
|
|
4791
4841
|
include Google::Apis::Core::Hashable
|
|
@@ -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.29.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251111"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -412,6 +412,12 @@ module Google
|
|
|
412
412
|
include Google::Apis::Core::JsonObjectSupport
|
|
413
413
|
end
|
|
414
414
|
|
|
415
|
+
class GenerateReportArtifactLinkRequest
|
|
416
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
417
|
+
|
|
418
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
419
|
+
end
|
|
420
|
+
|
|
415
421
|
class GenericInsight
|
|
416
422
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
417
423
|
|
|
@@ -856,6 +862,12 @@ module Google
|
|
|
856
862
|
include Google::Apis::Core::JsonObjectSupport
|
|
857
863
|
end
|
|
858
864
|
|
|
865
|
+
class ReportArtifactLink
|
|
866
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
867
|
+
|
|
868
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
869
|
+
end
|
|
870
|
+
|
|
859
871
|
class ReportAssetFramesResponse
|
|
860
872
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
861
873
|
|
|
@@ -1783,6 +1795,13 @@ module Google
|
|
|
1783
1795
|
end
|
|
1784
1796
|
end
|
|
1785
1797
|
|
|
1798
|
+
class GenerateReportArtifactLinkRequest
|
|
1799
|
+
# @private
|
|
1800
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1801
|
+
property :artifact_type, as: 'artifactType'
|
|
1802
|
+
end
|
|
1803
|
+
end
|
|
1804
|
+
|
|
1786
1805
|
class GenericInsight
|
|
1787
1806
|
# @private
|
|
1788
1807
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2188,6 +2207,7 @@ module Google
|
|
|
2188
2207
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2189
2208
|
property :adapters, as: 'adapters', class: Google::Apis::MigrationcenterV1::NetworkAdapterList, decorator: Google::Apis::MigrationcenterV1::NetworkAdapterList::Representation
|
|
2190
2209
|
|
|
2210
|
+
property :default_gateway, as: 'defaultGateway'
|
|
2191
2211
|
property :primary_ip_address, as: 'primaryIpAddress'
|
|
2192
2212
|
property :primary_mac_address, as: 'primaryMacAddress'
|
|
2193
2213
|
property :public_ip_address, as: 'publicIpAddress'
|
|
@@ -2562,6 +2582,14 @@ module Google
|
|
|
2562
2582
|
end
|
|
2563
2583
|
end
|
|
2564
2584
|
|
|
2585
|
+
class ReportArtifactLink
|
|
2586
|
+
# @private
|
|
2587
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2588
|
+
property :uri, as: 'uri'
|
|
2589
|
+
property :uri_expiration_time, as: 'uriExpirationTime'
|
|
2590
|
+
end
|
|
2591
|
+
end
|
|
2592
|
+
|
|
2565
2593
|
class ReportAssetFramesResponse
|
|
2566
2594
|
# @private
|
|
2567
2595
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2138,6 +2138,39 @@ module Google
|
|
|
2138
2138
|
execute_or_queue_command(command, &block)
|
|
2139
2139
|
end
|
|
2140
2140
|
|
|
2141
|
+
# Gets the link to the generated artifact of a given type for a Report.
|
|
2142
|
+
# @param [String] name
|
|
2143
|
+
# Required. Name of the resource.
|
|
2144
|
+
# @param [Google::Apis::MigrationcenterV1::GenerateReportArtifactLinkRequest] generate_report_artifact_link_request_object
|
|
2145
|
+
# @param [String] fields
|
|
2146
|
+
# Selector specifying which fields to include in a partial response.
|
|
2147
|
+
# @param [String] quota_user
|
|
2148
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
2149
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
2150
|
+
# @param [Google::Apis::RequestOptions] options
|
|
2151
|
+
# Request-specific options
|
|
2152
|
+
#
|
|
2153
|
+
# @yield [result, err] Result & error if block supplied
|
|
2154
|
+
# @yieldparam result [Google::Apis::MigrationcenterV1::ReportArtifactLink] parsed result object
|
|
2155
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
2156
|
+
#
|
|
2157
|
+
# @return [Google::Apis::MigrationcenterV1::ReportArtifactLink]
|
|
2158
|
+
#
|
|
2159
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
2160
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
2161
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
2162
|
+
def artifact_project_location_report_config_report_link(name, generate_report_artifact_link_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
2163
|
+
command = make_simple_command(:post, 'v1/{+name}:artifactLink', options)
|
|
2164
|
+
command.request_representation = Google::Apis::MigrationcenterV1::GenerateReportArtifactLinkRequest::Representation
|
|
2165
|
+
command.request_object = generate_report_artifact_link_request_object
|
|
2166
|
+
command.response_representation = Google::Apis::MigrationcenterV1::ReportArtifactLink::Representation
|
|
2167
|
+
command.response_class = Google::Apis::MigrationcenterV1::ReportArtifactLink
|
|
2168
|
+
command.params['name'] = name unless name.nil?
|
|
2169
|
+
command.query['fields'] = fields unless fields.nil?
|
|
2170
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
2171
|
+
execute_or_queue_command(command, &block)
|
|
2172
|
+
end
|
|
2173
|
+
|
|
2141
2174
|
# Creates a report.
|
|
2142
2175
|
# @param [String] parent
|
|
2143
2176
|
# Required. Value for parent.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.29.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-migrationcenter_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-migrationcenter_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-migrationcenter_v1/v0.29.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-migrationcenter_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|