google-apis-secretmanager_v1 0.9.0 → 0.13.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: 10fc3c9e0fc36b17edc2cfc8e651818cfbded08fbc0dd469b065d98172ba971b
|
4
|
+
data.tar.gz: 7f1bace3e37d63c9513e48952805b38674ad8627edc02acf5a9ff07911af2b18
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0c16f02802b113d7865b15e12b7cd9a6f6d08c75a789549c44a9419f16de40bf48799980fdade4d3a79927a84b39ce781458bbbbf70101ac2d677fe5c8e1707d
|
7
|
+
data.tar.gz: 107f626844cd651a8ba4f23f4a16fdf9268e80564599e2a3846ae568a9ee1c73e273a81722bc0f34f8125c281ca151d8ab4d7005c828945cea212cfb7e0126bb
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Release history for google-apis-secretmanager_v1
|
2
2
|
|
3
|
+
### v0.13.0 (2021-07-16)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210710
|
6
|
+
|
7
|
+
### v0.12.0 (2021-06-29)
|
8
|
+
|
9
|
+
* Regenerated using generator version 0.4.0
|
10
|
+
|
11
|
+
### v0.11.0 (2021-06-24)
|
12
|
+
|
13
|
+
* Regenerated using generator version 0.3.0
|
14
|
+
|
15
|
+
### v0.10.0 (2021-05-28)
|
16
|
+
|
17
|
+
* Regenerated from discovery document revision 20210521
|
18
|
+
|
3
19
|
### v0.9.0 (2021-05-20)
|
4
20
|
|
5
21
|
* Unspecified changes
|
@@ -770,8 +770,9 @@ module Google
|
|
770
770
|
class Rotation
|
771
771
|
include Google::Apis::Core::Hashable
|
772
772
|
|
773
|
-
# Optional. Timestamp in UTC at which the Secret is scheduled to rotate.
|
774
|
-
#
|
773
|
+
# Optional. Timestamp in UTC at which the Secret is scheduled to rotate. Cannot
|
774
|
+
# be set to less than 300s (5 min) in the future and at most 3153600000s (100
|
775
|
+
# years). next_rotation_time MUST be set if rotation_period is set.
|
775
776
|
# Corresponds to the JSON property `nextRotationTime`
|
776
777
|
# @return [String]
|
777
778
|
attr_accessor :next_rotation_time
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module SecretmanagerV1
|
18
18
|
# Version of the google-apis-secretmanager_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.13.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210710"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -309,6 +309,10 @@ module Google
|
|
309
309
|
# @param [String] parent
|
310
310
|
# Required. The resource name of the project associated with the Secrets, in the
|
311
311
|
# format `projects/*`.
|
312
|
+
# @param [String] filter
|
313
|
+
# Optional. Filter string, adhering to the rules in [List-operation filtering](
|
314
|
+
# https://cloud.google.com/secret-manager/docs/filtering). List only secrets
|
315
|
+
# matching the filter. If filter is empty, all secrets are listed.
|
312
316
|
# @param [Fixnum] page_size
|
313
317
|
# Optional. The maximum number of results to be returned in a single page. If
|
314
318
|
# set to 0, the server decides the number of results to return. If the number is
|
@@ -333,11 +337,12 @@ module Google
|
|
333
337
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
334
338
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
335
339
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
336
|
-
def list_project_secrets(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
340
|
+
def list_project_secrets(parent, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
337
341
|
command = make_simple_command(:get, 'v1/{+parent}/secrets', options)
|
338
342
|
command.response_representation = Google::Apis::SecretmanagerV1::ListSecretsResponse::Representation
|
339
343
|
command.response_class = Google::Apis::SecretmanagerV1::ListSecretsResponse
|
340
344
|
command.params['parent'] = parent unless parent.nil?
|
345
|
+
command.query['filter'] = filter unless filter.nil?
|
341
346
|
command.query['pageSize'] = page_size unless page_size.nil?
|
342
347
|
command.query['pageToken'] = page_token unless page_token.nil?
|
343
348
|
command.query['fields'] = fields unless fields.nil?
|
@@ -630,6 +635,11 @@ module Google
|
|
630
635
|
# @param [String] parent
|
631
636
|
# Required. The resource name of the Secret associated with the SecretVersions
|
632
637
|
# to list, in the format `projects/*/secrets/*`.
|
638
|
+
# @param [String] filter
|
639
|
+
# Optional. Filter string, adhering to the rules in [List-operation filtering](
|
640
|
+
# https://cloud.google.com/secret-manager/docs/filtering). List only secret
|
641
|
+
# versions matching the filter. If filter is empty, all secret versions are
|
642
|
+
# listed.
|
633
643
|
# @param [Fixnum] page_size
|
634
644
|
# Optional. The maximum number of results to be returned in a single page. If
|
635
645
|
# set to 0, the server decides the number of results to return. If the number is
|
@@ -654,11 +664,12 @@ module Google
|
|
654
664
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
655
665
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
656
666
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
657
|
-
def list_project_secret_versions(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
667
|
+
def list_project_secret_versions(parent, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
658
668
|
command = make_simple_command(:get, 'v1/{+parent}/versions', options)
|
659
669
|
command.response_representation = Google::Apis::SecretmanagerV1::ListSecretVersionsResponse::Representation
|
660
670
|
command.response_class = Google::Apis::SecretmanagerV1::ListSecretVersionsResponse
|
661
671
|
command.params['parent'] = parent unless parent.nil?
|
672
|
+
command.query['filter'] = filter unless filter.nil?
|
662
673
|
command.query['pageSize'] = page_size unless page_size.nil?
|
663
674
|
command.query['pageToken'] = page_token unless page_token.nil?
|
664
675
|
command.query['fields'] = fields unless fields.nil?
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-secretmanager_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.13.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: 2021-
|
11
|
+
date: 2021-07-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.4'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.a
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.4'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 2.a
|
27
33
|
description: This is the simple REST client for Secret Manager API V1. Simple REST
|
28
34
|
clients are Ruby client libraries that provide access to Google services via their
|
29
35
|
HTTP REST API endpoints. These libraries are generated and updated automatically
|
@@ -52,7 +58,7 @@ licenses:
|
|
52
58
|
metadata:
|
53
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-secretmanager_v1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-secretmanager_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-secretmanager_v1/v0.13.0
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-secretmanager_v1
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|