google-cloud-kms 2.6.0 → 2.8.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8aecb6cb0c49f2912b308d0c7b4b30e27ffed6a998fb5b941a5d8bad48d68e04
4
- data.tar.gz: 0f8562e5adcaf1c512876d17388f8077b9be4c438bfb3e3370eab8da0b7b1a40
3
+ metadata.gz: c52a7423e6c993949cb86447c598e0bb219319e1ac3ea6d43978e2534b5d29fb
4
+ data.tar.gz: 888e15d2f262253165b0222d24a4d0f11e1644b6c92bcc71f187947bb42a3268
5
5
  SHA512:
6
- metadata.gz: 4e42d119672653a500c25687bd63e38f1ab7604587fb7a68826e082851dff7a8cdb8a7c21656645001bad042168fa671baabe64de17938f37353eae2b8e21088
7
- data.tar.gz: aebc75be42d52f6ce488cd9471590f566f1243edb995eae43ce455fc9939d7f7980f0a7acd0022144152f4ec7213370b996ef2906b64d1c889336191a271d47c
6
+ metadata.gz: 83cb9d75a5b418f7a5980a0bdd4411834da481029e9ef5b8c0b62d4c17140ed5a51b9ab3b885245fbf0d1a9d4c5822b66d1fa70721dc872c413c6c8d28a041ef
7
+ data.tar.gz: 991e642568e425b480767236a5b03768281bfbdbb36382307192f20894a09c4a0688161d43c1f71898e55c73bec4985f27ba0b2991823173e13c6e694f00a6b2
data/AUTHENTICATION.md CHANGED
@@ -56,7 +56,7 @@ To configure a credentials file for an individual client initialization:
56
56
  ```ruby
57
57
  require "google/cloud/kms"
58
58
 
59
- client = Google::Cloud::Kms.ekm_service do |config|
59
+ client = Google::Cloud::Kms.autokey do |config|
60
60
  config.credentials = "path/to/credentialfile.json"
61
61
  end
62
62
  ```
@@ -70,7 +70,7 @@ Google::Cloud::Kms.configure do |config|
70
70
  config.credentials = "path/to/credentialfile.json"
71
71
  end
72
72
 
73
- client = Google::Cloud::Kms.ekm_service
73
+ client = Google::Cloud::Kms.autokey
74
74
  ```
75
75
 
76
76
  ### Environment Variables
@@ -100,7 +100,7 @@ require "google/cloud/kms"
100
100
 
101
101
  ENV["GOOGLE_APPLICATION_CREDENTIALS"] = "path/to/credentialfile.json"
102
102
 
103
- client = Google::Cloud::Kms.ekm_service
103
+ client = Google::Cloud::Kms.autokey
104
104
  ```
105
105
 
106
106
  ### Local ADC file
data/README.md CHANGED
@@ -44,7 +44,7 @@ See the {file:MIGRATING.md MIGRATING.md} document for more information.
44
44
 
45
45
  ## Supported Ruby Versions
46
46
 
47
- This library is supported on Ruby 2.6+.
47
+ This library is supported on Ruby 2.7+.
48
48
 
49
49
  Google provides official support for Ruby versions that are actively supported
50
50
  by Ruby Core—that is, Ruby versions that are either in normal maintenance or
@@ -20,7 +20,7 @@
20
20
  module Google
21
21
  module Cloud
22
22
  module Kms
23
- VERSION = "2.6.0"
23
+ VERSION = "2.8.0"
24
24
  end
25
25
  end
26
26
  end
@@ -45,6 +45,96 @@ end
45
45
  module Google
46
46
  module Cloud
47
47
  module Kms
48
+ ##
49
+ # Create a new client object for Autokey.
50
+ #
51
+ # By default, this returns an instance of
52
+ # [Google::Cloud::Kms::V1::Autokey::Client](https://cloud.google.com/ruby/docs/reference/google-cloud-kms-v1/latest/Google-Cloud-Kms-V1-Autokey-Client)
53
+ # for a gRPC client for version V1 of the API.
54
+ # However, you can specify a different API version by passing it in the
55
+ # `version` parameter. If the Autokey service is
56
+ # supported by that API version, and the corresponding gem is available, the
57
+ # appropriate versioned client will be returned.
58
+ # You can also specify a different transport by passing `:rest` or `:grpc` in
59
+ # the `transport` parameter.
60
+ #
61
+ # ## About Autokey
62
+ #
63
+ # Provides interfaces for using Cloud KMS Autokey to provision new
64
+ # CryptoKeys, ready for Customer Managed
65
+ # Encryption Key (CMEK) use, on-demand. To support certain client tooling, this
66
+ # feature is modeled around a KeyHandle
67
+ # resource: creating a KeyHandle in a resource
68
+ # project and given location triggers Cloud KMS Autokey to provision a
69
+ # CryptoKey in the configured key project and
70
+ # the same location.
71
+ #
72
+ # Prior to use in a given resource project,
73
+ # UpdateAutokeyConfig
74
+ # should have been called on an ancestor folder, setting the key project where
75
+ # Cloud KMS Autokey should create new
76
+ # CryptoKeys. See documentation for additional
77
+ # prerequisites. To check what key project, if any, is currently configured on
78
+ # a resource project's ancestor folder, see
79
+ # ShowEffectiveAutokeyConfig.
80
+ #
81
+ # @param version [::String, ::Symbol] The API version to connect to. Optional.
82
+ # Defaults to `:v1`.
83
+ # @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
84
+ # @return [::Object] A client object for the specified version.
85
+ #
86
+ def self.autokey version: :v1, transport: :grpc, &block
87
+ require "google/cloud/kms/#{version.to_s.downcase}"
88
+
89
+ package_name = Google::Cloud::Kms
90
+ .constants
91
+ .select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
92
+ .first
93
+ service_module = Google::Cloud::Kms.const_get(package_name).const_get(:Autokey)
94
+ service_module = service_module.const_get(:Rest) if transport == :rest
95
+ service_module.const_get(:Client).new(&block)
96
+ end
97
+
98
+ ##
99
+ # Create a new client object for AutokeyAdmin.
100
+ #
101
+ # By default, this returns an instance of
102
+ # [Google::Cloud::Kms::V1::AutokeyAdmin::Client](https://cloud.google.com/ruby/docs/reference/google-cloud-kms-v1/latest/Google-Cloud-Kms-V1-AutokeyAdmin-Client)
103
+ # for a gRPC client for version V1 of the API.
104
+ # However, you can specify a different API version by passing it in the
105
+ # `version` parameter. If the AutokeyAdmin service is
106
+ # supported by that API version, and the corresponding gem is available, the
107
+ # appropriate versioned client will be returned.
108
+ # You can also specify a different transport by passing `:rest` or `:grpc` in
109
+ # the `transport` parameter.
110
+ #
111
+ # ## About AutokeyAdmin
112
+ #
113
+ # Provides interfaces for managing Cloud KMS Autokey folder-level
114
+ # configurations. A configuration is inherited by all descendent projects. A
115
+ # configuration at one folder overrides any other configurations in its
116
+ # ancestry. Setting a configuration on a folder is a prerequisite for Cloud KMS
117
+ # Autokey, so that users working in a descendant project can request
118
+ # provisioned CryptoKeys, ready for Customer
119
+ # Managed Encryption Key (CMEK) use, on-demand.
120
+ #
121
+ # @param version [::String, ::Symbol] The API version to connect to. Optional.
122
+ # Defaults to `:v1`.
123
+ # @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
124
+ # @return [::Object] A client object for the specified version.
125
+ #
126
+ def self.autokey_admin version: :v1, transport: :grpc, &block
127
+ require "google/cloud/kms/#{version.to_s.downcase}"
128
+
129
+ package_name = Google::Cloud::Kms
130
+ .constants
131
+ .select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
132
+ .first
133
+ service_module = Google::Cloud::Kms.const_get(package_name).const_get(:AutokeyAdmin)
134
+ service_module = service_module.const_get(:Rest) if transport == :rest
135
+ service_module.const_get(:Client).new(&block)
136
+ end
137
+
48
138
  ##
49
139
  # Create a new client object for EkmService.
50
140
  #
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-kms
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.6.0
4
+ version: 2.8.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: 2024-01-15 00:00:00.000000000 Z
11
+ date: 2024-05-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-cloud-core
@@ -30,7 +30,7 @@ dependencies:
30
30
  requirements:
31
31
  - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: '0.24'
33
+ version: '0.26'
34
34
  - - "<"
35
35
  - !ruby/object:Gem::Version
36
36
  version: 2.a
@@ -40,122 +40,10 @@ dependencies:
40
40
  requirements:
41
41
  - - ">="
42
42
  - !ruby/object:Gem::Version
43
- version: '0.24'
43
+ version: '0.26'
44
44
  - - "<"
45
45
  - !ruby/object:Gem::Version
46
46
  version: 2.a
47
- - !ruby/object:Gem::Dependency
48
- name: google-style
49
- requirement: !ruby/object:Gem::Requirement
50
- requirements:
51
- - - "~>"
52
- - !ruby/object:Gem::Version
53
- version: 1.26.1
54
- type: :development
55
- prerelease: false
56
- version_requirements: !ruby/object:Gem::Requirement
57
- requirements:
58
- - - "~>"
59
- - !ruby/object:Gem::Version
60
- version: 1.26.1
61
- - !ruby/object:Gem::Dependency
62
- name: minitest
63
- requirement: !ruby/object:Gem::Requirement
64
- requirements:
65
- - - "~>"
66
- - !ruby/object:Gem::Version
67
- version: '5.16'
68
- type: :development
69
- prerelease: false
70
- version_requirements: !ruby/object:Gem::Requirement
71
- requirements:
72
- - - "~>"
73
- - !ruby/object:Gem::Version
74
- version: '5.16'
75
- - !ruby/object:Gem::Dependency
76
- name: minitest-focus
77
- requirement: !ruby/object:Gem::Requirement
78
- requirements:
79
- - - "~>"
80
- - !ruby/object:Gem::Version
81
- version: '1.1'
82
- type: :development
83
- prerelease: false
84
- version_requirements: !ruby/object:Gem::Requirement
85
- requirements:
86
- - - "~>"
87
- - !ruby/object:Gem::Version
88
- version: '1.1'
89
- - !ruby/object:Gem::Dependency
90
- name: minitest-rg
91
- requirement: !ruby/object:Gem::Requirement
92
- requirements:
93
- - - "~>"
94
- - !ruby/object:Gem::Version
95
- version: '5.2'
96
- type: :development
97
- prerelease: false
98
- version_requirements: !ruby/object:Gem::Requirement
99
- requirements:
100
- - - "~>"
101
- - !ruby/object:Gem::Version
102
- version: '5.2'
103
- - !ruby/object:Gem::Dependency
104
- name: rake
105
- requirement: !ruby/object:Gem::Requirement
106
- requirements:
107
- - - ">="
108
- - !ruby/object:Gem::Version
109
- version: '13.0'
110
- type: :development
111
- prerelease: false
112
- version_requirements: !ruby/object:Gem::Requirement
113
- requirements:
114
- - - ">="
115
- - !ruby/object:Gem::Version
116
- version: '13.0'
117
- - !ruby/object:Gem::Dependency
118
- name: redcarpet
119
- requirement: !ruby/object:Gem::Requirement
120
- requirements:
121
- - - "~>"
122
- - !ruby/object:Gem::Version
123
- version: '3.0'
124
- type: :development
125
- prerelease: false
126
- version_requirements: !ruby/object:Gem::Requirement
127
- requirements:
128
- - - "~>"
129
- - !ruby/object:Gem::Version
130
- version: '3.0'
131
- - !ruby/object:Gem::Dependency
132
- name: simplecov
133
- requirement: !ruby/object:Gem::Requirement
134
- requirements:
135
- - - "~>"
136
- - !ruby/object:Gem::Version
137
- version: '0.9'
138
- type: :development
139
- prerelease: false
140
- version_requirements: !ruby/object:Gem::Requirement
141
- requirements:
142
- - - "~>"
143
- - !ruby/object:Gem::Version
144
- version: '0.9'
145
- - !ruby/object:Gem::Dependency
146
- name: yard
147
- requirement: !ruby/object:Gem::Requirement
148
- requirements:
149
- - - "~>"
150
- - !ruby/object:Gem::Version
151
- version: '0.9'
152
- type: :development
153
- prerelease: false
154
- version_requirements: !ruby/object:Gem::Requirement
155
- requirements:
156
- - - "~>"
157
- - !ruby/object:Gem::Version
158
- version: '0.9'
159
47
  description: Manages keys and performs cryptographic operations in a central cloud
160
48
  service, for direct use by other cloud resources and applications.
161
49
  email: googleapis-packages@google.com
@@ -184,14 +72,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
184
72
  requirements:
185
73
  - - ">="
186
74
  - !ruby/object:Gem::Version
187
- version: '2.6'
75
+ version: '2.7'
188
76
  required_rubygems_version: !ruby/object:Gem::Requirement
189
77
  requirements:
190
78
  - - ">="
191
79
  - !ruby/object:Gem::Version
192
80
  version: '0'
193
81
  requirements: []
194
- rubygems_version: 3.5.3
82
+ rubygems_version: 3.5.6
195
83
  signing_key:
196
84
  specification_version: 4
197
85
  summary: API Client library for the Cloud Key Management Service (KMS) API