google-apis-cloudkms_v1 0.51.0 → 0.53.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: 02aab822cbf89a2fb051a38e5861e892731782d45aa03310cda77d2074c6a025
4
- data.tar.gz: c0d62cb0cdf94eb809bb02101ba69a5ac05513a8815f246cfaef89e0ade9016d
3
+ metadata.gz: e07109e37ee1353be547d11b82e3a2bbfb8dfd8fd574ed7037e89fd8572d578d
4
+ data.tar.gz: '08e42cfb23f9fc99e3d418f75bb49895c10afe28cd26a8f89f650aedd15e5e3a'
5
5
  SHA512:
6
- metadata.gz: 67156088fdf186c8585d2cfe8ec162064e7be62253e3245956b42e84a2f6ace8efa283dccb2315de35e6220d2fb9e3323c8b8d6e14d3210e3af8996a357381cb
7
- data.tar.gz: 4973d49612a770ed0fc956afe1ce075feb370dc420cda088ab87f091b0caa25287c43a466647878a3e4e0e2e56370c92e83ce6078c0691b576cb8c633d142597
6
+ metadata.gz: 94477fe75cb1e309e333679dcb2c05bb69f49b4653603b080d5fc85a046ff4ddc674e84851b7abe318ffdc6b2e790a8dc6b869b58ed5cd632bcecf020cc34a28
7
+ data.tar.gz: de104fb995681229ce63474d7db8a4e478ce7ab71fd7ee4201a770adb67ec75b3a16bfcb932fc9cf24a1920feb4b5ecbdea377f0da28e1f1081fac9358cea648
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-cloudkms_v1
2
2
 
3
+ ### v0.53.0 (2024-09-01)
4
+
5
+ * Regenerated from discovery document revision 20240808
6
+
7
+ ### v0.52.0 (2024-08-04)
8
+
9
+ * Regenerated from discovery document revision 20240723
10
+ * Regenerated using generator version 0.15.1
11
+
3
12
  ### v0.51.0 (2024-06-23)
4
13
 
5
14
  * Regenerated from discovery document revision 20240613
@@ -341,6 +341,11 @@ module Google
341
341
  # @return [String]
342
342
  attr_accessor :name
343
343
 
344
+ # Output only. The state for the AutokeyConfig.
345
+ # Corresponds to the JSON property `state`
346
+ # @return [String]
347
+ attr_accessor :state
348
+
344
349
  def initialize(**args)
345
350
  update!(**args)
346
351
  end
@@ -349,6 +354,7 @@ module Google
349
354
  def update!(**args)
350
355
  @key_project = args[:key_project] if args.key?(:key_project)
351
356
  @name = args[:name] if args.key?(:name)
357
+ @state = args[:state] if args.key?(:state)
352
358
  end
353
359
  end
354
360
 
@@ -585,7 +591,7 @@ module Google
585
591
 
586
592
  # Immutable. The period of time that versions of this key spend in the
587
593
  # DESTROY_SCHEDULED state before transitioning to DESTROYED. If not specified at
588
- # creation time, the default duration is 24 hours.
594
+ # creation time, the default duration is 30 days.
589
595
  # Corresponds to the JSON property `destroyScheduledDuration`
590
596
  # @return [String]
591
597
  attr_accessor :destroy_scheduled_duration
@@ -1058,9 +1064,9 @@ module Google
1058
1064
  # @return [String]
1059
1065
  attr_accessor :name
1060
1066
 
1061
- # A list of ServiceResolvers where the EKM can be reached. There should be one
1062
- # ServiceResolver per EKM replica. Currently, only a single ServiceResolver is
1063
- # supported.
1067
+ # Optional. A list of ServiceResolvers where the EKM can be reached. There
1068
+ # should be one ServiceResolver per EKM replica. Currently, only a single
1069
+ # ServiceResolver is supported.
1064
1070
  # Corresponds to the JSON property `serviceResolvers`
1065
1071
  # @return [Array<Google::Apis::CloudkmsV1::ServiceResolver>]
1066
1072
  attr_accessor :service_resolvers
@@ -1796,6 +1802,12 @@ module Google
1796
1802
  # @return [Array<Google::Apis::CloudkmsV1::KeyHandle>]
1797
1803
  attr_accessor :key_handles
1798
1804
 
1805
+ # A token to retrieve next page of results. Pass this value in
1806
+ # ListKeyHandlesRequest.page_token to retrieve the next page of results.
1807
+ # Corresponds to the JSON property `nextPageToken`
1808
+ # @return [String]
1809
+ attr_accessor :next_page_token
1810
+
1799
1811
  def initialize(**args)
1800
1812
  update!(**args)
1801
1813
  end
@@ -1803,6 +1815,7 @@ module Google
1803
1815
  # Update properties of this object
1804
1816
  def update!(**args)
1805
1817
  @key_handles = args[:key_handles] if args.key?(:key_handles)
1818
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1806
1819
  end
1807
1820
  end
1808
1821
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudkmsV1
18
18
  # Version of the google-apis-cloudkms_v1 gem
19
- GEM_VERSION = "0.51.0"
19
+ GEM_VERSION = "0.53.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.0"
22
+ GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240613"
25
+ REVISION = "20240808"
26
26
  end
27
27
  end
28
28
  end
@@ -451,6 +451,7 @@ module Google
451
451
  class Representation < Google::Apis::Core::JsonRepresentation
452
452
  property :key_project, as: 'keyProject'
453
453
  property :name, as: 'name'
454
+ property :state, as: 'state'
454
455
  end
455
456
  end
456
457
 
@@ -761,6 +762,7 @@ module Google
761
762
  class Representation < Google::Apis::Core::JsonRepresentation
762
763
  collection :key_handles, as: 'keyHandles', class: Google::Apis::CloudkmsV1::KeyHandle, decorator: Google::Apis::CloudkmsV1::KeyHandle::Representation
763
764
 
765
+ property :next_page_token, as: 'nextPageToken'
764
766
  end
765
767
  end
766
768
 
@@ -843,6 +843,15 @@ module Google
843
843
  # @param [String] filter
844
844
  # Optional. Filter to apply when listing KeyHandles, e.g. `
845
845
  # resource_type_selector="`SERVICE`.googleapis.com/`TYPE`"`.
846
+ # @param [Fixnum] page_size
847
+ # Optional. Optional limit on the number of KeyHandles to include in the
848
+ # response. The service may return fewer than this value. Further KeyHandles can
849
+ # subsequently be obtained by including the ListKeyHandlesResponse.
850
+ # next_page_token in a subsequent request. If unspecified, at most KeyHandles
851
+ # 100 will be returned.
852
+ # @param [String] page_token
853
+ # Optional. Optional pagination token, returned earlier via
854
+ # ListKeyHandlesResponse.next_page_token.
846
855
  # @param [String] fields
847
856
  # Selector specifying which fields to include in a partial response.
848
857
  # @param [String] quota_user
@@ -860,12 +869,14 @@ module Google
860
869
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
861
870
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
862
871
  # @raise [Google::Apis::AuthorizationError] Authorization is required
863
- def list_project_location_key_handles(parent, filter: nil, fields: nil, quota_user: nil, options: nil, &block)
872
+ def list_project_location_key_handles(parent, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
864
873
  command = make_simple_command(:get, 'v1/{+parent}/keyHandles', options)
865
874
  command.response_representation = Google::Apis::CloudkmsV1::ListKeyHandlesResponse::Representation
866
875
  command.response_class = Google::Apis::CloudkmsV1::ListKeyHandlesResponse
867
876
  command.params['parent'] = parent unless parent.nil?
868
877
  command.query['filter'] = filter unless filter.nil?
878
+ command.query['pageSize'] = page_size unless page_size.nil?
879
+ command.query['pageToken'] = page_token unless page_token.nil?
869
880
  command.query['fields'] = fields unless fields.nil?
870
881
  command.query['quotaUser'] = quota_user unless quota_user.nil?
871
882
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudkms_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.51.0
4
+ version: 0.53.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-06-23 00:00:00.000000000 Z
11
+ date: 2024-09-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -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-cloudkms_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudkms_v1/v0.51.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudkms_v1/v0.53.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudkms_v1
63
63
  post_install_message:
64
64
  rdoc_options: []