google-apis-backupdr_v1 0.13.0 → 0.14.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: 7cba27dec34e4dab395266aa186f93b864b1c6e201393c88edf16dc592ec33dc
|
|
4
|
+
data.tar.gz: 614cc9ef3f603af9aeccb080488e5fddde57889d7a28d66e29737f4cd8c613fe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d8b23c3eeb27fc96b194eb6c7a631782de58dbb97e99cdd36e68decb05b44555d4ef942ccb68a694ddac468dcd025c72ba71e2635fbc4ec11bf3d8ad5f0dcdfd
|
|
7
|
+
data.tar.gz: e1a4bc5262dfc952c767c64c8c68b4ddb1508026818e687808e1628cc4abebb021a74e064abd3649f76d06ad85aa309ba0079b833bbf3f29512c448411cdb4a6
|
data/CHANGELOG.md
CHANGED
|
@@ -1026,22 +1026,6 @@ module Google
|
|
|
1026
1026
|
# @return [Fixnum]
|
|
1027
1027
|
attr_accessor :backup_retention_days
|
|
1028
1028
|
|
|
1029
|
-
# Optional. TODO b/341576760: Remove deprecated BV and Datasource field form BP
|
|
1030
|
-
# and BPA once UI removed all dependencies on them Required. Resource name of
|
|
1031
|
-
# backup vault which will be used as storage location for backups. Format:
|
|
1032
|
-
# projects/`project`/locations/`location`/backupVaults/`backupvault`
|
|
1033
|
-
# Corresponds to the JSON property `backupVault`
|
|
1034
|
-
# @return [String]
|
|
1035
|
-
attr_accessor :backup_vault
|
|
1036
|
-
|
|
1037
|
-
# Output only. TODO b/341576760: Remove deprecated BV and Datasource field form
|
|
1038
|
-
# BP and BPA once UI removed all dependencies on them Output only. The Google
|
|
1039
|
-
# Cloud Platform Service Account to be used by the BackupVault for taking
|
|
1040
|
-
# backups. Specify the email address of the Backup Vault Service Account.
|
|
1041
|
-
# Corresponds to the JSON property `backupVaultServiceAccount`
|
|
1042
|
-
# @return [String]
|
|
1043
|
-
attr_accessor :backup_vault_service_account
|
|
1044
|
-
|
|
1045
1029
|
# Required. Immutable. The unique id of this `BackupRule`. The `rule_id` is
|
|
1046
1030
|
# unique per `BackupPlan`.The `rule_id` must start with a lowercase letter
|
|
1047
1031
|
# followed by up to 62 lowercase letters, numbers, or hyphens. Pattern, /a-z`,62`
|
|
@@ -1064,8 +1048,6 @@ module Google
|
|
|
1064
1048
|
# Update properties of this object
|
|
1065
1049
|
def update!(**args)
|
|
1066
1050
|
@backup_retention_days = args[:backup_retention_days] if args.key?(:backup_retention_days)
|
|
1067
|
-
@backup_vault = args[:backup_vault] if args.key?(:backup_vault)
|
|
1068
|
-
@backup_vault_service_account = args[:backup_vault_service_account] if args.key?(:backup_vault_service_account)
|
|
1069
1051
|
@rule_id = args[:rule_id] if args.key?(:rule_id)
|
|
1070
1052
|
@standard_schedule = args[:standard_schedule] if args.key?(:standard_schedule)
|
|
1071
1053
|
end
|
|
@@ -3703,15 +3685,6 @@ module Google
|
|
|
3703
3685
|
class RuleConfigInfo
|
|
3704
3686
|
include Google::Apis::Core::Hashable
|
|
3705
3687
|
|
|
3706
|
-
# Output only. TODO b/341576760: Remove deprecated BV and Datasource field form
|
|
3707
|
-
# BP and BPA once UI removed all dependencies on them Output Only. Resource name
|
|
3708
|
-
# of data source which will be used as storage location for backups taken by
|
|
3709
|
-
# specified rule. Format : projects/`project`/locations/`location`/backupVaults/`
|
|
3710
|
-
# backupvault`/dataSources/`datasource`
|
|
3711
|
-
# Corresponds to the JSON property `dataSource`
|
|
3712
|
-
# @return [String]
|
|
3713
|
-
attr_accessor :data_source
|
|
3714
|
-
|
|
3715
3688
|
# The `Status` type defines a logical error model that is suitable for different
|
|
3716
3689
|
# programming environments, including REST APIs and RPC APIs. It is used by [
|
|
3717
3690
|
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
|
@@ -3744,7 +3717,6 @@ module Google
|
|
|
3744
3717
|
|
|
3745
3718
|
# Update properties of this object
|
|
3746
3719
|
def update!(**args)
|
|
3747
|
-
@data_source = args[:data_source] if args.key?(:data_source)
|
|
3748
3720
|
@last_backup_error = args[:last_backup_error] if args.key?(:last_backup_error)
|
|
3749
3721
|
@last_backup_state = args[:last_backup_state] if args.key?(:last_backup_state)
|
|
3750
3722
|
@last_successful_backup_consistency_time = args[:last_successful_backup_consistency_time] if args.key?(:last_successful_backup_consistency_time)
|
|
@@ -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.14.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20240808"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -850,8 +850,6 @@ module Google
|
|
|
850
850
|
# @private
|
|
851
851
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
852
852
|
property :backup_retention_days, as: 'backupRetentionDays'
|
|
853
|
-
property :backup_vault, as: 'backupVault'
|
|
854
|
-
property :backup_vault_service_account, as: 'backupVaultServiceAccount'
|
|
855
853
|
property :rule_id, as: 'ruleId'
|
|
856
854
|
property :standard_schedule, as: 'standardSchedule', class: Google::Apis::BackupdrV1::StandardSchedule, decorator: Google::Apis::BackupdrV1::StandardSchedule::Representation
|
|
857
855
|
|
|
@@ -1525,7 +1523,6 @@ module Google
|
|
|
1525
1523
|
class RuleConfigInfo
|
|
1526
1524
|
# @private
|
|
1527
1525
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1528
|
-
property :data_source, as: 'dataSource'
|
|
1529
1526
|
property :last_backup_error, as: 'lastBackupError', class: Google::Apis::BackupdrV1::Status, decorator: Google::Apis::BackupdrV1::Status::Representation
|
|
1530
1527
|
|
|
1531
1528
|
property :last_backup_state, as: 'lastBackupState'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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.14.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-08-
|
|
11
|
+
date: 2024-08-18 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-backupdr_v1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-backupdr_v1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-backupdr_v1/v0.14.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-backupdr_v1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|