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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/secretmanager_v1beta2/classes.rb +43 -2
- data/lib/google/apis/secretmanager_v1beta2/gem_version.rb +2 -2
- data/lib/google/apis/secretmanager_v1beta2/representations.rb +17 -0
- data/lib/google/apis/secretmanager_v1beta2/service.rb +9 -4
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e90cc4b051a491a89f684177bbebb39b2fc2bd9a9c0d671cd7a821015653a3a4
|
|
4
|
+
data.tar.gz: d36282c9afb57e47a0be65aafa6ba7602d0fdbfb06da1d43de871af7ffd7682a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9b66f2d509077e48fd20238fd2dae1c957c831956fa00039090bf83ac9590af9dc996b7870bb4c6bf1689f3696aa4ed49b51d710d63919fb4aa24b134dab74e8
|
|
7
|
+
data.tar.gz: dc19a36f76f87ef748444a13832d679065a6b49bfccf34f10801dd4c9da56ea8d0ba47f7752586b253b389fc4717dbbdb6df16726dc5116a2bce413901a086b8
|
data/CHANGELOG.md
CHANGED
|
@@ -670,16 +670,22 @@ module Google
|
|
|
670
670
|
# @return [String]
|
|
671
671
|
attr_accessor :api_version
|
|
672
672
|
|
|
673
|
-
# Output only.
|
|
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.
|
|
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.
|
|
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 = "
|
|
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
|
-
#
|
|
87
|
-
#
|
|
88
|
-
#
|
|
89
|
-
#
|
|
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.
|
|
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.
|
|
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:
|