google-apis-managedidentities_v1alpha1 0.10.0 → 0.14.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: 789f376ef3008b715f32899376a7e6dae5353091a02aa0daa21b3aa0d6153d27
4
- data.tar.gz: 4d9b2a51d40867d05286789803a2e15d4325c9a427f1196137f01d8689ad4ac1
3
+ metadata.gz: cafcbb29f59bc814b0d1ee3a6cd7599ec03a64ba18f933ca5b46df2b5f7b3e23
4
+ data.tar.gz: 74c5bd120ff4e584d43be750cb735a2c1ddd50b91c0facfe0351dc175b0e4a9d
5
5
  SHA512:
6
- metadata.gz: 42c1cd8cfb6fc1139fe8e288e9110b0f29075bbdd1a20ceb5f88d9047bba041faf9083246ee7a20032303448c1288c17dc21193dbd2cb48577e7c041bf80fedb
7
- data.tar.gz: 98ccc4e3732b556d7a73049347dda236580b81f5427f4a5ed9096f0e06eda1a06e1f60f2776d2c4e0283ebd75ae79b7dd77d2e50a379ac0d5b268a1ab1d13899
6
+ metadata.gz: babd0951e70a6b2c30162149d229a08e859fbfad2677617812756f76ce4b3851d98044a1d67713f55149cc99895cceb75eee1735886cf4f3602bc687ba334ecc
7
+ data.tar.gz: 3e6285e9b87950adbf6a467fd979ad063d873c17c9850ba4f76ae34c4bf5b8028b62d3a4cc7cc7eb590376d42cb189026e4304e7d60c0a0c8d3d4c8fa5a75d2f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
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
+
7
+ ### v0.13.0 (2021-08-28)
8
+
9
+ * Regenerated from discovery document revision 20210819
10
+
11
+ ### v0.12.0 (2021-07-10)
12
+
13
+ * Regenerated from discovery document revision 20210701
14
+
15
+ ### v0.11.0 (2021-06-29)
16
+
17
+ * Regenerated using generator version 0.4.0
18
+
3
19
  ### v0.10.0 (2021-06-24)
4
20
 
5
21
  * Regenerated from discovery document revision 20210615
@@ -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
@@ -879,14 +936,6 @@ module Google
879
936
  class GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata
880
937
  include Google::Apis::Core::Hashable
881
938
 
882
- # By default node is eligible if instance is eligible. But individual node might
883
- # be excluded from SLO by adding entry here. For semantic see SloMetadata.
884
- # exclusions. If both instance and node level exclusions are present for time
885
- # period, the node level's reason will be reported by Eligibility Exporter.
886
- # Corresponds to the JSON property `exclusions`
887
- # @return [Array<Google::Apis::ManagedidentitiesV1alpha1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion>]
888
- attr_accessor :exclusions
889
-
890
939
  # The location of the node, if different from instance location.
891
940
  # Corresponds to the JSON property `location`
892
941
  # @return [String]
@@ -908,7 +957,6 @@ module Google
908
957
 
909
958
  # Update properties of this object
910
959
  def update!(**args)
911
- @exclusions = args[:exclusions] if args.key?(:exclusions)
912
960
  @location = args[:location] if args.key?(:location)
913
961
  @node_id = args[:node_id] if args.key?(:node_id)
914
962
  @per_sli_eligibility = args[:per_sli_eligibility] if args.key?(:per_sli_eligibility)
@@ -1003,71 +1051,11 @@ module Google
1003
1051
  end
1004
1052
  end
1005
1053
 
1006
- # SloExclusion represents an exclusion in SLI calculation applies to all SLOs.
1007
- class GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion
1008
- include Google::Apis::Core::Hashable
1009
-
1010
- # Exclusion duration. No restrictions on the possible values. When an ongoing
1011
- # operation is taking longer than initially expected, an existing entry in the
1012
- # exclusion list can be updated by extending the duration. This is supported by
1013
- # the subsystem exporting eligibility data as long as such extension is
1014
- # committed at least 10 minutes before the original exclusion expiration -
1015
- # otherwise it is possible that there will be "gaps" in the exclusion
1016
- # application in the exported timeseries.
1017
- # Corresponds to the JSON property `duration`
1018
- # @return [String]
1019
- attr_accessor :duration
1020
-
1021
- # Human-readable reason for the exclusion. This should be a static string (e.g. "
1022
- # Disruptive update in progress") and should not contain dynamically generated
1023
- # data (e.g. instance name). Can be left empty.
1024
- # Corresponds to the JSON property `reason`
1025
- # @return [String]
1026
- attr_accessor :reason
1027
-
1028
- # Name of an SLI that this exclusion applies to. Can be left empty, signaling
1029
- # that the instance should be excluded from all SLIs.
1030
- # Corresponds to the JSON property `sliName`
1031
- # @return [String]
1032
- attr_accessor :sli_name
1033
-
1034
- # Start time of the exclusion. No alignment (e.g. to a full minute) needed.
1035
- # Corresponds to the JSON property `startTime`
1036
- # @return [String]
1037
- attr_accessor :start_time
1038
-
1039
- def initialize(**args)
1040
- update!(**args)
1041
- end
1042
-
1043
- # Update properties of this object
1044
- def update!(**args)
1045
- @duration = args[:duration] if args.key?(:duration)
1046
- @reason = args[:reason] if args.key?(:reason)
1047
- @sli_name = args[:sli_name] if args.key?(:sli_name)
1048
- @start_time = args[:start_time] if args.key?(:start_time)
1049
- end
1050
- end
1051
-
1052
1054
  # SloMetadata contains resources required for proper SLO classification of the
1053
1055
  # instance.
1054
1056
  class GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata
1055
1057
  include Google::Apis::Core::Hashable
1056
1058
 
1057
- # List of SLO exclusion windows. When multiple entries in the list match (
1058
- # matching the exclusion time-window against current time point) the exclusion
1059
- # reason used in the first matching entry will be published. It is not needed to
1060
- # include expired exclusion in this list, as only the currently applicable
1061
- # exclusions are taken into account by the eligibility exporting subsystem (the
1062
- # historical state of exclusions will be reflected in the historically produced
1063
- # timeseries regardless of the current state). This field can be used to mark
1064
- # the instance as temporary ineligible for the purpose of SLO calculation. For
1065
- # permanent instance SLO exclusion, use of custom instance eligibility is
1066
- # recommended. See 'eligibility' field below.
1067
- # Corresponds to the JSON property `exclusions`
1068
- # @return [Array<Google::Apis::ManagedidentitiesV1alpha1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion>]
1069
- attr_accessor :exclusions
1070
-
1071
1059
  # Optional. List of nodes. Some producers need to use per-node metadata to
1072
1060
  # calculate SLO. This field allows such producers to publish per-node SLO meta
1073
1061
  # data, which will be consumed by SSA Eligibility Exporter and published in the
@@ -1094,7 +1082,6 @@ module Google
1094
1082
 
1095
1083
  # Update properties of this object
1096
1084
  def update!(**args)
1097
- @exclusions = args[:exclusions] if args.key?(:exclusions)
1098
1085
  @nodes = args[:nodes] if args.key?(:nodes)
1099
1086
  @per_sli_eligibility = args[:per_sli_eligibility] if args.key?(:per_sli_eligibility)
1100
1087
  @tier = args[:tier] if args.key?(:tier)
@@ -1171,6 +1158,38 @@ module Google
1171
1158
  end
1172
1159
  end
1173
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
+
1174
1193
  #
1175
1194
  class ListDomainsResponse
1176
1195
  include Google::Apis::Core::Hashable
@@ -1518,13 +1537,13 @@ module Google
1518
1537
  class OperationMetadata
1519
1538
  include Google::Apis::Core::Hashable
1520
1539
 
1521
- # [Output only] API version used to start the operation.
1540
+ # Output only. API version used to start the operation.
1522
1541
  # Corresponds to the JSON property `apiVersion`
1523
1542
  # @return [String]
1524
1543
  attr_accessor :api_version
1525
1544
 
1526
- # [Output only] Identifies whether the user has requested cancellation of the
1527
- # operation. Operations that have successfully been cancelled have Operation.
1545
+ # Output only. Identifies whether the user has requested cancellation of the
1546
+ # operation. Operations that have been cancelled successfully have Operation.
1528
1547
  # error value with a google.rpc.Status.code of 1, corresponding to `Code.
1529
1548
  # CANCELLED`.
1530
1549
  # Corresponds to the JSON property `cancelRequested`
@@ -1532,27 +1551,27 @@ module Google
1532
1551
  attr_accessor :cancel_requested
1533
1552
  alias_method :cancel_requested?, :cancel_requested
1534
1553
 
1535
- # [Output only] The time the operation was created.
1554
+ # Output only. The time the operation was created.
1536
1555
  # Corresponds to the JSON property `createTime`
1537
1556
  # @return [String]
1538
1557
  attr_accessor :create_time
1539
1558
 
1540
- # [Output only] The time the operation finished running.
1559
+ # Output only. The time the operation finished running.
1541
1560
  # Corresponds to the JSON property `endTime`
1542
1561
  # @return [String]
1543
1562
  attr_accessor :end_time
1544
1563
 
1545
- # [Output only] Human-readable status of the operation, if any.
1564
+ # Output only. Human-readable status of the operation, if any.
1546
1565
  # Corresponds to the JSON property `statusDetail`
1547
1566
  # @return [String]
1548
1567
  attr_accessor :status_detail
1549
1568
 
1550
- # [Output only] Server-defined resource path for the target of the operation.
1569
+ # Output only. Server-defined resource path for the target of the operation.
1551
1570
  # Corresponds to the JSON property `target`
1552
1571
  # @return [String]
1553
1572
  attr_accessor :target
1554
1573
 
1555
- # [Output only] Name of the verb executed by the operation.
1574
+ # Output only. Name of the verb executed by the operation.
1556
1575
  # Corresponds to the JSON property `verb`
1557
1576
  # @return [String]
1558
1577
  attr_accessor :verb
@@ -1666,7 +1685,7 @@ module Google
1666
1685
  # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
1667
1686
  # roles/resourcemanager.organizationViewer condition: title: expirable access
1668
1687
  # description: Does not grant access after Sep 2020 expression: request.time <
1669
- # timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a
1688
+ # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
1670
1689
  # description of IAM and its features, see the [IAM documentation](https://cloud.
1671
1690
  # google.com/iam/docs/).
1672
1691
  class Policy
@@ -1674,7 +1693,12 @@ module Google
1674
1693
 
1675
1694
  # Associates a list of `members` to a `role`. Optionally, may specify a `
1676
1695
  # condition` that determines how and when the `bindings` are applied. Each of
1677
- # 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`.
1678
1702
  # Corresponds to the JSON property `bindings`
1679
1703
  # @return [Array<Google::Apis::ManagedidentitiesV1alpha1::Binding>]
1680
1704
  attr_accessor :bindings
@@ -1782,12 +1806,30 @@ module Google
1782
1806
  end
1783
1807
  end
1784
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
+
1785
1828
  # Represents the SQL instance integrated with AD.
1786
1829
  class SqlIntegration
1787
1830
  include Google::Apis::Core::Hashable
1788
1831
 
1789
- # Output only. The time the instance was created. Synthetic field is populated
1790
- # automatically by CCFE. go/ccfe-synthetic-field-user-guide
1832
+ # Output only. The time the instance was created.
1791
1833
  # Corresponds to the JSON property `createTime`
1792
1834
  # @return [String]
1793
1835
  attr_accessor :create_time
@@ -1808,8 +1850,7 @@ module Google
1808
1850
  # @return [String]
1809
1851
  attr_accessor :state
1810
1852
 
1811
- # Output only. Last update time. Synthetic field is populated automatically by
1812
- # CCFE.
1853
+ # Output only. Last update time for this SQL instance.
1813
1854
  # Corresponds to the JSON property `updateTime`
1814
1855
  # @return [String]
1815
1856
  attr_accessor :update_time
@@ -1889,7 +1930,7 @@ module Google
1889
1930
  # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
1890
1931
  # roles/resourcemanager.organizationViewer condition: title: expirable access
1891
1932
  # description: Does not grant access after Sep 2020 expression: request.time <
1892
- # timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a
1933
+ # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
1893
1934
  # description of IAM and its features, see the [IAM documentation](https://cloud.
1894
1935
  # google.com/iam/docs/).
1895
1936
  # Corresponds to the JSON property `policy`
@@ -2127,8 +2168,7 @@ module Google
2127
2168
 
2128
2169
  # Deny Maintenance Period that is applied to resource to indicate when
2129
2170
  # maintenance is forbidden. User can specify zero or more non-overlapping deny
2130
- # periods. For V1, Maximum number of deny_maintenance_periods is expected to be
2131
- # one.
2171
+ # periods. Maximum number of deny_maintenance_periods expected is one.
2132
2172
  # Corresponds to the JSON property `denyMaintenancePeriods`
2133
2173
  # @return [Array<Google::Apis::ManagedidentitiesV1alpha1::DenyMaintenancePeriod>]
2134
2174
  attr_accessor :deny_maintenance_periods
@@ -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.10.0"
19
+ GEM_VERSION = "0.14.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.3.0"
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 SqlIntegration
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::ManagedidentitiesV1alpha1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion, decorator: Google::Apis::ManagedidentitiesV1alpha1::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::ManagedidentitiesV1alpha1::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility, decorator: Google::Apis::ManagedidentitiesV1alpha1::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::ManagedidentitiesV1alpha1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion, decorator: Google::Apis::ManagedidentitiesV1alpha1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion::Representation
567
-
568
579
  collection :nodes, as: 'nodes', class: Google::Apis::ManagedidentitiesV1alpha1::GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata, decorator: Google::Apis::ManagedidentitiesV1alpha1::GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata::Representation
569
580
 
570
581
  property :per_sli_eligibility, as: 'perSliEligibility', class: Google::Apis::ManagedidentitiesV1alpha1::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility, decorator: Google::Apis::ManagedidentitiesV1alpha1::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::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
+
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 SqlIntegration
743
771
  # @private
744
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
@@ -30,7 +30,7 @@ module Google
30
30
  # This is NOT the gem version.
31
31
  VERSION = 'V1alpha1'
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_v1alpha1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.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-06-28 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
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.3'
19
+ version: '0.4'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.3'
29
+ version: '0.4'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.10.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: []