google-apis-datafusion_v1beta1 0.31.0 → 0.32.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/datafusion_v1beta1/classes.rb +109 -110
- data/lib/google/apis/datafusion_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/datafusion_v1beta1/representations.rb +55 -39
- data/lib/google/apis/datafusion_v1beta1/service.rb +1 -4
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e0c6e3a11e9c74e2f978309834212a90c4119f0a3aa5e98400403409595fc0ab
|
4
|
+
data.tar.gz: 184e6b863349e860ebb33401585a6570d481e65f17c54ef5a9ab305fe146607d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5697d698cfc460e2bc760e7548aa02d609fd1c6d563471a10973491aa97fc5b28eff7e3bbbee0bc506650955270bd51ae47e9e4c091b9d3c9c0099c5a57c9b0e
|
7
|
+
data.tar.gz: d6ef779ba8b97bc6d3f415845a58ed40de9a9fe1ac5ce6ff6238fc51c20e6f8c5678baa23fe25a8303aa9b0df095c4a65f4eca5a252a514fd42128597b866a33
|
data/CHANGELOG.md
CHANGED
@@ -22,16 +22,16 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module DatafusionV1beta1
|
24
24
|
|
25
|
-
# Identifies Data Fusion accelerators for an instance.
|
25
|
+
# Identifies Cloud Data Fusion accelerators for an instance.
|
26
26
|
class Accelerator
|
27
27
|
include Google::Apis::Core::Hashable
|
28
28
|
|
29
|
-
# The type of an accelator for a
|
29
|
+
# Optional. The type of an accelator for a Cloud Data Fusion instance.
|
30
30
|
# Corresponds to the JSON property `acceleratorType`
|
31
31
|
# @return [String]
|
32
32
|
attr_accessor :accelerator_type
|
33
33
|
|
34
|
-
# The state of the accelerator.
|
34
|
+
# Output only. The state of the accelerator.
|
35
35
|
# Corresponds to the JSON property `state`
|
36
36
|
# @return [String]
|
37
37
|
attr_accessor :state
|
@@ -254,54 +254,6 @@ module Google
|
|
254
254
|
end
|
255
255
|
end
|
256
256
|
|
257
|
-
# Next tag: 7
|
258
|
-
class DataResidencyAugmentedView
|
259
|
-
include Google::Apis::Core::Hashable
|
260
|
-
|
261
|
-
# Cloud resource to Google owned production object mapping in the form of GURIs.
|
262
|
-
# The GURIs should be available in DG KB storage/cns tables. This is the
|
263
|
-
# preferred way of providing cloud resource mappings. For further details please
|
264
|
-
# read go/cloud-resource-monitoring_sig
|
265
|
-
# Corresponds to the JSON property `crGopoGuris`
|
266
|
-
# @return [Array<String>]
|
267
|
-
attr_accessor :cr_gopo_guris
|
268
|
-
|
269
|
-
# Cloud resource to Google owned production object mapping in the form of
|
270
|
-
# prefixes. These should be available in DG KB storage/cns tables. The entity
|
271
|
-
# type, which is the part of the string before the first colon in the GURI, must
|
272
|
-
# be completely specified in prefix. For details about GURI please read go/guri.
|
273
|
-
# For further details about the field please read go/cloud-resource-
|
274
|
-
# monitoring_sig.
|
275
|
-
# Corresponds to the JSON property `crGopoPrefixes`
|
276
|
-
# @return [Array<String>]
|
277
|
-
attr_accessor :cr_gopo_prefixes
|
278
|
-
|
279
|
-
# This message defines service-specific data that certain service teams must
|
280
|
-
# provide as part of the Data Residency Augmented View for a resource. Next ID:
|
281
|
-
# 2
|
282
|
-
# Corresponds to the JSON property `serviceData`
|
283
|
-
# @return [Google::Apis::DatafusionV1beta1::ServiceData]
|
284
|
-
attr_accessor :service_data
|
285
|
-
|
286
|
-
# The list of project_id's of the tenant projects in the 'google.com' org which
|
287
|
-
# serve the Cloud Resource. See go/drz-mst-sig for more details.
|
288
|
-
# Corresponds to the JSON property `tpIds`
|
289
|
-
# @return [Array<String>]
|
290
|
-
attr_accessor :tp_ids
|
291
|
-
|
292
|
-
def initialize(**args)
|
293
|
-
update!(**args)
|
294
|
-
end
|
295
|
-
|
296
|
-
# Update properties of this object
|
297
|
-
def update!(**args)
|
298
|
-
@cr_gopo_guris = args[:cr_gopo_guris] if args.key?(:cr_gopo_guris)
|
299
|
-
@cr_gopo_prefixes = args[:cr_gopo_prefixes] if args.key?(:cr_gopo_prefixes)
|
300
|
-
@service_data = args[:service_data] if args.key?(:service_data)
|
301
|
-
@tp_ids = args[:tp_ids] if args.key?(:tp_ids)
|
302
|
-
end
|
303
|
-
end
|
304
|
-
|
305
257
|
# DNS peering configuration. These configurations are used to create DNS peering
|
306
258
|
# with the customer Cloud DNS.
|
307
259
|
class DnsPeering
|
@@ -603,6 +555,11 @@ module Google
|
|
603
555
|
# @return [Hash<String,String>]
|
604
556
|
attr_accessor :labels
|
605
557
|
|
558
|
+
# Maintenance policy of the instance.
|
559
|
+
# Corresponds to the JSON property `maintenancePolicy`
|
560
|
+
# @return [Google::Apis::DatafusionV1beta1::MaintenancePolicy]
|
561
|
+
attr_accessor :maintenance_policy
|
562
|
+
|
606
563
|
# Output only. The name of this instance is in the form of projects/`project`/
|
607
564
|
# locations/`location`/instances/`instance`.
|
608
565
|
# Corresponds to the JSON property `name`
|
@@ -625,7 +582,7 @@ module Google
|
|
625
582
|
# @return [Hash<String,String>]
|
626
583
|
attr_accessor :options
|
627
584
|
|
628
|
-
# Output only.
|
585
|
+
# Output only. Service agent for the customer project.
|
629
586
|
# Corresponds to the JSON property `p4ServiceAccount`
|
630
587
|
# @return [String]
|
631
588
|
attr_accessor :p4_service_account
|
@@ -726,6 +683,7 @@ module Google
|
|
726
683
|
@event_publish_config = args[:event_publish_config] if args.key?(:event_publish_config)
|
727
684
|
@gcs_bucket = args[:gcs_bucket] if args.key?(:gcs_bucket)
|
728
685
|
@labels = args[:labels] if args.key?(:labels)
|
686
|
+
@maintenance_policy = args[:maintenance_policy] if args.key?(:maintenance_policy)
|
729
687
|
@name = args[:name] if args.key?(:name)
|
730
688
|
@network_config = args[:network_config] if args.key?(:network_config)
|
731
689
|
@options = args[:options] if args.key?(:options)
|
@@ -953,6 +911,50 @@ module Google
|
|
953
911
|
end
|
954
912
|
end
|
955
913
|
|
914
|
+
# Maintenance policy of the instance.
|
915
|
+
class MaintenancePolicy
|
916
|
+
include Google::Apis::Core::Hashable
|
917
|
+
|
918
|
+
# Represents an arbitrary window of time.
|
919
|
+
# Corresponds to the JSON property `maintenanceExclusionWindow`
|
920
|
+
# @return [Google::Apis::DatafusionV1beta1::TimeWindow]
|
921
|
+
attr_accessor :maintenance_exclusion_window
|
922
|
+
|
923
|
+
# Maintenance window of the instance.
|
924
|
+
# Corresponds to the JSON property `maintenanceWindow`
|
925
|
+
# @return [Google::Apis::DatafusionV1beta1::MaintenanceWindow]
|
926
|
+
attr_accessor :maintenance_window
|
927
|
+
|
928
|
+
def initialize(**args)
|
929
|
+
update!(**args)
|
930
|
+
end
|
931
|
+
|
932
|
+
# Update properties of this object
|
933
|
+
def update!(**args)
|
934
|
+
@maintenance_exclusion_window = args[:maintenance_exclusion_window] if args.key?(:maintenance_exclusion_window)
|
935
|
+
@maintenance_window = args[:maintenance_window] if args.key?(:maintenance_window)
|
936
|
+
end
|
937
|
+
end
|
938
|
+
|
939
|
+
# Maintenance window of the instance.
|
940
|
+
class MaintenanceWindow
|
941
|
+
include Google::Apis::Core::Hashable
|
942
|
+
|
943
|
+
# Represents an arbitrary window of time that recurs.
|
944
|
+
# Corresponds to the JSON property `recurringTimeWindow`
|
945
|
+
# @return [Google::Apis::DatafusionV1beta1::RecurringTimeWindow]
|
946
|
+
attr_accessor :recurring_time_window
|
947
|
+
|
948
|
+
def initialize(**args)
|
949
|
+
update!(**args)
|
950
|
+
end
|
951
|
+
|
952
|
+
# Update properties of this object
|
953
|
+
def update!(**args)
|
954
|
+
@recurring_time_window = args[:recurring_time_window] if args.key?(:recurring_time_window)
|
955
|
+
end
|
956
|
+
end
|
957
|
+
|
956
958
|
# Represents the information of a namespace
|
957
959
|
class Namespace
|
958
960
|
include Google::Apis::Core::Hashable
|
@@ -1160,46 +1162,6 @@ module Google
|
|
1160
1162
|
end
|
1161
1163
|
end
|
1162
1164
|
|
1163
|
-
# Persistent Disk service-specific Data. Contains information that may not be
|
1164
|
-
# appropriate for the generic DRZ Augmented View. This currently includes LSV
|
1165
|
-
# Colossus Roots and GCS Buckets.
|
1166
|
-
class PersistentDiskData
|
1167
|
-
include Google::Apis::Core::Hashable
|
1168
|
-
|
1169
|
-
# Path to Colossus root for an LSV. NOTE: Unlike `cr_ti_guris` and `
|
1170
|
-
# cr_ti_prefixes`, the field `cfs_roots` below does not need to be a GUri or
|
1171
|
-
# GUri prefix. It can simply be any valid CFS or CFS2 Path. The DRZ KR8 SIG has
|
1172
|
-
# more details overall, but generally the `cfs_roots` provided here should be
|
1173
|
-
# scoped to an individual Persistent Disk. An example for a PD Disk with a disk
|
1174
|
-
# ID 3277719120423414466, follows: * `cr_ti_guris` could be ‘/cfs2/pj/pd-cloud-
|
1175
|
-
# prod’ as this is a valid GUri present in the DG KB and contains enough
|
1176
|
-
# information to perform location monitoring and scope ownership of the
|
1177
|
-
# Production Object. * `cfs_roots` would be: ‘/cfs2/pj/pd-cloud-staging/
|
1178
|
-
# lsv000001234@/ lsv/projects~773365403387~zones~2700~disks~3277719120423414466 ~
|
1179
|
-
# bank-blue-careful-3526-lsv00054DB1B7254BA3/’ as this allows us to enumerate
|
1180
|
-
# the files on CFS2 that belong to an individual Disk.
|
1181
|
-
# Corresponds to the JSON property `cfsRoots`
|
1182
|
-
# @return [Array<String>]
|
1183
|
-
attr_accessor :cfs_roots
|
1184
|
-
|
1185
|
-
# The GCS Buckets that back this snapshot or image. This is required as `
|
1186
|
-
# cr_ti_prefixes` and `cr_ti_guris` only accept TI resources. This should be the
|
1187
|
-
# globally unique bucket name.
|
1188
|
-
# Corresponds to the JSON property `gcsBucketNames`
|
1189
|
-
# @return [Array<String>]
|
1190
|
-
attr_accessor :gcs_bucket_names
|
1191
|
-
|
1192
|
-
def initialize(**args)
|
1193
|
-
update!(**args)
|
1194
|
-
end
|
1195
|
-
|
1196
|
-
# Update properties of this object
|
1197
|
-
def update!(**args)
|
1198
|
-
@cfs_roots = args[:cfs_roots] if args.key?(:cfs_roots)
|
1199
|
-
@gcs_bucket_names = args[:gcs_bucket_names] if args.key?(:gcs_bucket_names)
|
1200
|
-
end
|
1201
|
-
end
|
1202
|
-
|
1203
1165
|
# An Identity and Access Management (IAM) policy, which specifies access
|
1204
1166
|
# controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
|
1205
1167
|
# A `binding` binds one or more `members`, or principals, to a single `role`.
|
@@ -1338,21 +1300,40 @@ module Google
|
|
1338
1300
|
end
|
1339
1301
|
end
|
1340
1302
|
|
1341
|
-
#
|
1342
|
-
class
|
1303
|
+
# Represents an arbitrary window of time that recurs.
|
1304
|
+
class RecurringTimeWindow
|
1343
1305
|
include Google::Apis::Core::Hashable
|
1344
1306
|
|
1307
|
+
# Required. An RRULE with format [RFC-5545](https://tools.ietf.org/html/rfc5545#
|
1308
|
+
# section-3.8.5.3) for how this window reccurs. They go on for the span of time
|
1309
|
+
# between the start and end time. The only supported FREQ value is "WEEKLY". To
|
1310
|
+
# have something repeat every weekday, use: "FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR".
|
1311
|
+
# This specifies how frequently the window starts. To have a 9 am - 5 pm UTC-4
|
1312
|
+
# window every weekday, use something like: ``` start time = 2019-01-01T09:00:00-
|
1313
|
+
# 0400 end time = 2019-01-01T17:00:00-0400 recurrence = FREQ=WEEKLY;BYDAY=MO,TU,
|
1314
|
+
# WE,TH,FR ```
|
1315
|
+
# Corresponds to the JSON property `recurrence`
|
1316
|
+
# @return [String]
|
1317
|
+
attr_accessor :recurrence
|
1318
|
+
|
1319
|
+
# Represents an arbitrary window of time.
|
1320
|
+
# Corresponds to the JSON property `window`
|
1321
|
+
# @return [Google::Apis::DatafusionV1beta1::TimeWindow]
|
1322
|
+
attr_accessor :window
|
1323
|
+
|
1345
1324
|
def initialize(**args)
|
1346
1325
|
update!(**args)
|
1347
1326
|
end
|
1348
1327
|
|
1349
1328
|
# Update properties of this object
|
1350
1329
|
def update!(**args)
|
1330
|
+
@recurrence = args[:recurrence] if args.key?(:recurrence)
|
1331
|
+
@window = args[:window] if args.key?(:window)
|
1351
1332
|
end
|
1352
1333
|
end
|
1353
1334
|
|
1354
|
-
#
|
1355
|
-
class
|
1335
|
+
# Request message for RemoveIamPolicy method.
|
1336
|
+
class RemoveIamPolicyRequest
|
1356
1337
|
include Google::Apis::Core::Hashable
|
1357
1338
|
|
1358
1339
|
def initialize(**args)
|
@@ -1364,8 +1345,8 @@ module Google
|
|
1364
1345
|
end
|
1365
1346
|
end
|
1366
1347
|
|
1367
|
-
#
|
1368
|
-
class
|
1348
|
+
# Response message for RemoveIamPolicy method.
|
1349
|
+
class RemoveIamPolicyResponse
|
1369
1350
|
include Google::Apis::Core::Hashable
|
1370
1351
|
|
1371
1352
|
def initialize(**args)
|
@@ -1377,26 +1358,16 @@ module Google
|
|
1377
1358
|
end
|
1378
1359
|
end
|
1379
1360
|
|
1380
|
-
#
|
1381
|
-
|
1382
|
-
# 2
|
1383
|
-
class ServiceData
|
1361
|
+
# Request message for restarting a Data Fusion instance.
|
1362
|
+
class RestartInstanceRequest
|
1384
1363
|
include Google::Apis::Core::Hashable
|
1385
1364
|
|
1386
|
-
# Persistent Disk service-specific Data. Contains information that may not be
|
1387
|
-
# appropriate for the generic DRZ Augmented View. This currently includes LSV
|
1388
|
-
# Colossus Roots and GCS Buckets.
|
1389
|
-
# Corresponds to the JSON property `pd`
|
1390
|
-
# @return [Google::Apis::DatafusionV1beta1::PersistentDiskData]
|
1391
|
-
attr_accessor :pd
|
1392
|
-
|
1393
1365
|
def initialize(**args)
|
1394
1366
|
update!(**args)
|
1395
1367
|
end
|
1396
1368
|
|
1397
1369
|
# Update properties of this object
|
1398
1370
|
def update!(**args)
|
1399
|
-
@pd = args[:pd] if args.key?(:pd)
|
1400
1371
|
end
|
1401
1372
|
end
|
1402
1373
|
|
@@ -1532,6 +1503,34 @@ module Google
|
|
1532
1503
|
end
|
1533
1504
|
end
|
1534
1505
|
|
1506
|
+
# Represents an arbitrary window of time.
|
1507
|
+
class TimeWindow
|
1508
|
+
include Google::Apis::Core::Hashable
|
1509
|
+
|
1510
|
+
# Required. The end time of the time window provided in [RFC 3339](https://www.
|
1511
|
+
# ietf.org/rfc/rfc3339.txt) format. The end time should take place after the
|
1512
|
+
# start time. Example: "2024-01-02T12:04:06-06:00"
|
1513
|
+
# Corresponds to the JSON property `endTime`
|
1514
|
+
# @return [String]
|
1515
|
+
attr_accessor :end_time
|
1516
|
+
|
1517
|
+
# Required. The start time of the time window provided in [RFC 3339](https://www.
|
1518
|
+
# ietf.org/rfc/rfc3339.txt) format. Example: "2024-01-01T12:04:06-04:00"
|
1519
|
+
# Corresponds to the JSON property `startTime`
|
1520
|
+
# @return [String]
|
1521
|
+
attr_accessor :start_time
|
1522
|
+
|
1523
|
+
def initialize(**args)
|
1524
|
+
update!(**args)
|
1525
|
+
end
|
1526
|
+
|
1527
|
+
# Update properties of this object
|
1528
|
+
def update!(**args)
|
1529
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
1530
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
1531
|
+
end
|
1532
|
+
end
|
1533
|
+
|
1535
1534
|
# Request message for upgrading a Data Fusion instance. To change the instance
|
1536
1535
|
# properties, instance update should be used.
|
1537
1536
|
class UpgradeInstanceRequest
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DatafusionV1beta1
|
18
18
|
# Version of the google-apis-datafusion_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.32.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240618"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -58,12 +58,6 @@ module Google
|
|
58
58
|
include Google::Apis::Core::JsonObjectSupport
|
59
59
|
end
|
60
60
|
|
61
|
-
class DataResidencyAugmentedView
|
62
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
63
|
-
|
64
|
-
include Google::Apis::Core::JsonObjectSupport
|
65
|
-
end
|
66
|
-
|
67
61
|
class DnsPeering
|
68
62
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
63
|
|
@@ -142,6 +136,18 @@ module Google
|
|
142
136
|
include Google::Apis::Core::JsonObjectSupport
|
143
137
|
end
|
144
138
|
|
139
|
+
class MaintenancePolicy
|
140
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
141
|
+
|
142
|
+
include Google::Apis::Core::JsonObjectSupport
|
143
|
+
end
|
144
|
+
|
145
|
+
class MaintenanceWindow
|
146
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
147
|
+
|
148
|
+
include Google::Apis::Core::JsonObjectSupport
|
149
|
+
end
|
150
|
+
|
145
151
|
class Namespace
|
146
152
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
147
153
|
|
@@ -166,19 +172,19 @@ module Google
|
|
166
172
|
include Google::Apis::Core::JsonObjectSupport
|
167
173
|
end
|
168
174
|
|
169
|
-
class
|
175
|
+
class Policy
|
170
176
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
171
177
|
|
172
178
|
include Google::Apis::Core::JsonObjectSupport
|
173
179
|
end
|
174
180
|
|
175
|
-
class
|
181
|
+
class PrivateServiceConnectConfig
|
176
182
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
177
183
|
|
178
184
|
include Google::Apis::Core::JsonObjectSupport
|
179
185
|
end
|
180
186
|
|
181
|
-
class
|
187
|
+
class RecurringTimeWindow
|
182
188
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
183
189
|
|
184
190
|
include Google::Apis::Core::JsonObjectSupport
|
@@ -202,31 +208,31 @@ module Google
|
|
202
208
|
include Google::Apis::Core::JsonObjectSupport
|
203
209
|
end
|
204
210
|
|
205
|
-
class
|
211
|
+
class SetIamPolicyRequest
|
206
212
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
207
213
|
|
208
214
|
include Google::Apis::Core::JsonObjectSupport
|
209
215
|
end
|
210
216
|
|
211
|
-
class
|
217
|
+
class Status
|
212
218
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
213
219
|
|
214
220
|
include Google::Apis::Core::JsonObjectSupport
|
215
221
|
end
|
216
222
|
|
217
|
-
class
|
223
|
+
class TestIamPermissionsRequest
|
218
224
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
219
225
|
|
220
226
|
include Google::Apis::Core::JsonObjectSupport
|
221
227
|
end
|
222
228
|
|
223
|
-
class
|
229
|
+
class TestIamPermissionsResponse
|
224
230
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
225
231
|
|
226
232
|
include Google::Apis::Core::JsonObjectSupport
|
227
233
|
end
|
228
234
|
|
229
|
-
class
|
235
|
+
class TimeWindow
|
230
236
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
237
|
|
232
238
|
include Google::Apis::Core::JsonObjectSupport
|
@@ -292,17 +298,6 @@ module Google
|
|
292
298
|
end
|
293
299
|
end
|
294
300
|
|
295
|
-
class DataResidencyAugmentedView
|
296
|
-
# @private
|
297
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
298
|
-
collection :cr_gopo_guris, as: 'crGopoGuris'
|
299
|
-
collection :cr_gopo_prefixes, as: 'crGopoPrefixes'
|
300
|
-
property :service_data, as: 'serviceData', class: Google::Apis::DatafusionV1beta1::ServiceData, decorator: Google::Apis::DatafusionV1beta1::ServiceData::Representation
|
301
|
-
|
302
|
-
collection :tp_ids, as: 'tpIds'
|
303
|
-
end
|
304
|
-
end
|
305
|
-
|
306
301
|
class DnsPeering
|
307
302
|
# @private
|
308
303
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -372,6 +367,8 @@ module Google
|
|
372
367
|
|
373
368
|
property :gcs_bucket, as: 'gcsBucket'
|
374
369
|
hash :labels, as: 'labels'
|
370
|
+
property :maintenance_policy, as: 'maintenancePolicy', class: Google::Apis::DatafusionV1beta1::MaintenancePolicy, decorator: Google::Apis::DatafusionV1beta1::MaintenancePolicy::Representation
|
371
|
+
|
375
372
|
property :name, as: 'name'
|
376
373
|
property :network_config, as: 'networkConfig', class: Google::Apis::DatafusionV1beta1::NetworkConfig, decorator: Google::Apis::DatafusionV1beta1::NetworkConfig::Representation
|
377
374
|
|
@@ -459,6 +456,24 @@ module Google
|
|
459
456
|
end
|
460
457
|
end
|
461
458
|
|
459
|
+
class MaintenancePolicy
|
460
|
+
# @private
|
461
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
462
|
+
property :maintenance_exclusion_window, as: 'maintenanceExclusionWindow', class: Google::Apis::DatafusionV1beta1::TimeWindow, decorator: Google::Apis::DatafusionV1beta1::TimeWindow::Representation
|
463
|
+
|
464
|
+
property :maintenance_window, as: 'maintenanceWindow', class: Google::Apis::DatafusionV1beta1::MaintenanceWindow, decorator: Google::Apis::DatafusionV1beta1::MaintenanceWindow::Representation
|
465
|
+
|
466
|
+
end
|
467
|
+
end
|
468
|
+
|
469
|
+
class MaintenanceWindow
|
470
|
+
# @private
|
471
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
472
|
+
property :recurring_time_window, as: 'recurringTimeWindow', class: Google::Apis::DatafusionV1beta1::RecurringTimeWindow, decorator: Google::Apis::DatafusionV1beta1::RecurringTimeWindow::Representation
|
473
|
+
|
474
|
+
end
|
475
|
+
end
|
476
|
+
|
462
477
|
class Namespace
|
463
478
|
# @private
|
464
479
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -505,14 +520,6 @@ module Google
|
|
505
520
|
end
|
506
521
|
end
|
507
522
|
|
508
|
-
class PersistentDiskData
|
509
|
-
# @private
|
510
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
511
|
-
collection :cfs_roots, as: 'cfsRoots'
|
512
|
-
collection :gcs_bucket_names, as: 'gcsBucketNames'
|
513
|
-
end
|
514
|
-
end
|
515
|
-
|
516
523
|
class Policy
|
517
524
|
# @private
|
518
525
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -534,29 +541,30 @@ module Google
|
|
534
541
|
end
|
535
542
|
end
|
536
543
|
|
537
|
-
class
|
544
|
+
class RecurringTimeWindow
|
538
545
|
# @private
|
539
546
|
class Representation < Google::Apis::Core::JsonRepresentation
|
547
|
+
property :recurrence, as: 'recurrence'
|
548
|
+
property :window, as: 'window', class: Google::Apis::DatafusionV1beta1::TimeWindow, decorator: Google::Apis::DatafusionV1beta1::TimeWindow::Representation
|
549
|
+
|
540
550
|
end
|
541
551
|
end
|
542
552
|
|
543
|
-
class
|
553
|
+
class RemoveIamPolicyRequest
|
544
554
|
# @private
|
545
555
|
class Representation < Google::Apis::Core::JsonRepresentation
|
546
556
|
end
|
547
557
|
end
|
548
558
|
|
549
|
-
class
|
559
|
+
class RemoveIamPolicyResponse
|
550
560
|
# @private
|
551
561
|
class Representation < Google::Apis::Core::JsonRepresentation
|
552
562
|
end
|
553
563
|
end
|
554
564
|
|
555
|
-
class
|
565
|
+
class RestartInstanceRequest
|
556
566
|
# @private
|
557
567
|
class Representation < Google::Apis::Core::JsonRepresentation
|
558
|
-
property :pd, as: 'pd', class: Google::Apis::DatafusionV1beta1::PersistentDiskData, decorator: Google::Apis::DatafusionV1beta1::PersistentDiskData::Representation
|
559
|
-
|
560
568
|
end
|
561
569
|
end
|
562
570
|
|
@@ -592,6 +600,14 @@ module Google
|
|
592
600
|
end
|
593
601
|
end
|
594
602
|
|
603
|
+
class TimeWindow
|
604
|
+
# @private
|
605
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
606
|
+
property :end_time, as: 'endTime'
|
607
|
+
property :start_time, as: 'startTime'
|
608
|
+
end
|
609
|
+
end
|
610
|
+
|
595
611
|
class UpgradeInstanceRequest
|
596
612
|
# @private
|
597
613
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -94,8 +94,6 @@ module Google
|
|
94
94
|
# A filter to narrow down results to a preferred subset. The filtering language
|
95
95
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
96
96
|
# in [AIP-160](https://google.aip.dev/160).
|
97
|
-
# @param [Boolean] include_unrevealed_locations
|
98
|
-
# If true, the returned list will include locations which are not yet revealed.
|
99
97
|
# @param [Fixnum] page_size
|
100
98
|
# The maximum number of results to return. If not set, the service selects a
|
101
99
|
# default.
|
@@ -119,13 +117,12 @@ module Google
|
|
119
117
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
120
118
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
121
119
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
122
|
-
def list_project_locations(name, filter: nil,
|
120
|
+
def list_project_locations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
123
121
|
command = make_simple_command(:get, 'v1beta1/{+name}/locations', options)
|
124
122
|
command.response_representation = Google::Apis::DatafusionV1beta1::ListLocationsResponse::Representation
|
125
123
|
command.response_class = Google::Apis::DatafusionV1beta1::ListLocationsResponse
|
126
124
|
command.params['name'] = name unless name.nil?
|
127
125
|
command.query['filter'] = filter unless filter.nil?
|
128
|
-
command.query['includeUnrevealedLocations'] = include_unrevealed_locations unless include_unrevealed_locations.nil?
|
129
126
|
command.query['pageSize'] = page_size unless page_size.nil?
|
130
127
|
command.query['pageToken'] = page_token unless page_token.nil?
|
131
128
|
command.query['fields'] = fields unless fields.nil?
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-datafusion_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.32.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-06-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datafusion_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-datafusion_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-datafusion_v1beta1/v0.32.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datafusion_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|