google-apis-managedidentities_v1alpha1 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: 412ab3dba3c575114e3e16dd1f8fcd03309e9e48abd7c479b0fa8223388cbd9d
4
- data.tar.gz: 8c09aa7ae52e47f2a950eec5058c9a5d8d1f3989ac5eef891adb378591db24b3
3
+ metadata.gz: cafcbb29f59bc814b0d1ee3a6cd7599ec03a64ba18f933ca5b46df2b5f7b3e23
4
+ data.tar.gz: 74c5bd120ff4e584d43be750cb735a2c1ddd50b91c0facfe0351dc175b0e4a9d
5
5
  SHA512:
6
- metadata.gz: 064bfb6d71f7e717056ca604041134718d9e9b186766654deffc4dcd388ce9b7647eeb74a684e7d10365d3e0e0adb8554b453d08b2adeac6c2ca19d65e0c5124
7
- data.tar.gz: 4abed29ae8e3e4adaa637f2b463f6f36fd90ac39830a40c731254e724e7b0fe8fb65a3f585223960b0007c2357705c7bfba28c4c123342457b4fd69d374d7969
6
+ metadata.gz: babd0951e70a6b2c30162149d229a08e859fbfad2677617812756f76ce4b3851d98044a1d67713f55149cc99895cceb75eee1735886cf4f3602bc687ba334ecc
7
+ data.tar.gz: 3e6285e9b87950adbf6a467fd979ad063d873c17c9850ba4f76ae34c4bf5b8028b62d3a4cc7cc7eb590376d42cb189026e4304e7d60c0a0c8d3d4c8fa5a75d2f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-managedidentities_v1alpha1
2
2
 
3
+ ### v0.14.0 (2021-10-10)
4
+
5
+ * Regenerated from discovery document revision 20211004
6
+
3
7
  ### v0.13.0 (2021-08-28)
4
8
 
5
9
  * Regenerated from discovery document revision 20210819
@@ -46,6 +46,63 @@ module Google
46
46
  end
47
47
  end
48
48
 
49
+ # Represents a Managed Microsoft Identities backup.
50
+ class Backup
51
+ include Google::Apis::Core::Hashable
52
+
53
+ # Output only. The time the backups was created.
54
+ # Corresponds to the JSON property `createTime`
55
+ # @return [String]
56
+ attr_accessor :create_time
57
+
58
+ # Optional. Resource labels to represent user provided metadata.
59
+ # Corresponds to the JSON property `labels`
60
+ # @return [Hash<String,String>]
61
+ attr_accessor :labels
62
+
63
+ # Output only. The unique name of the Backup in the form of projects/`project_id`
64
+ # /locations/global/domains/`domain_name`/backups/`name`
65
+ # Corresponds to the JSON property `name`
66
+ # @return [String]
67
+ attr_accessor :name
68
+
69
+ # Output only. The current state of the backup.
70
+ # Corresponds to the JSON property `state`
71
+ # @return [String]
72
+ attr_accessor :state
73
+
74
+ # Output only. Additional information about the current status of this backup,
75
+ # if available.
76
+ # Corresponds to the JSON property `statusMessage`
77
+ # @return [String]
78
+ attr_accessor :status_message
79
+
80
+ # Output only. Indicates whether it’s an on-demand backup or scheduled.
81
+ # Corresponds to the JSON property `type`
82
+ # @return [String]
83
+ attr_accessor :type
84
+
85
+ # Output only. Last update time.
86
+ # Corresponds to the JSON property `updateTime`
87
+ # @return [String]
88
+ attr_accessor :update_time
89
+
90
+ def initialize(**args)
91
+ update!(**args)
92
+ end
93
+
94
+ # Update properties of this object
95
+ def update!(**args)
96
+ @create_time = args[:create_time] if args.key?(:create_time)
97
+ @labels = args[:labels] if args.key?(:labels)
98
+ @name = args[:name] if args.key?(:name)
99
+ @state = args[:state] if args.key?(:state)
100
+ @status_message = args[:status_message] if args.key?(:status_message)
101
+ @type = args[:type] if args.key?(:type)
102
+ @update_time = args[:update_time] if args.key?(:update_time)
103
+ end
104
+ end
105
+
49
106
  # Associates `members` with a `role`.
50
107
  class Binding
51
108
  include Google::Apis::Core::Hashable
@@ -1101,6 +1158,38 @@ module Google
1101
1158
  end
1102
1159
  end
1103
1160
 
1161
+ # ListBackupsResponse is the response message for ListBackups method.
1162
+ class ListBackupsResponse
1163
+ include Google::Apis::Core::Hashable
1164
+
1165
+ # A list of Cloud AD backups in the domain.
1166
+ # Corresponds to the JSON property `backups`
1167
+ # @return [Array<Google::Apis::ManagedidentitiesV1alpha1::Backup>]
1168
+ attr_accessor :backups
1169
+
1170
+ # Token to retrieve the next page of results, or empty if there are no more
1171
+ # results in the list.
1172
+ # Corresponds to the JSON property `nextPageToken`
1173
+ # @return [String]
1174
+ attr_accessor :next_page_token
1175
+
1176
+ # Locations that could not be reached.
1177
+ # Corresponds to the JSON property `unreachable`
1178
+ # @return [Array<String>]
1179
+ attr_accessor :unreachable
1180
+
1181
+ def initialize(**args)
1182
+ update!(**args)
1183
+ end
1184
+
1185
+ # Update properties of this object
1186
+ def update!(**args)
1187
+ @backups = args[:backups] if args.key?(:backups)
1188
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1189
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
1190
+ end
1191
+ end
1192
+
1104
1193
  #
1105
1194
  class ListDomainsResponse
1106
1195
  include Google::Apis::Core::Hashable
@@ -1604,7 +1693,12 @@ module Google
1604
1693
 
1605
1694
  # Associates a list of `members` to a `role`. Optionally, may specify a `
1606
1695
  # condition` that determines how and when the `bindings` are applied. Each of
1607
- # the `bindings` must contain at least one member.
1696
+ # the `bindings` must contain at least one member. The `bindings` in a `Policy`
1697
+ # can refer to up to 1,500 members; up to 250 of these members can be Google
1698
+ # groups. Each occurrence of a member counts towards these limits. For example,
1699
+ # if the `bindings` grant 50 different roles to `user:alice@example.com`, and
1700
+ # not to any other member, then you can add another 1,450 members to the `
1701
+ # bindings` in the `Policy`.
1608
1702
  # Corresponds to the JSON property `bindings`
1609
1703
  # @return [Array<Google::Apis::ManagedidentitiesV1alpha1::Binding>]
1610
1704
  attr_accessor :bindings
@@ -1712,6 +1806,25 @@ module Google
1712
1806
  end
1713
1807
  end
1714
1808
 
1809
+ # RestoreDomainRequest is the request received by RestoreDomain rpc
1810
+ class RestoreDomainRequest
1811
+ include Google::Apis::Core::Hashable
1812
+
1813
+ # Required. ID of the backup to be restored
1814
+ # Corresponds to the JSON property `backupId`
1815
+ # @return [String]
1816
+ attr_accessor :backup_id
1817
+
1818
+ def initialize(**args)
1819
+ update!(**args)
1820
+ end
1821
+
1822
+ # Update properties of this object
1823
+ def update!(**args)
1824
+ @backup_id = args[:backup_id] if args.key?(:backup_id)
1825
+ end
1826
+ end
1827
+
1715
1828
  # Represents the SQL instance integrated with AD.
1716
1829
  class SqlIntegration
1717
1830
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ManagedidentitiesV1alpha1
18
18
  # Version of the google-apis-managedidentities_v1alpha1 gem
19
- GEM_VERSION = "0.13.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.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210819"
25
+ REVISION = "20211004"
26
26
  end
27
27
  end
28
28
  end
@@ -28,6 +28,12 @@ module Google
28
28
  include Google::Apis::Core::JsonObjectSupport
29
29
  end
30
30
 
31
+ class Backup
32
+ class Representation < Google::Apis::Core::JsonRepresentation; end
33
+
34
+ include Google::Apis::Core::JsonObjectSupport
35
+ end
36
+
31
37
  class Binding
32
38
  class Representation < Google::Apis::Core::JsonRepresentation; end
33
39
 
@@ -160,6 +166,12 @@ module Google
160
166
  include Google::Apis::Core::JsonObjectSupport
161
167
  end
162
168
 
169
+ class ListBackupsResponse
170
+ class Representation < Google::Apis::Core::JsonRepresentation; end
171
+
172
+ include Google::Apis::Core::JsonObjectSupport
173
+ end
174
+
163
175
  class ListDomainsResponse
164
176
  class Representation < Google::Apis::Core::JsonRepresentation; end
165
177
 
@@ -250,6 +262,12 @@ module Google
250
262
  include Google::Apis::Core::JsonObjectSupport
251
263
  end
252
264
 
265
+ class RestoreDomainRequest
266
+ class Representation < Google::Apis::Core::JsonRepresentation; end
267
+
268
+ include Google::Apis::Core::JsonObjectSupport
269
+ end
270
+
253
271
  class SqlIntegration
254
272
  class Representation < Google::Apis::Core::JsonRepresentation; end
255
273
 
@@ -324,6 +342,19 @@ module Google
324
342
  end
325
343
  end
326
344
 
345
+ class Backup
346
+ # @private
347
+ class Representation < Google::Apis::Core::JsonRepresentation
348
+ property :create_time, as: 'createTime'
349
+ hash :labels, as: 'labels'
350
+ property :name, as: 'name'
351
+ property :state, as: 'state'
352
+ property :status_message, as: 'statusMessage'
353
+ property :type, as: 'type'
354
+ property :update_time, as: 'updateTime'
355
+ end
356
+ end
357
+
327
358
  class Binding
328
359
  # @private
329
360
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -566,6 +597,16 @@ module Google
566
597
  end
567
598
  end
568
599
 
600
+ class ListBackupsResponse
601
+ # @private
602
+ class Representation < Google::Apis::Core::JsonRepresentation
603
+ collection :backups, as: 'backups', class: Google::Apis::ManagedidentitiesV1alpha1::Backup, decorator: Google::Apis::ManagedidentitiesV1alpha1::Backup::Representation
604
+
605
+ property :next_page_token, as: 'nextPageToken'
606
+ collection :unreachable, as: 'unreachable'
607
+ end
608
+ end
609
+
569
610
  class ListDomainsResponse
570
611
  # @private
571
612
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -719,6 +760,13 @@ module Google
719
760
  end
720
761
  end
721
762
 
763
+ class RestoreDomainRequest
764
+ # @private
765
+ class Representation < Google::Apis::Core::JsonRepresentation
766
+ property :backup_id, as: 'backupId'
767
+ end
768
+ end
769
+
722
770
  class SqlIntegration
723
771
  # @private
724
772
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -525,6 +525,39 @@ module Google
525
525
  execute_or_queue_command(command, &block)
526
526
  end
527
527
 
528
+ # RestoreDomain restores domain backup mentioned in the RestoreDomainRequest
529
+ # @param [String] name
530
+ # Required. resource name for the domain to which the backup belongs
531
+ # @param [Google::Apis::ManagedidentitiesV1alpha1::RestoreDomainRequest] restore_domain_request_object
532
+ # @param [String] fields
533
+ # Selector specifying which fields to include in a partial response.
534
+ # @param [String] quota_user
535
+ # Available to use for quota purposes for server-side applications. Can be any
536
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
537
+ # @param [Google::Apis::RequestOptions] options
538
+ # Request-specific options
539
+ #
540
+ # @yield [result, err] Result & error if block supplied
541
+ # @yieldparam result [Google::Apis::ManagedidentitiesV1alpha1::Operation] parsed result object
542
+ # @yieldparam err [StandardError] error object if request failed
543
+ #
544
+ # @return [Google::Apis::ManagedidentitiesV1alpha1::Operation]
545
+ #
546
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
547
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
548
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
549
+ def restore_domain(name, restore_domain_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
550
+ command = make_simple_command(:post, 'v1alpha1/{+name}:restore', options)
551
+ command.request_representation = Google::Apis::ManagedidentitiesV1alpha1::RestoreDomainRequest::Representation
552
+ command.request_object = restore_domain_request_object
553
+ command.response_representation = Google::Apis::ManagedidentitiesV1alpha1::Operation::Representation
554
+ command.response_class = Google::Apis::ManagedidentitiesV1alpha1::Operation
555
+ command.params['name'] = name unless name.nil?
556
+ command.query['fields'] = fields unless fields.nil?
557
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
558
+ execute_or_queue_command(command, &block)
559
+ end
560
+
528
561
  # Sets the access control policy on the specified resource. Replaces any
529
562
  # existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
530
563
  # PERMISSION_DENIED` errors.
@@ -672,6 +705,108 @@ module Google
672
705
  execute_or_queue_command(command, &block)
673
706
  end
674
707
 
708
+ # Creates a Backup for a domain.
709
+ # @param [String] parent
710
+ # Required. The domain resource name using the form: `projects/`project_id`/
711
+ # locations/global/domains/`domain_name``
712
+ # @param [Google::Apis::ManagedidentitiesV1alpha1::Backup] backup_object
713
+ # @param [String] backup_id
714
+ # Required. Backup Id, unique name to identify the backups with the following
715
+ # restrictions: * Must be lowercase letters, numbers, and hyphens * Must start
716
+ # with a letter. * Must contain between 1-63 characters. * Must end with a
717
+ # number or a letter. * Must be unique within the domain.
718
+ # @param [String] fields
719
+ # Selector specifying which fields to include in a partial response.
720
+ # @param [String] quota_user
721
+ # Available to use for quota purposes for server-side applications. Can be any
722
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
723
+ # @param [Google::Apis::RequestOptions] options
724
+ # Request-specific options
725
+ #
726
+ # @yield [result, err] Result & error if block supplied
727
+ # @yieldparam result [Google::Apis::ManagedidentitiesV1alpha1::Operation] parsed result object
728
+ # @yieldparam err [StandardError] error object if request failed
729
+ #
730
+ # @return [Google::Apis::ManagedidentitiesV1alpha1::Operation]
731
+ #
732
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
733
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
734
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
735
+ def create_project_location_global_domain_backup(parent, backup_object = nil, backup_id: nil, fields: nil, quota_user: nil, options: nil, &block)
736
+ command = make_simple_command(:post, 'v1alpha1/{+parent}/backups', options)
737
+ command.request_representation = Google::Apis::ManagedidentitiesV1alpha1::Backup::Representation
738
+ command.request_object = backup_object
739
+ command.response_representation = Google::Apis::ManagedidentitiesV1alpha1::Operation::Representation
740
+ command.response_class = Google::Apis::ManagedidentitiesV1alpha1::Operation
741
+ command.params['parent'] = parent unless parent.nil?
742
+ command.query['backupId'] = backup_id unless backup_id.nil?
743
+ command.query['fields'] = fields unless fields.nil?
744
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
745
+ execute_or_queue_command(command, &block)
746
+ end
747
+
748
+ # Deletes identified Backup.
749
+ # @param [String] name
750
+ # Required. The backup resource name using the form: `projects/`project_id`/
751
+ # locations/global/domains/`domain_name`/backups/`backup_id``
752
+ # @param [String] fields
753
+ # Selector specifying which fields to include in a partial response.
754
+ # @param [String] quota_user
755
+ # Available to use for quota purposes for server-side applications. Can be any
756
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
757
+ # @param [Google::Apis::RequestOptions] options
758
+ # Request-specific options
759
+ #
760
+ # @yield [result, err] Result & error if block supplied
761
+ # @yieldparam result [Google::Apis::ManagedidentitiesV1alpha1::Operation] parsed result object
762
+ # @yieldparam err [StandardError] error object if request failed
763
+ #
764
+ # @return [Google::Apis::ManagedidentitiesV1alpha1::Operation]
765
+ #
766
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
767
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
768
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
769
+ def delete_project_location_global_domain_backup(name, fields: nil, quota_user: nil, options: nil, &block)
770
+ command = make_simple_command(:delete, 'v1alpha1/{+name}', options)
771
+ command.response_representation = Google::Apis::ManagedidentitiesV1alpha1::Operation::Representation
772
+ command.response_class = Google::Apis::ManagedidentitiesV1alpha1::Operation
773
+ command.params['name'] = name unless name.nil?
774
+ command.query['fields'] = fields unless fields.nil?
775
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
776
+ execute_or_queue_command(command, &block)
777
+ end
778
+
779
+ # Gets details of a single Backup.
780
+ # @param [String] name
781
+ # Required. The backup resource name using the form: `projects/`project_id`/
782
+ # locations/global/domains/`domain_name`/backups/`backup_id``
783
+ # @param [String] fields
784
+ # Selector specifying which fields to include in a partial response.
785
+ # @param [String] quota_user
786
+ # Available to use for quota purposes for server-side applications. Can be any
787
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
788
+ # @param [Google::Apis::RequestOptions] options
789
+ # Request-specific options
790
+ #
791
+ # @yield [result, err] Result & error if block supplied
792
+ # @yieldparam result [Google::Apis::ManagedidentitiesV1alpha1::Backup] parsed result object
793
+ # @yieldparam err [StandardError] error object if request failed
794
+ #
795
+ # @return [Google::Apis::ManagedidentitiesV1alpha1::Backup]
796
+ #
797
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
798
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
799
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
800
+ def get_project_location_global_domain_backup(name, fields: nil, quota_user: nil, options: nil, &block)
801
+ command = make_simple_command(:get, 'v1alpha1/{+name}', options)
802
+ command.response_representation = Google::Apis::ManagedidentitiesV1alpha1::Backup::Representation
803
+ command.response_class = Google::Apis::ManagedidentitiesV1alpha1::Backup
804
+ command.params['name'] = name unless name.nil?
805
+ command.query['fields'] = fields unless fields.nil?
806
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
807
+ execute_or_queue_command(command, &block)
808
+ end
809
+
675
810
  # Gets the access control policy for a resource. Returns an empty policy if the
676
811
  # resource exists and does not have a policy set.
677
812
  # @param [String] resource
@@ -713,6 +848,95 @@ module Google
713
848
  execute_or_queue_command(command, &block)
714
849
  end
715
850
 
851
+ # Lists Backup in a given project.
852
+ # @param [String] parent
853
+ # Required. The domain resource name using the form: `projects/`project_id`/
854
+ # locations/global/domains/`domain_name``
855
+ # @param [String] filter
856
+ # Optional. Filter specifying constraints of a list operation. For example, `
857
+ # backup.location ="us-west1-a"`.
858
+ # @param [String] order_by
859
+ # Optional. Specifies the ordering of results following syntax at https://cloud.
860
+ # google.com/apis/design/design_patterns#sorting_order.
861
+ # @param [Fixnum] page_size
862
+ # Optional. The maximum number of items to return. If not specified, a default
863
+ # value of 1000 will be used by the service. Regardless of the page_size value,
864
+ # the response may include a partial list and a caller should only rely on
865
+ # response's next_page_token to determine if there are more instances left to be
866
+ # queried.
867
+ # @param [String] page_token
868
+ # Optional. The next_page_token value returned from a previous List request, if
869
+ # any.
870
+ # @param [String] fields
871
+ # Selector specifying which fields to include in a partial response.
872
+ # @param [String] quota_user
873
+ # Available to use for quota purposes for server-side applications. Can be any
874
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
875
+ # @param [Google::Apis::RequestOptions] options
876
+ # Request-specific options
877
+ #
878
+ # @yield [result, err] Result & error if block supplied
879
+ # @yieldparam result [Google::Apis::ManagedidentitiesV1alpha1::ListBackupsResponse] parsed result object
880
+ # @yieldparam err [StandardError] error object if request failed
881
+ #
882
+ # @return [Google::Apis::ManagedidentitiesV1alpha1::ListBackupsResponse]
883
+ #
884
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
885
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
886
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
887
+ def list_project_location_global_domain_backups(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
888
+ command = make_simple_command(:get, 'v1alpha1/{+parent}/backups', options)
889
+ command.response_representation = Google::Apis::ManagedidentitiesV1alpha1::ListBackupsResponse::Representation
890
+ command.response_class = Google::Apis::ManagedidentitiesV1alpha1::ListBackupsResponse
891
+ command.params['parent'] = parent unless parent.nil?
892
+ command.query['filter'] = filter unless filter.nil?
893
+ command.query['orderBy'] = order_by unless order_by.nil?
894
+ command.query['pageSize'] = page_size unless page_size.nil?
895
+ command.query['pageToken'] = page_token unless page_token.nil?
896
+ command.query['fields'] = fields unless fields.nil?
897
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
898
+ execute_or_queue_command(command, &block)
899
+ end
900
+
901
+ # Updates the labels for specified Backup.
902
+ # @param [String] name
903
+ # Output only. The unique name of the Backup in the form of projects/`project_id`
904
+ # /locations/global/domains/`domain_name`/backups/`name`
905
+ # @param [Google::Apis::ManagedidentitiesV1alpha1::Backup] backup_object
906
+ # @param [String] update_mask
907
+ # Required. Mask of fields to update. At least one path must be supplied in this
908
+ # field. The elements of the repeated paths field may only include these fields
909
+ # from Backup: * `labels`
910
+ # @param [String] fields
911
+ # Selector specifying which fields to include in a partial response.
912
+ # @param [String] quota_user
913
+ # Available to use for quota purposes for server-side applications. Can be any
914
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
915
+ # @param [Google::Apis::RequestOptions] options
916
+ # Request-specific options
917
+ #
918
+ # @yield [result, err] Result & error if block supplied
919
+ # @yieldparam result [Google::Apis::ManagedidentitiesV1alpha1::Operation] parsed result object
920
+ # @yieldparam err [StandardError] error object if request failed
921
+ #
922
+ # @return [Google::Apis::ManagedidentitiesV1alpha1::Operation]
923
+ #
924
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
925
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
926
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
927
+ def patch_project_location_global_domain_backup(name, backup_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
928
+ command = make_simple_command(:patch, 'v1alpha1/{+name}', options)
929
+ command.request_representation = Google::Apis::ManagedidentitiesV1alpha1::Backup::Representation
930
+ command.request_object = backup_object
931
+ command.response_representation = Google::Apis::ManagedidentitiesV1alpha1::Operation::Representation
932
+ command.response_class = Google::Apis::ManagedidentitiesV1alpha1::Operation
933
+ command.params['name'] = name unless name.nil?
934
+ command.query['updateMask'] = update_mask unless update_mask.nil?
935
+ command.query['fields'] = fields unless fields.nil?
936
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
937
+ execute_or_queue_command(command, &block)
938
+ end
939
+
716
940
  # Sets the access control policy on the specified resource. Replaces any
717
941
  # existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
718
942
  # PERMISSION_DENIED` errors.
@@ -1089,7 +1313,7 @@ module Google
1089
1313
  # Gets details of a single Peering.
1090
1314
  # @param [String] name
1091
1315
  # Required. Peering resource name using the form: `projects/`project_id`/
1092
- # locations/global/domains/`peering_id``
1316
+ # locations/global/peerings/`peering_id``
1093
1317
  # @param [String] fields
1094
1318
  # Selector specifying which fields to include in a partial response.
1095
1319
  # @param [String] quota_user
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-managedidentities_v1alpha1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.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: 2021-08-30 00:00:00.000000000 Z
11
+ date: 2021-10-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -59,7 +59,7 @@ licenses:
59
59
  metadata:
60
60
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
61
61
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-managedidentities_v1alpha1/CHANGELOG.md
62
- documentation_uri: https://googleapis.dev/ruby/google-apis-managedidentities_v1alpha1/v0.13.0
62
+ documentation_uri: https://googleapis.dev/ruby/google-apis-managedidentities_v1alpha1/v0.14.0
63
63
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-managedidentities_v1alpha1
64
64
  post_install_message:
65
65
  rdoc_options: []