google-apis-certificatemanager_v1 0.31.0 → 0.33.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/certificatemanager_v1/classes.rb +28 -0
- data/lib/google/apis/certificatemanager_v1/gem_version.rb +3 -3
- data/lib/google/apis/certificatemanager_v1/representations.rb +15 -0
- data/lib/google/apis/certificatemanager_v1/service.rb +5 -1
- metadata +5 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 36728ab9f82cf7787fb9610c2d34379925d4c9174ce88ab3c0afce36d3a5a946
|
4
|
+
data.tar.gz: 58b6e4e1f3adc611de1a86b5c88e193661d11797bff4c9a1017218b21b4e3ea4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 28389cc6bbc9dd257bc2fb9e540f06ff161029862a0fb8f14d5e434cbc26a7dd81c0171197cacaf651e963afb5fed5aac0076661dcdf440ac8346f9f393bcb82
|
7
|
+
data.tar.gz: 41a7832354669a4e6889d2529edf732f859f8fb892c481e1515cf10853054be77ce7702f824203793d4d644fa3905b49468c4b5db4cbf5bfc6d12defdad2632a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,15 @@
|
|
1
1
|
# Release history for google-apis-certificatemanager_v1
|
2
2
|
|
3
|
+
### v0.33.0 (2025-05-04)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250423
|
6
|
+
* Regenerated using generator version 0.17.0
|
7
|
+
|
8
|
+
### v0.32.0 (2025-02-26)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20250211
|
11
|
+
* Regenerated using generator version 0.16.0
|
12
|
+
|
3
13
|
### v0.31.0 (2024-12-15)
|
4
14
|
|
5
15
|
* Regenerated from discovery document revision 20241204
|
data/OVERVIEW.md
CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/certificate-manager) may pr
|
|
83
83
|
|
84
84
|
## Supported Ruby versions
|
85
85
|
|
86
|
-
This library is supported on Ruby
|
86
|
+
This library is supported on Ruby 3.1+.
|
87
87
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
89
89
|
|
@@ -161,6 +161,11 @@ module Google
|
|
161
161
|
# @return [String]
|
162
162
|
attr_accessor :update_time
|
163
163
|
|
164
|
+
# Output only. The list of resources that use this Certificate.
|
165
|
+
# Corresponds to the JSON property `usedBy`
|
166
|
+
# @return [Array<Google::Apis::CertificatemanagerV1::UsedBy>]
|
167
|
+
attr_accessor :used_by
|
168
|
+
|
164
169
|
def initialize(**args)
|
165
170
|
update!(**args)
|
166
171
|
end
|
@@ -178,6 +183,7 @@ module Google
|
|
178
183
|
@scope = args[:scope] if args.key?(:scope)
|
179
184
|
@self_managed = args[:self_managed] if args.key?(:self_managed)
|
180
185
|
@update_time = args[:update_time] if args.key?(:update_time)
|
186
|
+
@used_by = args[:used_by] if args.key?(:used_by)
|
181
187
|
end
|
182
188
|
end
|
183
189
|
|
@@ -1304,6 +1310,28 @@ module Google
|
|
1304
1310
|
@trust_anchors = args[:trust_anchors] if args.key?(:trust_anchors)
|
1305
1311
|
end
|
1306
1312
|
end
|
1313
|
+
|
1314
|
+
# Defines a resource that uses the certificate.
|
1315
|
+
class UsedBy
|
1316
|
+
include Google::Apis::Core::Hashable
|
1317
|
+
|
1318
|
+
# Output only. Full name of the resource https://google.aip.dev/122#full-
|
1319
|
+
# resource-names, e.g. `//certificatemanager.googleapis.com/projects/*/locations/
|
1320
|
+
# */certificateMaps/*/certificateMapEntries/*` or `//compute.googleapis.com/
|
1321
|
+
# projects/*/locations/*/targetHttpsProxies/*`.
|
1322
|
+
# Corresponds to the JSON property `name`
|
1323
|
+
# @return [String]
|
1324
|
+
attr_accessor :name
|
1325
|
+
|
1326
|
+
def initialize(**args)
|
1327
|
+
update!(**args)
|
1328
|
+
end
|
1329
|
+
|
1330
|
+
# Update properties of this object
|
1331
|
+
def update!(**args)
|
1332
|
+
@name = args[:name] if args.key?(:name)
|
1333
|
+
end
|
1334
|
+
end
|
1307
1335
|
end
|
1308
1336
|
end
|
1309
1337
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module CertificatemanagerV1
|
18
18
|
# Version of the google-apis-certificatemanager_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.33.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.17.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250423"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -220,6 +220,12 @@ module Google
|
|
220
220
|
include Google::Apis::Core::JsonObjectSupport
|
221
221
|
end
|
222
222
|
|
223
|
+
class UsedBy
|
224
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
225
|
+
|
226
|
+
include Google::Apis::Core::JsonObjectSupport
|
227
|
+
end
|
228
|
+
|
223
229
|
class AllowlistedCertificate
|
224
230
|
# @private
|
225
231
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -259,6 +265,8 @@ module Google
|
|
259
265
|
property :self_managed, as: 'selfManaged', class: Google::Apis::CertificatemanagerV1::SelfManagedCertificate, decorator: Google::Apis::CertificatemanagerV1::SelfManagedCertificate::Representation
|
260
266
|
|
261
267
|
property :update_time, as: 'updateTime'
|
268
|
+
collection :used_by, as: 'usedBy', class: Google::Apis::CertificatemanagerV1::UsedBy, decorator: Google::Apis::CertificatemanagerV1::UsedBy::Representation
|
269
|
+
|
262
270
|
end
|
263
271
|
end
|
264
272
|
|
@@ -561,6 +569,13 @@ module Google
|
|
561
569
|
|
562
570
|
end
|
563
571
|
end
|
572
|
+
|
573
|
+
class UsedBy
|
574
|
+
# @private
|
575
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
576
|
+
property :name, as: 'name'
|
577
|
+
end
|
578
|
+
end
|
564
579
|
end
|
565
580
|
end
|
566
581
|
end
|
@@ -84,6 +84,9 @@ module Google
|
|
84
84
|
# Lists information about the supported locations for this service.
|
85
85
|
# @param [String] name
|
86
86
|
# The resource that owns the locations collection, if applicable.
|
87
|
+
# @param [Array<String>, String] extra_location_types
|
88
|
+
# Optional. A list of extra location types that should be used as conditions for
|
89
|
+
# controlling the visibility of the locations.
|
87
90
|
# @param [String] filter
|
88
91
|
# A filter to narrow down results to a preferred subset. The filtering language
|
89
92
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
@@ -111,11 +114,12 @@ module Google
|
|
111
114
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
112
115
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
113
116
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
114
|
-
def list_project_locations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
117
|
+
def list_project_locations(name, extra_location_types: nil, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
115
118
|
command = make_simple_command(:get, 'v1/{+name}/locations', options)
|
116
119
|
command.response_representation = Google::Apis::CertificatemanagerV1::ListLocationsResponse::Representation
|
117
120
|
command.response_class = Google::Apis::CertificatemanagerV1::ListLocationsResponse
|
118
121
|
command.params['name'] = name unless name.nil?
|
122
|
+
command.query['extraLocationTypes'] = extra_location_types unless extra_location_types.nil?
|
119
123
|
command.query['filter'] = filter unless filter.nil?
|
120
124
|
command.query['pageSize'] = page_size unless page_size.nil?
|
121
125
|
command.query['pageToken'] = page_token unless page_token.nil?
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-certificatemanager_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.33.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-certificatemanager_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-certificatemanager_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-certificatemanager_v1/v0.33.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-certificatemanager_v1
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -68,15 +66,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
68
66
|
requirements:
|
69
67
|
- - ">="
|
70
68
|
- !ruby/object:Gem::Version
|
71
|
-
version: '
|
69
|
+
version: '3.1'
|
72
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
73
71
|
requirements:
|
74
72
|
- - ">="
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.8
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Certificate Manager API V1
|
82
79
|
test_files: []
|