google-apis-managedidentities_v1beta1 0.11.0 → 0.15.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: 217317c2f313b99ea29915f3fafeb953c1c95211a5af18aa50530fe2209611a2
4
- data.tar.gz: 7f06d3bb804316de3b5034d72dfb7fffa64a7fc2cb5ff24d0e02225c3ed024ee
3
+ metadata.gz: 4594f0c289ed1b12141634f3fa0a872893287635a8cf6bf6e50ad3f92055900b
4
+ data.tar.gz: 3dfb66abc247a2de2ba770cbe61c11b53ce181c5cc90ca2f8e31512f93450842
5
5
  SHA512:
6
- metadata.gz: e9c9154d54cfed5e4e4ec79a3b4ec3a9436381b041e02faea1d155b4b9ff43c58ea9c4cf19bd78e5dd53944c26d8720bfc1e9aaf2575720d3d0be4a52cf329e3
7
- data.tar.gz: e80d23255d8c0b1ffa45acfb768a29f52aab3396faeb896d7eb3d1d20758e8c6822d89cceb6b2a5e7850462aedf284b361041e17b3521751bd67036fc988f47c
6
+ metadata.gz: 3307a6c159c3a0ad25fc509e4be9e141b26ee33fe2acb2f23388c64630e08d59f6f7daea4395d0cc9fcd05227fb87b56537bdffa036cd008004c7f9997d8afc7
7
+ data.tar.gz: 0c459d76bfa47a5654e6c1bdc6e7cbf11904d97b89b7ce4013413db61567b9af9ab3cb71f3331c9e0c0685182548e706124f90035461c9ae20f7e50355a7fca9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Release history for google-apis-managedidentities_v1beta1
2
2
 
3
+ ### v0.15.0 (2021-10-21)
4
+
5
+ * Unspecified changes
6
+
7
+ ### v0.14.0 (2021-10-10)
8
+
9
+ * Regenerated from discovery document revision 20211004
10
+
11
+ ### v0.13.0 (2021-08-28)
12
+
13
+ * Regenerated from discovery document revision 20210819
14
+
15
+ ### v0.12.0 (2021-07-09)
16
+
17
+ * Regenerated from discovery document revision 20210701
18
+
3
19
  ### v0.11.0 (2021-06-29)
4
20
 
5
21
  * Regenerated using generator version 0.4.0
data/OVERVIEW.md CHANGED
@@ -60,8 +60,8 @@ See the class reference docs for information on the methods you can call from a
60
60
 
61
61
  More detailed descriptions of the Google simple REST clients are available in two documents.
62
62
 
63
- * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
- * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
63
+ * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
+ * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
65
65
 
66
66
  (Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Managedidentities service in particular.)
67
67
 
@@ -42,6 +42,63 @@ module Google
42
42
  end
43
43
  end
44
44
 
45
+ # Represents a Managed Microsoft Identities backup.
46
+ class Backup
47
+ include Google::Apis::Core::Hashable
48
+
49
+ # Output only. The time the backups was created.
50
+ # Corresponds to the JSON property `createTime`
51
+ # @return [String]
52
+ attr_accessor :create_time
53
+
54
+ # Optional. Resource labels to represent user provided metadata.
55
+ # Corresponds to the JSON property `labels`
56
+ # @return [Hash<String,String>]
57
+ attr_accessor :labels
58
+
59
+ # Output only. The unique name of the Backup in the form of projects/`project_id`
60
+ # /locations/global/domains/`domain_name`/backups/`name`
61
+ # Corresponds to the JSON property `name`
62
+ # @return [String]
63
+ attr_accessor :name
64
+
65
+ # Output only. The current state of the backup.
66
+ # Corresponds to the JSON property `state`
67
+ # @return [String]
68
+ attr_accessor :state
69
+
70
+ # Output only. Additional information about the current status of this backup,
71
+ # if available.
72
+ # Corresponds to the JSON property `statusMessage`
73
+ # @return [String]
74
+ attr_accessor :status_message
75
+
76
+ # Output only. Indicates whether it’s an on-demand backup or scheduled.
77
+ # Corresponds to the JSON property `type`
78
+ # @return [String]
79
+ attr_accessor :type
80
+
81
+ # Output only. Last update time.
82
+ # Corresponds to the JSON property `updateTime`
83
+ # @return [String]
84
+ attr_accessor :update_time
85
+
86
+ def initialize(**args)
87
+ update!(**args)
88
+ end
89
+
90
+ # Update properties of this object
91
+ def update!(**args)
92
+ @create_time = args[:create_time] if args.key?(:create_time)
93
+ @labels = args[:labels] if args.key?(:labels)
94
+ @name = args[:name] if args.key?(:name)
95
+ @state = args[:state] if args.key?(:state)
96
+ @status_message = args[:status_message] if args.key?(:status_message)
97
+ @type = args[:type] if args.key?(:type)
98
+ @update_time = args[:update_time] if args.key?(:update_time)
99
+ end
100
+ end
101
+
45
102
  # Associates `members` with a `role`.
46
103
  class Binding
47
104
  include Google::Apis::Core::Hashable
@@ -869,14 +926,6 @@ module Google
869
926
  class GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata
870
927
  include Google::Apis::Core::Hashable
871
928
 
872
- # By default node is eligible if instance is eligible. But individual node might
873
- # be excluded from SLO by adding entry here. For semantic see SloMetadata.
874
- # exclusions. If both instance and node level exclusions are present for time
875
- # period, the node level's reason will be reported by Eligibility Exporter.
876
- # Corresponds to the JSON property `exclusions`
877
- # @return [Array<Google::Apis::ManagedidentitiesV1beta1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion>]
878
- attr_accessor :exclusions
879
-
880
929
  # The location of the node, if different from instance location.
881
930
  # Corresponds to the JSON property `location`
882
931
  # @return [String]
@@ -898,7 +947,6 @@ module Google
898
947
 
899
948
  # Update properties of this object
900
949
  def update!(**args)
901
- @exclusions = args[:exclusions] if args.key?(:exclusions)
902
950
  @location = args[:location] if args.key?(:location)
903
951
  @node_id = args[:node_id] if args.key?(:node_id)
904
952
  @per_sli_eligibility = args[:per_sli_eligibility] if args.key?(:per_sli_eligibility)
@@ -993,71 +1041,11 @@ module Google
993
1041
  end
994
1042
  end
995
1043
 
996
- # SloExclusion represents an exclusion in SLI calculation applies to all SLOs.
997
- class GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion
998
- include Google::Apis::Core::Hashable
999
-
1000
- # Exclusion duration. No restrictions on the possible values. When an ongoing
1001
- # operation is taking longer than initially expected, an existing entry in the
1002
- # exclusion list can be updated by extending the duration. This is supported by
1003
- # the subsystem exporting eligibility data as long as such extension is
1004
- # committed at least 10 minutes before the original exclusion expiration -
1005
- # otherwise it is possible that there will be "gaps" in the exclusion
1006
- # application in the exported timeseries.
1007
- # Corresponds to the JSON property `duration`
1008
- # @return [String]
1009
- attr_accessor :duration
1010
-
1011
- # Human-readable reason for the exclusion. This should be a static string (e.g. "
1012
- # Disruptive update in progress") and should not contain dynamically generated
1013
- # data (e.g. instance name). Can be left empty.
1014
- # Corresponds to the JSON property `reason`
1015
- # @return [String]
1016
- attr_accessor :reason
1017
-
1018
- # Name of an SLI that this exclusion applies to. Can be left empty, signaling
1019
- # that the instance should be excluded from all SLIs.
1020
- # Corresponds to the JSON property `sliName`
1021
- # @return [String]
1022
- attr_accessor :sli_name
1023
-
1024
- # Start time of the exclusion. No alignment (e.g. to a full minute) needed.
1025
- # Corresponds to the JSON property `startTime`
1026
- # @return [String]
1027
- attr_accessor :start_time
1028
-
1029
- def initialize(**args)
1030
- update!(**args)
1031
- end
1032
-
1033
- # Update properties of this object
1034
- def update!(**args)
1035
- @duration = args[:duration] if args.key?(:duration)
1036
- @reason = args[:reason] if args.key?(:reason)
1037
- @sli_name = args[:sli_name] if args.key?(:sli_name)
1038
- @start_time = args[:start_time] if args.key?(:start_time)
1039
- end
1040
- end
1041
-
1042
1044
  # SloMetadata contains resources required for proper SLO classification of the
1043
1045
  # instance.
1044
1046
  class GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata
1045
1047
  include Google::Apis::Core::Hashable
1046
1048
 
1047
- # List of SLO exclusion windows. When multiple entries in the list match (
1048
- # matching the exclusion time-window against current time point) the exclusion
1049
- # reason used in the first matching entry will be published. It is not needed to
1050
- # include expired exclusion in this list, as only the currently applicable
1051
- # exclusions are taken into account by the eligibility exporting subsystem (the
1052
- # historical state of exclusions will be reflected in the historically produced
1053
- # timeseries regardless of the current state). This field can be used to mark
1054
- # the instance as temporary ineligible for the purpose of SLO calculation. For
1055
- # permanent instance SLO exclusion, use of custom instance eligibility is
1056
- # recommended. See 'eligibility' field below.
1057
- # Corresponds to the JSON property `exclusions`
1058
- # @return [Array<Google::Apis::ManagedidentitiesV1beta1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion>]
1059
- attr_accessor :exclusions
1060
-
1061
1049
  # Optional. List of nodes. Some producers need to use per-node metadata to
1062
1050
  # calculate SLO. This field allows such producers to publish per-node SLO meta
1063
1051
  # data, which will be consumed by SSA Eligibility Exporter and published in the
@@ -1084,7 +1072,6 @@ module Google
1084
1072
 
1085
1073
  # Update properties of this object
1086
1074
  def update!(**args)
1087
- @exclusions = args[:exclusions] if args.key?(:exclusions)
1088
1075
  @nodes = args[:nodes] if args.key?(:nodes)
1089
1076
  @per_sli_eligibility = args[:per_sli_eligibility] if args.key?(:per_sli_eligibility)
1090
1077
  @tier = args[:tier] if args.key?(:tier)
@@ -1161,6 +1148,38 @@ module Google
1161
1148
  end
1162
1149
  end
1163
1150
 
1151
+ # ListBackupsResponse is the response message for ListBackups method.
1152
+ class ListBackupsResponse
1153
+ include Google::Apis::Core::Hashable
1154
+
1155
+ # A list of Cloud AD backups in the domain.
1156
+ # Corresponds to the JSON property `backups`
1157
+ # @return [Array<Google::Apis::ManagedidentitiesV1beta1::Backup>]
1158
+ attr_accessor :backups
1159
+
1160
+ # Token to retrieve the next page of results, or empty if there are no more
1161
+ # results in the list.
1162
+ # Corresponds to the JSON property `nextPageToken`
1163
+ # @return [String]
1164
+ attr_accessor :next_page_token
1165
+
1166
+ # Locations that could not be reached.
1167
+ # Corresponds to the JSON property `unreachable`
1168
+ # @return [Array<String>]
1169
+ attr_accessor :unreachable
1170
+
1171
+ def initialize(**args)
1172
+ update!(**args)
1173
+ end
1174
+
1175
+ # Update properties of this object
1176
+ def update!(**args)
1177
+ @backups = args[:backups] if args.key?(:backups)
1178
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1179
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
1180
+ end
1181
+ end
1182
+
1164
1183
  # Response message for ListDomains
1165
1184
  class ListDomainsResponse
1166
1185
  include Google::Apis::Core::Hashable
@@ -1508,13 +1527,13 @@ module Google
1508
1527
  class OperationMetadata
1509
1528
  include Google::Apis::Core::Hashable
1510
1529
 
1511
- # [Output only] API version used to start the operation.
1530
+ # Output only. API version used to start the operation.
1512
1531
  # Corresponds to the JSON property `apiVersion`
1513
1532
  # @return [String]
1514
1533
  attr_accessor :api_version
1515
1534
 
1516
- # [Output only] Identifies whether the user has requested cancellation of the
1517
- # operation. Operations that have successfully been cancelled have Operation.
1535
+ # Output only. Identifies whether the user has requested cancellation of the
1536
+ # operation. Operations that have been cancelled successfully have Operation.
1518
1537
  # error value with a google.rpc.Status.code of 1, corresponding to `Code.
1519
1538
  # CANCELLED`.
1520
1539
  # Corresponds to the JSON property `cancelRequested`
@@ -1522,27 +1541,27 @@ module Google
1522
1541
  attr_accessor :cancel_requested
1523
1542
  alias_method :cancel_requested?, :cancel_requested
1524
1543
 
1525
- # [Output only] The time the operation was created.
1544
+ # Output only. The time the operation was created.
1526
1545
  # Corresponds to the JSON property `createTime`
1527
1546
  # @return [String]
1528
1547
  attr_accessor :create_time
1529
1548
 
1530
- # [Output only] The time the operation finished running.
1549
+ # Output only. The time the operation finished running.
1531
1550
  # Corresponds to the JSON property `endTime`
1532
1551
  # @return [String]
1533
1552
  attr_accessor :end_time
1534
1553
 
1535
- # [Output only] Human-readable status of the operation, if any.
1554
+ # Output only. Human-readable status of the operation, if any.
1536
1555
  # Corresponds to the JSON property `statusDetail`
1537
1556
  # @return [String]
1538
1557
  attr_accessor :status_detail
1539
1558
 
1540
- # [Output only] Server-defined resource path for the target of the operation.
1559
+ # Output only. Server-defined resource path for the target of the operation.
1541
1560
  # Corresponds to the JSON property `target`
1542
1561
  # @return [String]
1543
1562
  attr_accessor :target
1544
1563
 
1545
- # [Output only] Name of the verb executed by the operation.
1564
+ # Output only. Name of the verb executed by the operation.
1546
1565
  # Corresponds to the JSON property `verb`
1547
1566
  # @return [String]
1548
1567
  attr_accessor :verb
@@ -1656,7 +1675,7 @@ module Google
1656
1675
  # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
1657
1676
  # roles/resourcemanager.organizationViewer condition: title: expirable access
1658
1677
  # description: Does not grant access after Sep 2020 expression: request.time <
1659
- # timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a
1678
+ # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
1660
1679
  # description of IAM and its features, see the [IAM documentation](https://cloud.
1661
1680
  # google.com/iam/docs/).
1662
1681
  class Policy
@@ -1664,7 +1683,12 @@ module Google
1664
1683
 
1665
1684
  # Associates a list of `members` to a `role`. Optionally, may specify a `
1666
1685
  # condition` that determines how and when the `bindings` are applied. Each of
1667
- # the `bindings` must contain at least one member.
1686
+ # the `bindings` must contain at least one member. The `bindings` in a `Policy`
1687
+ # can refer to up to 1,500 members; up to 250 of these members can be Google
1688
+ # groups. Each occurrence of a member counts towards these limits. For example,
1689
+ # if the `bindings` grant 50 different roles to `user:alice@example.com`, and
1690
+ # not to any other member, then you can add another 1,450 members to the `
1691
+ # bindings` in the `Policy`.
1668
1692
  # Corresponds to the JSON property `bindings`
1669
1693
  # @return [Array<Google::Apis::ManagedidentitiesV1beta1::Binding>]
1670
1694
  attr_accessor :bindings
@@ -1775,6 +1799,25 @@ module Google
1775
1799
  end
1776
1800
  end
1777
1801
 
1802
+ # RestoreDomainRequest is the request received by RestoreDomain rpc
1803
+ class RestoreDomainRequest
1804
+ include Google::Apis::Core::Hashable
1805
+
1806
+ # Required. ID of the backup to be restored
1807
+ # Corresponds to the JSON property `backupId`
1808
+ # @return [String]
1809
+ attr_accessor :backup_id
1810
+
1811
+ def initialize(**args)
1812
+ update!(**args)
1813
+ end
1814
+
1815
+ # Update properties of this object
1816
+ def update!(**args)
1817
+ @backup_id = args[:backup_id] if args.key?(:backup_id)
1818
+ end
1819
+ end
1820
+
1778
1821
  # Configure the schedule.
1779
1822
  class Schedule
1780
1823
  include Google::Apis::Core::Hashable
@@ -1836,7 +1879,7 @@ module Google
1836
1879
  # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
1837
1880
  # roles/resourcemanager.organizationViewer condition: title: expirable access
1838
1881
  # description: Does not grant access after Sep 2020 expression: request.time <
1839
- # timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a
1882
+ # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
1840
1883
  # description of IAM and its features, see the [IAM documentation](https://cloud.
1841
1884
  # google.com/iam/docs/).
1842
1885
  # Corresponds to the JSON property `policy`
@@ -1857,8 +1900,7 @@ module Google
1857
1900
  class SqlIntegration
1858
1901
  include Google::Apis::Core::Hashable
1859
1902
 
1860
- # Output only. The time sql integration was created. Synthetic field is
1861
- # populated automatically by CCFE.
1903
+ # Output only. The time sql integration was created.
1862
1904
  # Corresponds to the JSON property `createTime`
1863
1905
  # @return [String]
1864
1906
  attr_accessor :create_time
@@ -1879,8 +1921,7 @@ module Google
1879
1921
  # @return [String]
1880
1922
  attr_accessor :state
1881
1923
 
1882
- # Output only. The time sql integration was updated. Synthetic field is
1883
- # populated automatically by CCFE.
1924
+ # Output only. The time sql integration was updated.
1884
1925
  # Corresponds to the JSON property `updateTime`
1885
1926
  # @return [String]
1886
1927
  attr_accessor :update_time
@@ -2117,8 +2158,7 @@ module Google
2117
2158
 
2118
2159
  # Deny Maintenance Period that is applied to resource to indicate when
2119
2160
  # maintenance is forbidden. User can specify zero or more non-overlapping deny
2120
- # periods. For V1, Maximum number of deny_maintenance_periods is expected to be
2121
- # one.
2161
+ # periods. Maximum number of deny_maintenance_periods expected is one.
2122
2162
  # Corresponds to the JSON property `denyMaintenancePeriods`
2123
2163
  # @return [Array<Google::Apis::ManagedidentitiesV1beta1::DenyMaintenancePeriod>]
2124
2164
  attr_accessor :deny_maintenance_periods
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ManagedidentitiesV1beta1
18
18
  # Version of the google-apis-managedidentities_v1beta1 gem
19
- GEM_VERSION = "0.11.0"
19
+ GEM_VERSION = "0.15.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 = "20210615"
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
 
@@ -148,19 +154,19 @@ module Google
148
154
  include Google::Apis::Core::JsonObjectSupport
149
155
  end
150
156
 
151
- class GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion
157
+ class GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata
152
158
  class Representation < Google::Apis::Core::JsonRepresentation; end
153
159
 
154
160
  include Google::Apis::Core::JsonObjectSupport
155
161
  end
156
162
 
157
- class GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata
163
+ class LdapsSettings
158
164
  class Representation < Google::Apis::Core::JsonRepresentation; end
159
165
 
160
166
  include Google::Apis::Core::JsonObjectSupport
161
167
  end
162
168
 
163
- class LdapsSettings
169
+ class ListBackupsResponse
164
170
  class Representation < Google::Apis::Core::JsonRepresentation; end
165
171
 
166
172
  include Google::Apis::Core::JsonObjectSupport
@@ -256,6 +262,12 @@ module Google
256
262
  include Google::Apis::Core::JsonObjectSupport
257
263
  end
258
264
 
265
+ class RestoreDomainRequest
266
+ class Representation < Google::Apis::Core::JsonRepresentation; end
267
+
268
+ include Google::Apis::Core::JsonObjectSupport
269
+ end
270
+
259
271
  class Schedule
260
272
  class Representation < Google::Apis::Core::JsonRepresentation; end
261
273
 
@@ -330,6 +342,19 @@ module Google
330
342
  end
331
343
  end
332
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
+
333
358
  class Binding
334
359
  # @private
335
360
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -517,8 +542,6 @@ module Google
517
542
  class GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata
518
543
  # @private
519
544
  class Representation < Google::Apis::Core::JsonRepresentation
520
- collection :exclusions, as: 'exclusions', class: Google::Apis::ManagedidentitiesV1beta1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion, decorator: Google::Apis::ManagedidentitiesV1beta1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion::Representation
521
-
522
545
  property :location, as: 'location'
523
546
  property :node_id, as: 'nodeId'
524
547
  property :per_sli_eligibility, as: 'perSliEligibility', class: Google::Apis::ManagedidentitiesV1beta1::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility, decorator: Google::Apis::ManagedidentitiesV1beta1::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility::Representation
@@ -550,21 +573,9 @@ module Google
550
573
  end
551
574
  end
552
575
 
553
- class GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion
554
- # @private
555
- class Representation < Google::Apis::Core::JsonRepresentation
556
- property :duration, as: 'duration'
557
- property :reason, as: 'reason'
558
- property :sli_name, as: 'sliName'
559
- property :start_time, as: 'startTime'
560
- end
561
- end
562
-
563
576
  class GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata
564
577
  # @private
565
578
  class Representation < Google::Apis::Core::JsonRepresentation
566
- collection :exclusions, as: 'exclusions', class: Google::Apis::ManagedidentitiesV1beta1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion, decorator: Google::Apis::ManagedidentitiesV1beta1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion::Representation
567
-
568
579
  collection :nodes, as: 'nodes', class: Google::Apis::ManagedidentitiesV1beta1::GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata, decorator: Google::Apis::ManagedidentitiesV1beta1::GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata::Representation
569
580
 
570
581
  property :per_sli_eligibility, as: 'perSliEligibility', class: Google::Apis::ManagedidentitiesV1beta1::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility, decorator: Google::Apis::ManagedidentitiesV1beta1::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility::Representation
@@ -586,6 +597,16 @@ module Google
586
597
  end
587
598
  end
588
599
 
600
+ class ListBackupsResponse
601
+ # @private
602
+ class Representation < Google::Apis::Core::JsonRepresentation
603
+ collection :backups, as: 'backups', class: Google::Apis::ManagedidentitiesV1beta1::Backup, decorator: Google::Apis::ManagedidentitiesV1beta1::Backup::Representation
604
+
605
+ property :next_page_token, as: 'nextPageToken'
606
+ collection :unreachable, as: 'unreachable'
607
+ end
608
+ end
609
+
589
610
  class ListDomainsResponse
590
611
  # @private
591
612
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -739,6 +760,13 @@ module Google
739
760
  end
740
761
  end
741
762
 
763
+ class RestoreDomainRequest
764
+ # @private
765
+ class Representation < Google::Apis::Core::JsonRepresentation
766
+ property :backup_id, as: 'backupId'
767
+ end
768
+ end
769
+
742
770
  class Schedule
743
771
  # @private
744
772
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -524,6 +524,39 @@ module Google
524
524
  execute_or_queue_command(command, &block)
525
525
  end
526
526
 
527
+ # RestoreBackup restores domain mentioned in the RestoreBackupRequest
528
+ # @param [String] name
529
+ # Required. resource name for the domain to which the backup belongs
530
+ # @param [Google::Apis::ManagedidentitiesV1beta1::RestoreDomainRequest] restore_domain_request_object
531
+ # @param [String] fields
532
+ # Selector specifying which fields to include in a partial response.
533
+ # @param [String] quota_user
534
+ # Available to use for quota purposes for server-side applications. Can be any
535
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
536
+ # @param [Google::Apis::RequestOptions] options
537
+ # Request-specific options
538
+ #
539
+ # @yield [result, err] Result & error if block supplied
540
+ # @yieldparam result [Google::Apis::ManagedidentitiesV1beta1::Operation] parsed result object
541
+ # @yieldparam err [StandardError] error object if request failed
542
+ #
543
+ # @return [Google::Apis::ManagedidentitiesV1beta1::Operation]
544
+ #
545
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
546
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
547
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
548
+ def restore_domain(name, restore_domain_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
549
+ command = make_simple_command(:post, 'v1beta1/{+name}:restore', options)
550
+ command.request_representation = Google::Apis::ManagedidentitiesV1beta1::RestoreDomainRequest::Representation
551
+ command.request_object = restore_domain_request_object
552
+ command.response_representation = Google::Apis::ManagedidentitiesV1beta1::Operation::Representation
553
+ command.response_class = Google::Apis::ManagedidentitiesV1beta1::Operation
554
+ command.params['name'] = name unless name.nil?
555
+ command.query['fields'] = fields unless fields.nil?
556
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
557
+ execute_or_queue_command(command, &block)
558
+ end
559
+
527
560
  # Sets the access control policy on the specified resource. Replaces any
528
561
  # existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
529
562
  # 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::ManagedidentitiesV1beta1::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::ManagedidentitiesV1beta1::Operation] parsed result object
728
+ # @yieldparam err [StandardError] error object if request failed
729
+ #
730
+ # @return [Google::Apis::ManagedidentitiesV1beta1::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, 'v1beta1/{+parent}/backups', options)
737
+ command.request_representation = Google::Apis::ManagedidentitiesV1beta1::Backup::Representation
738
+ command.request_object = backup_object
739
+ command.response_representation = Google::Apis::ManagedidentitiesV1beta1::Operation::Representation
740
+ command.response_class = Google::Apis::ManagedidentitiesV1beta1::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::ManagedidentitiesV1beta1::Operation] parsed result object
762
+ # @yieldparam err [StandardError] error object if request failed
763
+ #
764
+ # @return [Google::Apis::ManagedidentitiesV1beta1::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, 'v1beta1/{+name}', options)
771
+ command.response_representation = Google::Apis::ManagedidentitiesV1beta1::Operation::Representation
772
+ command.response_class = Google::Apis::ManagedidentitiesV1beta1::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::ManagedidentitiesV1beta1::Backup] parsed result object
793
+ # @yieldparam err [StandardError] error object if request failed
794
+ #
795
+ # @return [Google::Apis::ManagedidentitiesV1beta1::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, 'v1beta1/{+name}', options)
802
+ command.response_representation = Google::Apis::ManagedidentitiesV1beta1::Backup::Representation
803
+ command.response_class = Google::Apis::ManagedidentitiesV1beta1::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::ManagedidentitiesV1beta1::ListBackupsResponse] parsed result object
880
+ # @yieldparam err [StandardError] error object if request failed
881
+ #
882
+ # @return [Google::Apis::ManagedidentitiesV1beta1::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, 'v1beta1/{+parent}/backups', options)
889
+ command.response_representation = Google::Apis::ManagedidentitiesV1beta1::ListBackupsResponse::Representation
890
+ command.response_class = Google::Apis::ManagedidentitiesV1beta1::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::ManagedidentitiesV1beta1::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::ManagedidentitiesV1beta1::Operation] parsed result object
920
+ # @yieldparam err [StandardError] error object if request failed
921
+ #
922
+ # @return [Google::Apis::ManagedidentitiesV1beta1::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, 'v1beta1/{+name}', options)
929
+ command.request_representation = Google::Apis::ManagedidentitiesV1beta1::Backup::Representation
930
+ command.request_object = backup_object
931
+ command.response_representation = Google::Apis::ManagedidentitiesV1beta1::Operation::Representation
932
+ command.response_class = Google::Apis::ManagedidentitiesV1beta1::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
@@ -30,7 +30,7 @@ module Google
30
30
  # This is NOT the gem version.
31
31
  VERSION = 'V1beta1'
32
32
 
33
- # See, edit, configure, and delete your Google Cloud Platform data
33
+ # See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
34
34
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
35
35
  end
36
36
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-managedidentities_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.15.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-07-05 00:00:00.000000000 Z
11
+ date: 2021-10-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,9 +58,9 @@ licenses:
58
58
  - Apache-2.0
59
59
  metadata:
60
60
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
61
- changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-managedidentities_v1beta1/CHANGELOG.md
62
- documentation_uri: https://googleapis.dev/ruby/google-apis-managedidentities_v1beta1/v0.11.0
63
- source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-managedidentities_v1beta1
61
+ changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-managedidentities_v1beta1/CHANGELOG.md
62
+ documentation_uri: https://googleapis.dev/ruby/google-apis-managedidentities_v1beta1/v0.15.0
63
+ source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-managedidentities_v1beta1
64
64
  post_install_message:
65
65
  rdoc_options: []
66
66
  require_paths: