google-apis-kmsinventory_v1 0.1.0 → 0.3.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2d383e569e472d64dd80bf76a10de5600b6776300fb4fce290f46c317f345131
|
4
|
+
data.tar.gz: 4d9edca3a8b9aa6a997cb0c6f3966778f0f14c58921607b6bdf4288004c083fb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e2d4c1c72ad4c11fb8bdad3f8daba51ddd1e2867f512e632fdab64ef5b05057bb99e8b729c4139e888d7eab343a178f0aaa19abe733c2036e10e56c62989fa82
|
7
|
+
data.tar.gz: c8c85f5068386994147ea2a538dd00c31cdd2f4fe62103182672f137f3fe964fa6ae1674091d23a051ecb3ba916521848a5dfbe22c626ed4b5cd3fe2de9ad0b3
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-kmsinventory_v1
|
2
2
|
|
3
|
+
### v0.3.0 (2023-02-15)
|
4
|
+
|
5
|
+
* Regenerated using generator version 0.12.0
|
6
|
+
|
7
|
+
### v0.2.0 (2023-01-29)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230122
|
10
|
+
|
3
11
|
### v0.1.0 (2023-01-22)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230115
|
@@ -64,13 +64,24 @@ module Google
|
|
64
64
|
|
65
65
|
# The name of the Cloud KMS [CryptoKeyVersion](https://cloud.google.com/kms/docs/
|
66
66
|
# reference/rest/v1/projects.locations.keyRings.cryptoKeys.cryptoKeyVersions?hl=
|
67
|
-
# en) used to protect this resource via CMEK. This field
|
67
|
+
# en) used to protect this resource via CMEK. This field is empty if the Google
|
68
68
|
# Cloud product owning the resource does not provide key version data to Asset
|
69
|
-
# Inventory.
|
69
|
+
# Inventory. If there are multiple key versions protecting the resource, then
|
70
|
+
# this is same value as the first element of crypto_key_versions.
|
70
71
|
# Corresponds to the JSON property `cryptoKeyVersion`
|
71
72
|
# @return [String]
|
72
73
|
attr_accessor :crypto_key_version
|
73
74
|
|
75
|
+
# The names of the Cloud KMS [CryptoKeyVersion](https://cloud.google.com/kms/
|
76
|
+
# docs/reference/rest/v1/projects.locations.keyRings.cryptoKeys.
|
77
|
+
# cryptoKeyVersions?hl=en) used to protect this resource via CMEK. This field is
|
78
|
+
# empty if the Google Cloud product owning the resource does not provide key
|
79
|
+
# versions data to Asset Inventory. The first element of this field is stored in
|
80
|
+
# crypto_key_version.
|
81
|
+
# Corresponds to the JSON property `cryptoKeyVersions`
|
82
|
+
# @return [Array<String>]
|
83
|
+
attr_accessor :crypto_key_versions
|
84
|
+
|
74
85
|
# A key-value pair of the resource's labels (v1) to their values.
|
75
86
|
# Corresponds to the JSON property `labels`
|
76
87
|
# @return [Hash<String,String>]
|
@@ -111,6 +122,7 @@ module Google
|
|
111
122
|
@cloud_product = args[:cloud_product] if args.key?(:cloud_product)
|
112
123
|
@create_time = args[:create_time] if args.key?(:create_time)
|
113
124
|
@crypto_key_version = args[:crypto_key_version] if args.key?(:crypto_key_version)
|
125
|
+
@crypto_key_versions = args[:crypto_key_versions] if args.key?(:crypto_key_versions)
|
114
126
|
@labels = args[:labels] if args.key?(:labels)
|
115
127
|
@location = args[:location] if args.key?(:location)
|
116
128
|
@name = args[:name] if args.key?(:name)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module KmsinventoryV1
|
18
18
|
# Version of the google-apis-kmsinventory_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.3.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230122"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -97,6 +97,7 @@ module Google
|
|
97
97
|
property :cloud_product, as: 'cloudProduct'
|
98
98
|
property :create_time, as: 'createTime'
|
99
99
|
property :crypto_key_version, as: 'cryptoKeyVersion'
|
100
|
+
collection :crypto_key_versions, as: 'cryptoKeyVersions'
|
100
101
|
hash :labels, as: 'labels'
|
101
102
|
property :location, as: 'location'
|
102
103
|
property :name, as: 'name'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-kmsinventory_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.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: 2023-
|
11
|
+
date: 2023-02-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.11.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.11.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-kmsinventory_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-kmsinventory_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-kmsinventory_v1/v0.3.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-kmsinventory_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|