google-cloud-os_login-v1beta 0.1.0 → 0.2.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 91b00abdbc58663ae595e9d936640e315caabd9196a6ab943abc090babe55271
|
4
|
+
data.tar.gz: 147114cc9d618a38f7482bd8680c3e256a5626e9689ed4cc5825c568e19a25c8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 658d0261c0cb9fff62ce3976add59634a4b013b2e30f46dca60f709ae2e84dab242f2ed6e2820f32206bd00fd979092431584bf9b124b7367ddbf5b7567b0e4a
|
7
|
+
data.tar.gz: 39eb8377563ba2b1553ac87c0c10417631a90ec6b90de2dcf22040d00e3c0957be36a09185e8a34253fbcce4f1aebd76a1ebfcff0814cd9e5e6e117e4f245fc5
|
@@ -181,7 +181,8 @@ module Google
|
|
181
181
|
if credentials.is_a?(String) || credentials.is_a?(Hash)
|
182
182
|
credentials = Credentials.new credentials, scope: @config.scope
|
183
183
|
end
|
184
|
-
@quota_project_id =
|
184
|
+
@quota_project_id = @config.quota_project
|
185
|
+
@quota_project_id ||= credentials.quota_project_id if credentials.respond_to? :quota_project_id
|
185
186
|
|
186
187
|
@os_login_service_stub = ::Gapic::ServiceStub.new(
|
187
188
|
::Google::Cloud::OsLogin::V1beta::OsLoginService::Stub,
|
@@ -690,24 +691,28 @@ module Google
|
|
690
691
|
# * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
|
691
692
|
# trigger a retry.
|
692
693
|
# @return [::Hash]
|
694
|
+
# @!attribute [rw] quota_project
|
695
|
+
# A separate project against which to charge quota.
|
696
|
+
# @return [::String]
|
693
697
|
#
|
694
698
|
class Configuration
|
695
699
|
extend ::Gapic::Config
|
696
700
|
|
697
|
-
config_attr :endpoint,
|
698
|
-
config_attr :credentials,
|
701
|
+
config_attr :endpoint, "oslogin.googleapis.com", ::String
|
702
|
+
config_attr :credentials, nil do |value|
|
699
703
|
allowed = [::String, ::Hash, ::Proc, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
700
704
|
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
|
701
705
|
allowed.any? { |klass| klass === value }
|
702
706
|
end
|
703
|
-
config_attr :scope,
|
704
|
-
config_attr :lib_name,
|
705
|
-
config_attr :lib_version,
|
706
|
-
config_attr(:channel_args,
|
707
|
-
config_attr :interceptors,
|
708
|
-
config_attr :timeout,
|
709
|
-
config_attr :metadata,
|
710
|
-
config_attr :retry_policy,
|
707
|
+
config_attr :scope, nil, ::String, ::Array, nil
|
708
|
+
config_attr :lib_name, nil, ::String, nil
|
709
|
+
config_attr :lib_version, nil, ::String, nil
|
710
|
+
config_attr(:channel_args, { "grpc.service_config_disable_resolution"=>1 }, ::Hash, nil)
|
711
|
+
config_attr :interceptors, nil, ::Array, nil
|
712
|
+
config_attr :timeout, nil, ::Numeric, nil
|
713
|
+
config_attr :metadata, nil, ::Hash, nil
|
714
|
+
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
715
|
+
config_attr :quota_project, nil, ::String, nil
|
711
716
|
|
712
717
|
# @private
|
713
718
|
def initialize parent_config = nil
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-os_login-v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-05-
|
11
|
+
date: 2020-05-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -58,14 +58,42 @@ dependencies:
|
|
58
58
|
requirements:
|
59
59
|
- - "~>"
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: '5.
|
61
|
+
version: '5.14'
|
62
62
|
type: :development
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: '5.
|
68
|
+
version: '5.14'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: minitest-focus
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '1.1'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '1.1'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: minitest-rg
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '5.2'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '5.2'
|
69
97
|
- !ruby/object:Gem::Dependency
|
70
98
|
name: rake
|
71
99
|
requirement: !ruby/object:Gem::Requirement
|