google-apis-secretmanager_v1beta2 0.11.0 → 0.12.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: 3e32c52490ecad473b32b558dfc4521de1dad093e71e87a33e98d8f80b48786f
4
- data.tar.gz: 79438a09008da90780329c0be2c5a51ef521ef19be8ca909032287b44ab7ca5b
3
+ metadata.gz: e90cc4b051a491a89f684177bbebb39b2fc2bd9a9c0d671cd7a821015653a3a4
4
+ data.tar.gz: d36282c9afb57e47a0be65aafa6ba7602d0fdbfb06da1d43de871af7ffd7682a
5
5
  SHA512:
6
- metadata.gz: 8a1b8a5f924c1ee2b3fb79d3117fb1bfe7d95b91192ba231b3c9743d91e3cc93a3796a1a52c506513f599cde4a5341714621487d5353920679da0f2ae29886a3
7
- data.tar.gz: f6c542a866a0f50844223239f865264e5bcb18dbec252bfbae4fff7690f05cd8d4275e581c31869ca42c94b00c6db54ca64c291198176b5b580fa80651a083d2
6
+ metadata.gz: 9b66f2d509077e48fd20238fd2dae1c957c831956fa00039090bf83ac9590af9dc996b7870bb4c6bf1689f3696aa4ed49b51d710d63919fb4aa24b134dab74e8
7
+ data.tar.gz: dc19a36f76f87ef748444a13832d679065a6b49bfccf34f10801dd4c9da56ea8d0ba47f7752586b253b389fc4717dbbdb6df16726dc5116a2bce413901a086b8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-secretmanager_v1beta2
2
2
 
3
+ ### v0.12.0 (2026-04-19)
4
+
5
+ * Regenerated from discovery document revision 20260327
6
+
3
7
  ### v0.11.0 (2026-02-22)
4
8
 
5
9
  * Regenerated from discovery document revision 20260213
@@ -670,16 +670,22 @@ module Google
670
670
  # @return [String]
671
671
  attr_accessor :api_version
672
672
 
673
- # Output only. The time the operation was created.
673
+ # Output only. Time the operation was created.
674
674
  # Corresponds to the JSON property `createTime`
675
675
  # @return [String]
676
676
  attr_accessor :create_time
677
677
 
678
- # Output only. The time the operation finished running.
678
+ # Output only. Time the operation finished running.
679
679
  # Corresponds to the JSON property `endTime`
680
680
  # @return [String]
681
681
  attr_accessor :end_time
682
682
 
683
+ # Represents progress information for operations involving multiple secret
684
+ # versions.
685
+ # Corresponds to the JSON property `progress`
686
+ # @return [Google::Apis::SecretmanagerV1beta2::Progress]
687
+ attr_accessor :progress
688
+
683
689
  # Output only. Identifies whether the user has requested cancellation of the
684
690
  # operation. Operations that have been cancelled successfully have google.
685
691
  # longrunning.Operation.error value with a google.rpc.Status.code of `1`,
@@ -713,6 +719,7 @@ module Google
713
719
  @api_version = args[:api_version] if args.key?(:api_version)
714
720
  @create_time = args[:create_time] if args.key?(:create_time)
715
721
  @end_time = args[:end_time] if args.key?(:end_time)
722
+ @progress = args[:progress] if args.key?(:progress)
716
723
  @requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
717
724
  @status_message = args[:status_message] if args.key?(:status_message)
718
725
  @target = args[:target] if args.key?(:target)
@@ -815,6 +822,40 @@ module Google
815
822
  end
816
823
  end
817
824
 
825
+ # Represents progress information for operations involving multiple secret
826
+ # versions.
827
+ class Progress
828
+ include Google::Apis::Core::Hashable
829
+
830
+ # Output only. Number of secret versions that have been successfully processed
831
+ # so far.
832
+ # Corresponds to the JSON property `completedVersionCount`
833
+ # @return [Fixnum]
834
+ attr_accessor :completed_version_count
835
+
836
+ # Output only. Number of secret versions that failed to process.
837
+ # Corresponds to the JSON property `failedVersionCount`
838
+ # @return [Fixnum]
839
+ attr_accessor :failed_version_count
840
+
841
+ # Output only. Provides the total number of secret versions to be processed by
842
+ # the operation.
843
+ # Corresponds to the JSON property `totalVersionCount`
844
+ # @return [Fixnum]
845
+ attr_accessor :total_version_count
846
+
847
+ def initialize(**args)
848
+ update!(**args)
849
+ end
850
+
851
+ # Update properties of this object
852
+ def update!(**args)
853
+ @completed_version_count = args[:completed_version_count] if args.key?(:completed_version_count)
854
+ @failed_version_count = args[:failed_version_count] if args.key?(:failed_version_count)
855
+ @total_version_count = args[:total_version_count] if args.key?(:total_version_count)
856
+ end
857
+ end
858
+
818
859
  # Represents a Replica for this Secret.
819
860
  class Replica
820
861
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module SecretmanagerV1beta2
18
18
  # Version of the google-apis-secretmanager_v1beta2 gem
19
- GEM_VERSION = "0.11.0"
19
+ GEM_VERSION = "0.12.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260213"
25
+ REVISION = "20260327"
26
26
  end
27
27
  end
28
28
  end
@@ -148,6 +148,12 @@ module Google
148
148
  include Google::Apis::Core::JsonObjectSupport
149
149
  end
150
150
 
151
+ class Progress
152
+ class Representation < Google::Apis::Core::JsonRepresentation; end
153
+
154
+ include Google::Apis::Core::JsonObjectSupport
155
+ end
156
+
151
157
  class Replica
152
158
  class Representation < Google::Apis::Core::JsonRepresentation; end
153
159
 
@@ -407,6 +413,8 @@ module Google
407
413
  property :api_version, as: 'apiVersion'
408
414
  property :create_time, as: 'createTime'
409
415
  property :end_time, as: 'endTime'
416
+ property :progress, as: 'progress', class: Google::Apis::SecretmanagerV1beta2::Progress, decorator: Google::Apis::SecretmanagerV1beta2::Progress::Representation
417
+
410
418
  property :requested_cancellation, as: 'requestedCancellation'
411
419
  property :status_message, as: 'statusMessage'
412
420
  property :target, as: 'target'
@@ -426,6 +434,15 @@ module Google
426
434
  end
427
435
  end
428
436
 
437
+ class Progress
438
+ # @private
439
+ class Representation < Google::Apis::Core::JsonRepresentation
440
+ property :completed_version_count, as: 'completedVersionCount'
441
+ property :failed_version_count, as: 'failedVersionCount'
442
+ property :total_version_count, as: 'totalVersionCount'
443
+ end
444
+ end
445
+
429
446
  class Replica
430
447
  # @private
431
448
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -83,10 +83,15 @@ module Google
83
83
  end
84
84
 
85
85
  # Lists information about the supported locations for this service. This method
86
- # can be called in two ways: * **List all public locations:** Use the path `GET /
87
- # v1/locations`. * **List project-visible locations:** Use the path `GET /v1/
88
- # projects/`project_id`/locations`. This may include public locations as well as
89
- # private or other locations specifically visible to the project.
86
+ # lists locations based on the resource scope provided in the [
87
+ # ListLocationsRequest.name] field: * **Global locations**: If `name` is empty,
88
+ # the method lists the public locations available to all projects. * **Project-
89
+ # specific locations**: If `name` follows the format `projects/`project``, the
90
+ # method lists locations visible to that specific project. This includes public,
91
+ # private, or other project-specific locations enabled for the project. For gRPC
92
+ # and client library implementations, the resource name is passed as the `name`
93
+ # field. For direct service calls, the resource name is incorporated into the
94
+ # request path based on the specific service implementation and version.
90
95
  # @param [String] name
91
96
  # The resource that owns the locations collection, if applicable.
92
97
  # @param [Array<String>, String] extra_location_types
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-secretmanager_v1beta2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-secretmanager_v1beta2/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-secretmanager_v1beta2/v0.11.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-secretmanager_v1beta2/v0.12.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-secretmanager_v1beta2
62
62
  rdoc_options: []
63
63
  require_paths: