google-cloud-gke_backup-v1 1.0.0 → 1.1.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/lib/google/cloud/gke_backup/v1/backup_for_gke/client.rb +1910 -339
- data/lib/google/cloud/gke_backup/v1/backup_for_gke/paths.rb +80 -0
- data/lib/google/cloud/gke_backup/v1/backup_for_gke/rest/client.rb +1756 -283
- data/lib/google/cloud/gke_backup/v1/backup_for_gke/rest/service_stub.rb +878 -20
- data/lib/google/cloud/gke_backup/v1/version.rb +1 -1
- data/lib/google/cloud/gkebackup/v1/backup_channel_pb.rb +48 -0
- data/lib/google/cloud/gkebackup/v1/backup_pb.rb +1 -1
- data/lib/google/cloud/gkebackup/v1/backup_plan_binding_pb.rb +50 -0
- data/lib/google/cloud/gkebackup/v1/backup_plan_pb.rb +1 -1
- data/lib/google/cloud/gkebackup/v1/gkebackup_pb.rb +27 -1
- data/lib/google/cloud/gkebackup/v1/gkebackup_services_pb.rb +28 -0
- data/lib/google/cloud/gkebackup/v1/restore_channel_pb.rb +48 -0
- data/lib/google/cloud/gkebackup/v1/restore_pb.rb +1 -1
- data/lib/google/cloud/gkebackup/v1/restore_plan_binding_pb.rb +48 -0
- data/lib/google/cloud/gkebackup/v1/volume_pb.rb +1 -1
- data/proto_docs/google/api/client.rb +6 -0
- data/proto_docs/google/api/field_info.rb +88 -0
- data/proto_docs/google/cloud/gkebackup/v1/backup.rb +8 -1
- data/proto_docs/google/cloud/gkebackup/v1/backup_channel.rb +88 -0
- data/proto_docs/google/cloud/gkebackup/v1/backup_plan.rb +8 -1
- data/proto_docs/google/cloud/gkebackup/v1/backup_plan_binding.rb +130 -0
- data/proto_docs/google/cloud/gkebackup/v1/common.rb +2 -2
- data/proto_docs/google/cloud/gkebackup/v1/gkebackup.rb +389 -3
- data/proto_docs/google/cloud/gkebackup/v1/restore.rb +14 -6
- data/proto_docs/google/cloud/gkebackup/v1/restore_channel.rb +87 -0
- data/proto_docs/google/cloud/gkebackup/v1/restore_plan.rb +3 -1
- data/proto_docs/google/cloud/gkebackup/v1/restore_plan_binding.rb +68 -0
- data/proto_docs/google/cloud/gkebackup/v1/volume.rb +13 -1
- metadata +12 -3
@@ -72,7 +72,9 @@ module Google
|
|
72
72
|
# @!attribute [r] state_message
|
73
73
|
# @return [::String]
|
74
74
|
# Output only. A human readable message explaining why the VolumeBackup is in
|
75
|
-
# its current state.
|
75
|
+
# its current state. This field is only meant for human consumption and
|
76
|
+
# should not be used programmatically as this field is not guaranteed to be
|
77
|
+
# consistent.
|
76
78
|
# @!attribute [r] etag
|
77
79
|
# @return [::String]
|
78
80
|
# Output only. `etag` is used for optimistic concurrency control as a way to
|
@@ -80,6 +82,12 @@ module Google
|
|
80
82
|
# other. It is strongly suggested that systems make use of the `etag` in the
|
81
83
|
# read-modify-write cycle to perform volume backup updates in order to avoid
|
82
84
|
# race conditions.
|
85
|
+
# @!attribute [r] satisfies_pzs
|
86
|
+
# @return [::Boolean]
|
87
|
+
# Output only. [Output Only] Reserved for future use.
|
88
|
+
# @!attribute [r] satisfies_pzi
|
89
|
+
# @return [::Boolean]
|
90
|
+
# Output only. [Output Only] Reserved for future use.
|
83
91
|
class VolumeBackup
|
84
92
|
include ::Google::Protobuf::MessageExts
|
85
93
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -121,6 +129,10 @@ module Google
|
|
121
129
|
# This VolumeBackup resource (and its associated artifacts) is in the
|
122
130
|
# process of being deleted.
|
123
131
|
DELETING = 6
|
132
|
+
|
133
|
+
# The underlying artifacts of a volume backup (eg: persistent disk
|
134
|
+
# snapshots) are deleted.
|
135
|
+
CLEANED_UP = 7
|
124
136
|
end
|
125
137
|
end
|
126
138
|
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-gke_backup-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-04-25 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: gapic-common
|
@@ -111,25 +111,34 @@ files:
|
|
111
111
|
- lib/google/cloud/gke_backup/v1/bindings_override.rb
|
112
112
|
- lib/google/cloud/gke_backup/v1/rest.rb
|
113
113
|
- lib/google/cloud/gke_backup/v1/version.rb
|
114
|
+
- lib/google/cloud/gkebackup/v1/backup_channel_pb.rb
|
114
115
|
- lib/google/cloud/gkebackup/v1/backup_pb.rb
|
116
|
+
- lib/google/cloud/gkebackup/v1/backup_plan_binding_pb.rb
|
115
117
|
- lib/google/cloud/gkebackup/v1/backup_plan_pb.rb
|
116
118
|
- lib/google/cloud/gkebackup/v1/common_pb.rb
|
117
119
|
- lib/google/cloud/gkebackup/v1/gkebackup_pb.rb
|
118
120
|
- lib/google/cloud/gkebackup/v1/gkebackup_services_pb.rb
|
121
|
+
- lib/google/cloud/gkebackup/v1/restore_channel_pb.rb
|
119
122
|
- lib/google/cloud/gkebackup/v1/restore_pb.rb
|
123
|
+
- lib/google/cloud/gkebackup/v1/restore_plan_binding_pb.rb
|
120
124
|
- lib/google/cloud/gkebackup/v1/restore_plan_pb.rb
|
121
125
|
- lib/google/cloud/gkebackup/v1/volume_pb.rb
|
122
126
|
- proto_docs/README.md
|
123
127
|
- proto_docs/google/api/client.rb
|
124
128
|
- proto_docs/google/api/field_behavior.rb
|
129
|
+
- proto_docs/google/api/field_info.rb
|
125
130
|
- proto_docs/google/api/launch_stage.rb
|
126
131
|
- proto_docs/google/api/resource.rb
|
127
132
|
- proto_docs/google/cloud/gkebackup/v1/backup.rb
|
133
|
+
- proto_docs/google/cloud/gkebackup/v1/backup_channel.rb
|
128
134
|
- proto_docs/google/cloud/gkebackup/v1/backup_plan.rb
|
135
|
+
- proto_docs/google/cloud/gkebackup/v1/backup_plan_binding.rb
|
129
136
|
- proto_docs/google/cloud/gkebackup/v1/common.rb
|
130
137
|
- proto_docs/google/cloud/gkebackup/v1/gkebackup.rb
|
131
138
|
- proto_docs/google/cloud/gkebackup/v1/restore.rb
|
139
|
+
- proto_docs/google/cloud/gkebackup/v1/restore_channel.rb
|
132
140
|
- proto_docs/google/cloud/gkebackup/v1/restore_plan.rb
|
141
|
+
- proto_docs/google/cloud/gkebackup/v1/restore_plan_binding.rb
|
133
142
|
- proto_docs/google/cloud/gkebackup/v1/volume.rb
|
134
143
|
- proto_docs/google/longrunning/operations.rb
|
135
144
|
- proto_docs/google/protobuf/any.rb
|
@@ -160,7 +169,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
160
169
|
- !ruby/object:Gem::Version
|
161
170
|
version: '0'
|
162
171
|
requirements: []
|
163
|
-
rubygems_version: 3.6.
|
172
|
+
rubygems_version: 3.6.5
|
164
173
|
specification_version: 4
|
165
174
|
summary: Backup for GKE is a managed Kubernetes workload backup and restore service
|
166
175
|
for GKE clusters.
|