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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e4e656dacab679448fd13385f84989d0bbe1826ee20507a0263624435b4b8adb
4
- data.tar.gz: 9075ec764462e86f128fd33a7a78fd3adcbf01e956039b8868a9835d2cd07893
3
+ metadata.gz: a2510df154a337b7f58a36a71a7479be7820aa559da499bfa65bba0d1173d17f
4
+ data.tar.gz: 2928e7f57965e59b2b3bcf6bd74f79f12c24490a841e2ec4a3f582a9da69bf51
5
5
  SHA512:
6
- metadata.gz: af322cf511b3366849417808c8b12dc62623849872b199d43f2a31a6bd72d815e44367ac89760cf479b45f1398c8e59e45406d18df49c893559e0d373c5d75f2
7
- data.tar.gz: e3b6c29bc46d531fe10e555e27ea8b0fdb3aab7be86bf70b26c38f7f773816d40495d609da01862944a01efae4183bcd8dc286c8bc26eb3752f56593e6b52847
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
@@ -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
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module StorageBatchOperations
23
23
  module V1
24
- VERSION = "0.1.0"
24
+ VERSION = "0.1.2"
25
25
  end
26
26
  end
27
27
  end
@@ -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 and location, that is either set by the customer or
28
+ # within the project, that is either set by the customer or
29
29
  # defined by the service. Format:
30
- # projects/\\{project}/locations/\\{location}/jobs/\\{job_id} .
31
- # For example: "projects/123456/locations/us-central1/jobs/job01".
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.0
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: 2025-04-18 00:00:00.000000000 Z
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.5
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: []