google-cloud-rapid_migration_assessment-v1 1.2.0 → 2.0.1
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/lib/google/cloud/rapid_migration_assessment/v1/rapid_migration_assessment/client.rb +1 -1
- data/lib/google/cloud/rapid_migration_assessment/v1/rapid_migration_assessment/rest/client.rb +5 -3
- data/lib/google/cloud/rapid_migration_assessment/v1/version.rb +1 -1
- data/lib/google/cloud/rapidmigrationassessment/v1/rapidmigrationassessment_services_pb.rb +1 -1
- data/proto_docs/google/api/client.rb +14 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: db360515acaa317153b3811a9961f7bbb149931b006909d354d054dd412c3fae
|
4
|
+
data.tar.gz: 9bad9697f2a4ac905456bbd3490ebe5a747df6a16e41aff8c64f3d33b6ad3ca0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fcfe7b0928bb769bb651962e8f3912ae038899401e05d9ced528a957a5616ae30667387ef2803e8f4345912701211fb90dfa1317695fbb33e876a0edd5a29490
|
7
|
+
data.tar.gz: 684277203d6554cc796f62207cfe24e3162454aec3b47dc7ecbef73c60fed21957a3e6b1fee47b36ba3e230986741d12338601af4da0d52dd35b1493222ed1e3
|
@@ -827,7 +827,7 @@ module Google
|
|
827
827
|
|
828
828
|
##
|
829
829
|
# Deletes a single Collector - changes state of collector to "Deleting".
|
830
|
-
# Background jobs does final deletion
|
830
|
+
# Background jobs does final deletion through producer API.
|
831
831
|
#
|
832
832
|
# @overload delete_collector(request, options = nil)
|
833
833
|
# Pass arguments to `delete_collector` via a request object, either of type
|
data/lib/google/cloud/rapid_migration_assessment/v1/rapid_migration_assessment/rest/client.rb
CHANGED
@@ -529,10 +529,10 @@ module Google
|
|
529
529
|
# @param order_by [::String]
|
530
530
|
# Hint for how to order the results.
|
531
531
|
# @yield [result, operation] Access the result along with the TransportOperation object
|
532
|
-
# @yieldparam result [::Google::Cloud::RapidMigrationAssessment::V1::
|
532
|
+
# @yieldparam result [::Gapic::Rest::PagedEnumerable<::Google::Cloud::RapidMigrationAssessment::V1::Collector>]
|
533
533
|
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
534
534
|
#
|
535
|
-
# @return [::Google::Cloud::RapidMigrationAssessment::V1::
|
535
|
+
# @return [::Gapic::Rest::PagedEnumerable<::Google::Cloud::RapidMigrationAssessment::V1::Collector>]
|
536
536
|
#
|
537
537
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
538
538
|
#
|
@@ -584,7 +584,9 @@ module Google
|
|
584
584
|
retry_policy: @config.retry_policy
|
585
585
|
|
586
586
|
@rapid_migration_assessment_stub.list_collectors request, options do |result, operation|
|
587
|
+
result = ::Gapic::Rest::PagedEnumerable.new @rapid_migration_assessment_stub, :list_collectors, "collectors", request, result, options
|
587
588
|
yield result, operation if block_given?
|
589
|
+
throw :response, result
|
588
590
|
end
|
589
591
|
rescue ::Gapic::Rest::Error => e
|
590
592
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -777,7 +779,7 @@ module Google
|
|
777
779
|
|
778
780
|
##
|
779
781
|
# Deletes a single Collector - changes state of collector to "Deleting".
|
780
|
-
# Background jobs does final deletion
|
782
|
+
# Background jobs does final deletion through producer API.
|
781
783
|
#
|
782
784
|
# @overload delete_collector(request, options = nil)
|
783
785
|
# Pass arguments to `delete_collector` via a request object, either of type
|
@@ -47,7 +47,7 @@ module Google
|
|
47
47
|
# Updates the parameters of a single Collector.
|
48
48
|
rpc :UpdateCollector, ::Google::Cloud::RapidMigrationAssessment::V1::UpdateCollectorRequest, ::Google::Longrunning::Operation
|
49
49
|
# Deletes a single Collector - changes state of collector to "Deleting".
|
50
|
-
# Background jobs does final deletion
|
50
|
+
# Background jobs does final deletion through producer API.
|
51
51
|
rpc :DeleteCollector, ::Google::Cloud::RapidMigrationAssessment::V1::DeleteCollectorRequest, ::Google::Longrunning::Operation
|
52
52
|
# Resumes the given collector.
|
53
53
|
rpc :ResumeCollector, ::Google::Cloud::RapidMigrationAssessment::V1::ResumeCollectorRequest, ::Google::Longrunning::Operation
|
@@ -221,6 +221,12 @@ module Google
|
|
221
221
|
# Pythonic which are included in `protobuf>=5.29.x`. This feature will be
|
222
222
|
# enabled by default 1 month after launching the feature in preview
|
223
223
|
# packages.
|
224
|
+
# @!attribute [rw] unversioned_package_disabled
|
225
|
+
# @return [::Boolean]
|
226
|
+
# Disables generation of an unversioned Python package for this client
|
227
|
+
# library. This means that the module names will need to be versioned in
|
228
|
+
# import statements. For example `import google.cloud.library_v2` instead
|
229
|
+
# of `import google.cloud.library`.
|
224
230
|
class ExperimentalFeatures
|
225
231
|
include ::Google::Protobuf::MessageExts
|
226
232
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -409,6 +415,14 @@ module Google
|
|
409
415
|
# @return [::Array<::String>]
|
410
416
|
# An allowlist of the fully qualified names of RPCs that should be included
|
411
417
|
# on public client surfaces.
|
418
|
+
# @!attribute [rw] generate_omitted_as_internal
|
419
|
+
# @return [::Boolean]
|
420
|
+
# Setting this to true indicates to the client generators that methods
|
421
|
+
# that would be excluded from the generation should instead be generated
|
422
|
+
# in a way that indicates these methods should not be consumed by
|
423
|
+
# end users. How this is expressed is up to individual language
|
424
|
+
# implementations to decide. Some examples may be: added annotations,
|
425
|
+
# obfuscated identifiers, or other language idiomatic patterns.
|
412
426
|
class SelectiveGapicGeneration
|
413
427
|
include ::Google::Protobuf::MessageExts
|
414
428
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-rapid_migration_assessment-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-03-28 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: gapic-common
|
@@ -125,7 +125,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
125
125
|
- !ruby/object:Gem::Version
|
126
126
|
version: '0'
|
127
127
|
requirements: []
|
128
|
-
rubygems_version: 3.6.
|
128
|
+
rubygems_version: 3.6.5
|
129
129
|
specification_version: 4
|
130
130
|
summary: The Rapid Migration Assessment service is our first-party migration assessment
|
131
131
|
and planning tool.
|