google-apis-backupdr_v1 0.1.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9057c20fb8d5411edae6985394751c16d15957f4e9d9b2f1afb969cf95ab17d2
4
- data.tar.gz: f6a728b2f298f32a54a74f2ebc8535e1552d894725ccf5c9ffa157b9aac3421e
3
+ metadata.gz: 806483973d711d9274de7665216f9cf446706e067cd97ba427858d96884f4162
4
+ data.tar.gz: 0a28cc24b28766833847619e90ab06eecd99e50084ef967c1dbbf1df88d8b9a4
5
5
  SHA512:
6
- metadata.gz: dc5d85118a64a0a3343fda93b47869f31b28d09853f2beaa63094f099b5d4956874fc7d363187b38de9ff2b19b8f04bec93d56143c179c2a1b65640d35e8836c
7
- data.tar.gz: f5e4d4f54aa0818a50cf178ee71ac157c2d467c55b1f6b0cf67053ac904da1a71f948f6747c38bf1ea4791af0b4d8a3db780806f0e8b2d424540e8f026f4416c
6
+ metadata.gz: 573bc798959518b003da21cf437fcea700889d3fb24388de81104ac55b150848d4edee0d903996b35d1540613469f99ed76685fcad76cd4f0bd4927aabed5759
7
+ data.tar.gz: 2486e6e1f2698400a7b836b00726563a8691f0ed46d029e9db8f15ee1b9a9a66829fa121cc4e9d0dad93ac1daff82c4c65dd246bf95c873288c8f8071beb6760
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-backupdr_v1
2
2
 
3
+ ### v0.3.0 (2023-11-12)
4
+
5
+ * Regenerated from discovery document revision 20231029
6
+
7
+ ### v0.2.0 (2023-10-22)
8
+
9
+ * Regenerated from discovery document revision 20231008
10
+
3
11
  ### v0.1.0 (2023-10-01)
4
12
 
5
13
  * Regenerated from discovery document revision 20230919
data/OVERVIEW.md CHANGED
@@ -79,7 +79,7 @@ Gem names for modern clients are often of the form `google-cloud-<service_name>`
79
79
 
80
80
  **For most users, we recommend the modern client, if one is available.** Compared with simple clients, modern clients are generally much easier to use and more Ruby-like, support more advanced features such as streaming and long-running operations, and often provide much better performance. You may consider using a simple client instead, if a modern client is not yet available for the service you want to use, or if you are not able to use gRPC on your infrastructure.
81
81
 
82
- The [product documentation](https://cloud.google.com/) may provide guidance regarding the preferred client library to use.
82
+ The [product documentation](https://cloud.google.com/backup-disaster-recovery) may provide guidance regarding the preferred client library to use.
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
@@ -452,6 +452,16 @@ module Google
452
452
  # @return [String]
453
453
  attr_accessor :update_time
454
454
 
455
+ # ManagementURI depending on the Workforce Identity i.e. either 1p or 3p.
456
+ # Corresponds to the JSON property `workforceIdentityBasedManagementUri`
457
+ # @return [Google::Apis::BackupdrV1::WorkforceIdentityBasedManagementUri]
458
+ attr_accessor :workforce_identity_based_management_uri
459
+
460
+ # OAuth Client ID depending on the Workforce Identity i.e. either 1p or 3p,
461
+ # Corresponds to the JSON property `workforceIdentityBasedOauth2ClientId`
462
+ # @return [Google::Apis::BackupdrV1::WorkforceIdentityBasedOAuth2ClientId]
463
+ attr_accessor :workforce_identity_based_oauth2_client_id
464
+
455
465
  def initialize(**args)
456
466
  update!(**args)
457
467
  end
@@ -469,6 +479,8 @@ module Google
469
479
  @state = args[:state] if args.key?(:state)
470
480
  @type = args[:type] if args.key?(:type)
471
481
  @update_time = args[:update_time] if args.key?(:update_time)
482
+ @workforce_identity_based_management_uri = args[:workforce_identity_based_management_uri] if args.key?(:workforce_identity_based_management_uri)
483
+ @workforce_identity_based_oauth2_client_id = args[:workforce_identity_based_oauth2_client_id] if args.key?(:workforce_identity_based_oauth2_client_id)
472
484
  end
473
485
  end
474
486
 
@@ -878,6 +890,56 @@ module Google
878
890
  @permissions = args[:permissions] if args.key?(:permissions)
879
891
  end
880
892
  end
893
+
894
+ # ManagementURI depending on the Workforce Identity i.e. either 1p or 3p.
895
+ class WorkforceIdentityBasedManagementUri
896
+ include Google::Apis::Core::Hashable
897
+
898
+ # Output only. First party Management URI for Google Identities.
899
+ # Corresponds to the JSON property `firstPartyManagementUri`
900
+ # @return [String]
901
+ attr_accessor :first_party_management_uri
902
+
903
+ # Output only. Third party Management URI for External Identity Providers.
904
+ # Corresponds to the JSON property `thirdPartyManagementUri`
905
+ # @return [String]
906
+ attr_accessor :third_party_management_uri
907
+
908
+ def initialize(**args)
909
+ update!(**args)
910
+ end
911
+
912
+ # Update properties of this object
913
+ def update!(**args)
914
+ @first_party_management_uri = args[:first_party_management_uri] if args.key?(:first_party_management_uri)
915
+ @third_party_management_uri = args[:third_party_management_uri] if args.key?(:third_party_management_uri)
916
+ end
917
+ end
918
+
919
+ # OAuth Client ID depending on the Workforce Identity i.e. either 1p or 3p,
920
+ class WorkforceIdentityBasedOAuth2ClientId
921
+ include Google::Apis::Core::Hashable
922
+
923
+ # Output only. First party OAuth Client ID for Google Identities.
924
+ # Corresponds to the JSON property `firstPartyOauth2ClientId`
925
+ # @return [String]
926
+ attr_accessor :first_party_oauth2_client_id
927
+
928
+ # Output only. Third party OAuth Client ID for External Identity Providers.
929
+ # Corresponds to the JSON property `thirdPartyOauth2ClientId`
930
+ # @return [String]
931
+ attr_accessor :third_party_oauth2_client_id
932
+
933
+ def initialize(**args)
934
+ update!(**args)
935
+ end
936
+
937
+ # Update properties of this object
938
+ def update!(**args)
939
+ @first_party_oauth2_client_id = args[:first_party_oauth2_client_id] if args.key?(:first_party_oauth2_client_id)
940
+ @third_party_oauth2_client_id = args[:third_party_oauth2_client_id] if args.key?(:third_party_oauth2_client_id)
941
+ end
942
+ end
881
943
  end
882
944
  end
883
945
  end
@@ -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.1.0"
19
+ GEM_VERSION = "0.3.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230919"
25
+ REVISION = "20231029"
26
26
  end
27
27
  end
28
28
  end
@@ -142,6 +142,18 @@ module Google
142
142
  include Google::Apis::Core::JsonObjectSupport
143
143
  end
144
144
 
145
+ class WorkforceIdentityBasedManagementUri
146
+ class Representation < Google::Apis::Core::JsonRepresentation; end
147
+
148
+ include Google::Apis::Core::JsonObjectSupport
149
+ end
150
+
151
+ class WorkforceIdentityBasedOAuth2ClientId
152
+ class Representation < Google::Apis::Core::JsonRepresentation; end
153
+
154
+ include Google::Apis::Core::JsonObjectSupport
155
+ end
156
+
145
157
  class AuditConfig
146
158
  # @private
147
159
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -246,6 +258,10 @@ module Google
246
258
  property :state, as: 'state'
247
259
  property :type, as: 'type'
248
260
  property :update_time, as: 'updateTime'
261
+ property :workforce_identity_based_management_uri, as: 'workforceIdentityBasedManagementUri', class: Google::Apis::BackupdrV1::WorkforceIdentityBasedManagementUri, decorator: Google::Apis::BackupdrV1::WorkforceIdentityBasedManagementUri::Representation
262
+
263
+ property :workforce_identity_based_oauth2_client_id, as: 'workforceIdentityBasedOauth2ClientId', class: Google::Apis::BackupdrV1::WorkforceIdentityBasedOAuth2ClientId, decorator: Google::Apis::BackupdrV1::WorkforceIdentityBasedOAuth2ClientId::Representation
264
+
249
265
  end
250
266
  end
251
267
 
@@ -334,6 +350,22 @@ module Google
334
350
  collection :permissions, as: 'permissions'
335
351
  end
336
352
  end
353
+
354
+ class WorkforceIdentityBasedManagementUri
355
+ # @private
356
+ class Representation < Google::Apis::Core::JsonRepresentation
357
+ property :first_party_management_uri, as: 'firstPartyManagementUri'
358
+ property :third_party_management_uri, as: 'thirdPartyManagementUri'
359
+ end
360
+ end
361
+
362
+ class WorkforceIdentityBasedOAuth2ClientId
363
+ # @private
364
+ class Representation < Google::Apis::Core::JsonRepresentation
365
+ property :first_party_oauth2_client_id, as: 'firstPartyOauth2ClientId'
366
+ property :third_party_oauth2_client_id, as: 'thirdPartyOauth2ClientId'
367
+ end
368
+ end
337
369
  end
338
370
  end
339
371
  end
@@ -30,7 +30,7 @@ module Google
30
30
  # Backupdr = Google::Apis::BackupdrV1 # Alias the module
31
31
  # service = Backupdr::BackupdrService.new
32
32
  #
33
- # @see https://cloud.google.com/
33
+ # @see https://cloud.google.com/backup-disaster-recovery
34
34
  class BackupdrService < Google::Apis::Core::BaseService
35
35
  # @return [String]
36
36
  # API key. Your API key identifies your project and provides you with API access,
@@ -23,7 +23,7 @@ module Google
23
23
  #
24
24
  #
25
25
  #
26
- # @see https://cloud.google.com/
26
+ # @see https://cloud.google.com/backup-disaster-recovery
27
27
  module BackupdrV1
28
28
  # Version of the Backup and DR Service API this client connects to.
29
29
  # This is NOT the gem version.
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.1.0
4
+ version: 0.3.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: 2023-10-01 00:00:00.000000000 Z
11
+ date: 2023-11-12 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.1.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-backupdr_v1/v0.3.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: []