google-cloud-storage_batch_operations-v1 0.1.0 → 0.1.2
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/storage_batch_operations/v1/storage_batch_operations/client.rb +2 -2
- data/lib/google/cloud/storage_batch_operations/v1/storage_batch_operations/operations.rb +2 -2
- data/lib/google/cloud/storage_batch_operations/v1/storage_batch_operations/rest/client.rb +1 -1
- data/lib/google/cloud/storage_batch_operations/v1/storage_batch_operations/rest/operations.rb +1 -1
- data/lib/google/cloud/storage_batch_operations/v1/version.rb +1 -1
- data/proto_docs/google/cloud/storagebatchoperations/v1/storage_batch_operations_types.rb +3 -3
- 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: a2510df154a337b7f58a36a71a7479be7820aa559da499bfa65bba0d1173d17f
|
4
|
+
data.tar.gz: 2928e7f57965e59b2b3bcf6bd74f79f12c24490a841e2ec4a3f582a9da69bf51
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c382ac44b538af86500a4ea3d34a194ce5abe62b38533203a1846c380850c082906ba35907a6aa6065b9c22af094a076f7d468f3a4ae602675ce887396da6968
|
7
|
+
data.tar.gz: 6546eccce7d0f53d540f5c183d6dd8c848b5a8c030c57128eef666611669af9c3fdac4e3a62a58a3bfb8d21e073eef5336c93d1db2de85469e0d311a33a6f877
|
@@ -816,8 +816,8 @@ module Google
|
|
816
816
|
|
817
817
|
config_attr :endpoint, nil, ::String, nil
|
818
818
|
config_attr :credentials, nil do |value|
|
819
|
-
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
820
|
-
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
|
819
|
+
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
|
820
|
+
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
|
821
821
|
allowed.any? { |klass| klass === value }
|
822
822
|
end
|
823
823
|
config_attr :scope, nil, ::String, ::Array, nil
|
@@ -701,8 +701,8 @@ module Google
|
|
701
701
|
|
702
702
|
config_attr :endpoint, nil, ::String, nil
|
703
703
|
config_attr :credentials, nil do |value|
|
704
|
-
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
705
|
-
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
|
704
|
+
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
|
705
|
+
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
|
706
706
|
allowed.any? { |klass| klass === value }
|
707
707
|
end
|
708
708
|
config_attr :scope, nil, ::String, ::Array, nil
|
@@ -766,7 +766,7 @@ module Google
|
|
766
766
|
|
767
767
|
config_attr :endpoint, nil, ::String, nil
|
768
768
|
config_attr :credentials, nil do |value|
|
769
|
-
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
769
|
+
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
|
770
770
|
allowed.any? { |klass| klass === value }
|
771
771
|
end
|
772
772
|
config_attr :scope, nil, ::String, ::Array, nil
|
data/lib/google/cloud/storage_batch_operations/v1/storage_batch_operations/rest/operations.rb
CHANGED
@@ -556,7 +556,7 @@ module Google
|
|
556
556
|
|
557
557
|
config_attr :endpoint, nil, ::String, nil
|
558
558
|
config_attr :credentials, nil do |value|
|
559
|
-
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
559
|
+
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
|
560
560
|
allowed.any? { |klass| klass === value }
|
561
561
|
end
|
562
562
|
config_attr :scope, nil, ::String, ::Array, nil
|
@@ -25,10 +25,10 @@ module Google
|
|
25
25
|
# @!attribute [rw] name
|
26
26
|
# @return [::String]
|
27
27
|
# Identifier. The resource name of the Job. job_id is unique
|
28
|
-
# within the project
|
28
|
+
# within the project, that is either set by the customer or
|
29
29
|
# defined by the service. Format:
|
30
|
-
# projects/\\{project}/locations
|
31
|
-
# For example: "projects/123456/locations/
|
30
|
+
# projects/\\{project}/locations/global/jobs/\\{job_id} .
|
31
|
+
# For example: "projects/123456/locations/global/jobs/job01".
|
32
32
|
# @!attribute [rw] description
|
33
33
|
# @return [::String]
|
34
34
|
# Optional. A description provided by the user for the job. Its max length is
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-storage_batch_operations-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: gapic-common
|
@@ -126,7 +126,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
126
126
|
- !ruby/object:Gem::Version
|
127
127
|
version: '0'
|
128
128
|
requirements: []
|
129
|
-
rubygems_version: 3.6.
|
129
|
+
rubygems_version: 3.6.8
|
130
130
|
specification_version: 4
|
131
131
|
summary: API Client library for the Storage Batch Operations V1 API
|
132
132
|
test_files: []
|