google-apis-backupdr_v1 0.56.0 → 0.57.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: 54aac27bc8e5c83f909278b2603e4189e984b438c7bf93e6a41c66ef98157fe6
|
|
4
|
+
data.tar.gz: ffd78427dc4d0033661b00dd7725df5cf7e9f1725bbe534c6e4167f161430aa0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 69226a00e6c323e95d7de469e7d63b183dcbad06da7b9a5095c7554882d60e59249c626d211f63d6b6ada444dbab57ffce90f02b542354d0811076454562bc0d
|
|
7
|
+
data.tar.gz: db7b7edebf0900c330603496d5af2cbbde718544b3ca0bb24c6fd70cdcaf966eee24439b16e44e5088783c7d4bebca5ef8b01d2514984504cc9a17b860ec5f21
|
data/CHANGELOG.md
CHANGED
|
@@ -2413,6 +2413,13 @@ module Google
|
|
|
2413
2413
|
# @return [String]
|
|
2414
2414
|
attr_accessor :project
|
|
2415
2415
|
|
|
2416
|
+
# Optional. Whether to use the project service account for the Compute Engine
|
|
2417
|
+
# instance.
|
|
2418
|
+
# Corresponds to the JSON property `useProjectServiceAccount`
|
|
2419
|
+
# @return [Boolean]
|
|
2420
|
+
attr_accessor :use_project_service_account
|
|
2421
|
+
alias_method :use_project_service_account?, :use_project_service_account
|
|
2422
|
+
|
|
2416
2423
|
# Required. The zone of the Compute Engine instance.
|
|
2417
2424
|
# Corresponds to the JSON property `zone`
|
|
2418
2425
|
# @return [String]
|
|
@@ -2425,6 +2432,7 @@ module Google
|
|
|
2425
2432
|
# Update properties of this object
|
|
2426
2433
|
def update!(**args)
|
|
2427
2434
|
@project = args[:project] if args.key?(:project)
|
|
2435
|
+
@use_project_service_account = args[:use_project_service_account] if args.key?(:use_project_service_account)
|
|
2428
2436
|
@zone = args[:zone] if args.key?(:zone)
|
|
2429
2437
|
end
|
|
2430
2438
|
end
|
|
@@ -3185,6 +3193,12 @@ module Google
|
|
|
3185
3193
|
# @return [String]
|
|
3186
3194
|
attr_accessor :project
|
|
3187
3195
|
|
|
3196
|
+
# Optional. Whether to use the project service account for the disk.
|
|
3197
|
+
# Corresponds to the JSON property `useProjectServiceAccount`
|
|
3198
|
+
# @return [Boolean]
|
|
3199
|
+
attr_accessor :use_project_service_account
|
|
3200
|
+
alias_method :use_project_service_account?, :use_project_service_account
|
|
3201
|
+
|
|
3188
3202
|
# Required. Target zone for the disk.
|
|
3189
3203
|
# Corresponds to the JSON property `zone`
|
|
3190
3204
|
# @return [String]
|
|
@@ -3197,6 +3211,7 @@ module Google
|
|
|
3197
3211
|
# Update properties of this object
|
|
3198
3212
|
def update!(**args)
|
|
3199
3213
|
@project = args[:project] if args.key?(:project)
|
|
3214
|
+
@use_project_service_account = args[:use_project_service_account] if args.key?(:use_project_service_account)
|
|
3200
3215
|
@zone = args[:zone] if args.key?(:zone)
|
|
3201
3216
|
end
|
|
3202
3217
|
end
|
|
@@ -5196,6 +5211,12 @@ module Google
|
|
|
5196
5211
|
# @return [Array<String>]
|
|
5197
5212
|
attr_accessor :replica_zones
|
|
5198
5213
|
|
|
5214
|
+
# Optional. Whether to use the project service account for the disk.
|
|
5215
|
+
# Corresponds to the JSON property `useProjectServiceAccount`
|
|
5216
|
+
# @return [Boolean]
|
|
5217
|
+
attr_accessor :use_project_service_account
|
|
5218
|
+
alias_method :use_project_service_account?, :use_project_service_account
|
|
5219
|
+
|
|
5199
5220
|
def initialize(**args)
|
|
5200
5221
|
update!(**args)
|
|
5201
5222
|
end
|
|
@@ -5205,6 +5226,7 @@ module Google
|
|
|
5205
5226
|
@project = args[:project] if args.key?(:project)
|
|
5206
5227
|
@region = args[:region] if args.key?(:region)
|
|
5207
5228
|
@replica_zones = args[:replica_zones] if args.key?(:replica_zones)
|
|
5229
|
+
@use_project_service_account = args[:use_project_service_account] if args.key?(:use_project_service_account)
|
|
5208
5230
|
end
|
|
5209
5231
|
end
|
|
5210
5232
|
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module BackupdrV1
|
|
18
18
|
# Version of the google-apis-backupdr_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.57.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 = "20260517"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1407,6 +1407,7 @@ module Google
|
|
|
1407
1407
|
# @private
|
|
1408
1408
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1409
1409
|
property :project, as: 'project'
|
|
1410
|
+
property :use_project_service_account, as: 'useProjectServiceAccount'
|
|
1410
1411
|
property :zone, as: 'zone'
|
|
1411
1412
|
end
|
|
1412
1413
|
end
|
|
@@ -1592,6 +1593,7 @@ module Google
|
|
|
1592
1593
|
# @private
|
|
1593
1594
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1594
1595
|
property :project, as: 'project'
|
|
1596
|
+
property :use_project_service_account, as: 'useProjectServiceAccount'
|
|
1595
1597
|
property :zone, as: 'zone'
|
|
1596
1598
|
end
|
|
1597
1599
|
end
|
|
@@ -2123,6 +2125,7 @@ module Google
|
|
|
2123
2125
|
property :project, as: 'project'
|
|
2124
2126
|
property :region, as: 'region'
|
|
2125
2127
|
collection :replica_zones, as: 'replicaZones'
|
|
2128
|
+
property :use_project_service_account, as: 'useProjectServiceAccount'
|
|
2126
2129
|
end
|
|
2127
2130
|
end
|
|
2128
2131
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-backupdr_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.57.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-backupdr_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-backupdr_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-backupdr_v1/v0.57.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-backupdr_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|