google-apis-analyticshub_v1beta1 0.29.0 → 0.30.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6fae3d1b92de4d33a82ebc3953941221d456c1f2abc27d7ea0bebf3066558b28
|
4
|
+
data.tar.gz: badd8588bc9f001d6a16ef116162a12896090b3fce9741a83159916dcd863ab1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 81c9716f00c3957cc17f6125567c5655c5ec4821a8179ea8795e3452733951ad98a5cfc67af7f2dcffff0dfefd857f9239a666714fd5976191a963c037e9ea3a
|
7
|
+
data.tar.gz: f3a4c869e33c6aa97b5c8c243389ef6d668c0bdccdced6fe563b0cd74f238d5e5af8c1cb5c2d74309f2bf3ae6bf720ef1fa2bc4902786bae79fdd0a43b5c4b63
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-analyticshub_v1beta1
|
2
2
|
|
3
|
+
### v0.30.0 (2024-12-02)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20241028
|
6
|
+
* Regenerated using generator version 0.15.1
|
7
|
+
|
3
8
|
### v0.29.0 (2024-06-30)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20240624
|
@@ -314,80 +314,6 @@ module Google
|
|
314
314
|
end
|
315
315
|
end
|
316
316
|
|
317
|
-
# Defines the destination bigquery dataset.
|
318
|
-
class DestinationDataset
|
319
|
-
include Google::Apis::Core::Hashable
|
320
|
-
|
321
|
-
# Contains the reference that identifies a destination bigquery dataset.
|
322
|
-
# Corresponds to the JSON property `datasetReference`
|
323
|
-
# @return [Google::Apis::AnalyticshubV1beta1::DestinationDatasetReference]
|
324
|
-
attr_accessor :dataset_reference
|
325
|
-
|
326
|
-
# Optional. A user-friendly description of the dataset.
|
327
|
-
# Corresponds to the JSON property `description`
|
328
|
-
# @return [String]
|
329
|
-
attr_accessor :description
|
330
|
-
|
331
|
-
# Optional. A descriptive name for the dataset.
|
332
|
-
# Corresponds to the JSON property `friendlyName`
|
333
|
-
# @return [String]
|
334
|
-
attr_accessor :friendly_name
|
335
|
-
|
336
|
-
# Optional. The labels associated with this dataset. You can use these to
|
337
|
-
# organize and group your datasets. You can set this property when inserting or
|
338
|
-
# updating a dataset. See https://cloud.google.com/resource-manager/docs/
|
339
|
-
# creating-managing-labels for more information.
|
340
|
-
# Corresponds to the JSON property `labels`
|
341
|
-
# @return [Hash<String,String>]
|
342
|
-
attr_accessor :labels
|
343
|
-
|
344
|
-
# Required. The geographic location where the dataset should reside. See https://
|
345
|
-
# cloud.google.com/bigquery/docs/locations for supported locations.
|
346
|
-
# Corresponds to the JSON property `location`
|
347
|
-
# @return [String]
|
348
|
-
attr_accessor :location
|
349
|
-
|
350
|
-
def initialize(**args)
|
351
|
-
update!(**args)
|
352
|
-
end
|
353
|
-
|
354
|
-
# Update properties of this object
|
355
|
-
def update!(**args)
|
356
|
-
@dataset_reference = args[:dataset_reference] if args.key?(:dataset_reference)
|
357
|
-
@description = args[:description] if args.key?(:description)
|
358
|
-
@friendly_name = args[:friendly_name] if args.key?(:friendly_name)
|
359
|
-
@labels = args[:labels] if args.key?(:labels)
|
360
|
-
@location = args[:location] if args.key?(:location)
|
361
|
-
end
|
362
|
-
end
|
363
|
-
|
364
|
-
# Contains the reference that identifies a destination bigquery dataset.
|
365
|
-
class DestinationDatasetReference
|
366
|
-
include Google::Apis::Core::Hashable
|
367
|
-
|
368
|
-
# Required. A unique ID for this dataset, without the project name. The ID must
|
369
|
-
# contain only letters (a-z, A-Z), numbers (0-9), or underscores (_). The
|
370
|
-
# maximum length is 1,024 characters.
|
371
|
-
# Corresponds to the JSON property `datasetId`
|
372
|
-
# @return [String]
|
373
|
-
attr_accessor :dataset_id
|
374
|
-
|
375
|
-
# Required. The ID of the project containing this dataset.
|
376
|
-
# Corresponds to the JSON property `projectId`
|
377
|
-
# @return [String]
|
378
|
-
attr_accessor :project_id
|
379
|
-
|
380
|
-
def initialize(**args)
|
381
|
-
update!(**args)
|
382
|
-
end
|
383
|
-
|
384
|
-
# Update properties of this object
|
385
|
-
def update!(**args)
|
386
|
-
@dataset_id = args[:dataset_id] if args.key?(:dataset_id)
|
387
|
-
@project_id = args[:project_id] if args.key?(:project_id)
|
388
|
-
end
|
389
|
-
end
|
390
|
-
|
391
317
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
392
318
|
# messages in your APIs. A typical example is to use it as the request or the
|
393
319
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
@@ -505,6 +431,80 @@ module Google
|
|
505
431
|
end
|
506
432
|
end
|
507
433
|
|
434
|
+
# Defines the destination bigquery dataset.
|
435
|
+
class GoogleCloudBigqueryDataexchangeV1beta1DestinationDataset
|
436
|
+
include Google::Apis::Core::Hashable
|
437
|
+
|
438
|
+
# Contains the reference that identifies a destination bigquery dataset.
|
439
|
+
# Corresponds to the JSON property `datasetReference`
|
440
|
+
# @return [Google::Apis::AnalyticshubV1beta1::GoogleCloudBigqueryDataexchangeV1beta1DestinationDatasetReference]
|
441
|
+
attr_accessor :dataset_reference
|
442
|
+
|
443
|
+
# Optional. A user-friendly description of the dataset.
|
444
|
+
# Corresponds to the JSON property `description`
|
445
|
+
# @return [String]
|
446
|
+
attr_accessor :description
|
447
|
+
|
448
|
+
# Optional. A descriptive name for the dataset.
|
449
|
+
# Corresponds to the JSON property `friendlyName`
|
450
|
+
# @return [String]
|
451
|
+
attr_accessor :friendly_name
|
452
|
+
|
453
|
+
# Optional. The labels associated with this dataset. You can use these to
|
454
|
+
# organize and group your datasets. You can set this property when inserting or
|
455
|
+
# updating a dataset. See https://cloud.google.com/resource-manager/docs/
|
456
|
+
# creating-managing-labels for more information.
|
457
|
+
# Corresponds to the JSON property `labels`
|
458
|
+
# @return [Hash<String,String>]
|
459
|
+
attr_accessor :labels
|
460
|
+
|
461
|
+
# Required. The geographic location where the dataset should reside. See https://
|
462
|
+
# cloud.google.com/bigquery/docs/locations for supported locations.
|
463
|
+
# Corresponds to the JSON property `location`
|
464
|
+
# @return [String]
|
465
|
+
attr_accessor :location
|
466
|
+
|
467
|
+
def initialize(**args)
|
468
|
+
update!(**args)
|
469
|
+
end
|
470
|
+
|
471
|
+
# Update properties of this object
|
472
|
+
def update!(**args)
|
473
|
+
@dataset_reference = args[:dataset_reference] if args.key?(:dataset_reference)
|
474
|
+
@description = args[:description] if args.key?(:description)
|
475
|
+
@friendly_name = args[:friendly_name] if args.key?(:friendly_name)
|
476
|
+
@labels = args[:labels] if args.key?(:labels)
|
477
|
+
@location = args[:location] if args.key?(:location)
|
478
|
+
end
|
479
|
+
end
|
480
|
+
|
481
|
+
# Contains the reference that identifies a destination bigquery dataset.
|
482
|
+
class GoogleCloudBigqueryDataexchangeV1beta1DestinationDatasetReference
|
483
|
+
include Google::Apis::Core::Hashable
|
484
|
+
|
485
|
+
# Required. A unique ID for this dataset, without the project name. The ID must
|
486
|
+
# contain only letters (a-z, A-Z), numbers (0-9), or underscores (_). The
|
487
|
+
# maximum length is 1,024 characters.
|
488
|
+
# Corresponds to the JSON property `datasetId`
|
489
|
+
# @return [String]
|
490
|
+
attr_accessor :dataset_id
|
491
|
+
|
492
|
+
# Required. The ID of the project containing this dataset.
|
493
|
+
# Corresponds to the JSON property `projectId`
|
494
|
+
# @return [String]
|
495
|
+
attr_accessor :project_id
|
496
|
+
|
497
|
+
def initialize(**args)
|
498
|
+
update!(**args)
|
499
|
+
end
|
500
|
+
|
501
|
+
# Update properties of this object
|
502
|
+
def update!(**args)
|
503
|
+
@dataset_id = args[:dataset_id] if args.key?(:dataset_id)
|
504
|
+
@project_id = args[:project_id] if args.key?(:project_id)
|
505
|
+
end
|
506
|
+
end
|
507
|
+
|
508
508
|
# Reference to a linked resource tracked by this Subscription.
|
509
509
|
class LinkedResource
|
510
510
|
include Google::Apis::Core::Hashable
|
@@ -1043,7 +1043,7 @@ module Google
|
|
1043
1043
|
|
1044
1044
|
# Defines the destination bigquery dataset.
|
1045
1045
|
# Corresponds to the JSON property `destinationDataset`
|
1046
|
-
# @return [Google::Apis::AnalyticshubV1beta1::
|
1046
|
+
# @return [Google::Apis::AnalyticshubV1beta1::GoogleCloudBigqueryDataexchangeV1beta1DestinationDataset]
|
1047
1047
|
attr_accessor :destination_dataset
|
1048
1048
|
|
1049
1049
|
def initialize(**args)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module AnalyticshubV1beta1
|
18
18
|
# Version of the google-apis-analyticshub_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.30.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.15.
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241028"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -58,37 +58,37 @@ module Google
|
|
58
58
|
include Google::Apis::Core::JsonObjectSupport
|
59
59
|
end
|
60
60
|
|
61
|
-
class
|
61
|
+
class Empty
|
62
62
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
63
63
|
|
64
64
|
include Google::Apis::Core::JsonObjectSupport
|
65
65
|
end
|
66
66
|
|
67
|
-
class
|
67
|
+
class Expr
|
68
68
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
69
|
|
70
70
|
include Google::Apis::Core::JsonObjectSupport
|
71
71
|
end
|
72
72
|
|
73
|
-
class
|
73
|
+
class GetIamPolicyRequest
|
74
74
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
75
|
|
76
76
|
include Google::Apis::Core::JsonObjectSupport
|
77
77
|
end
|
78
78
|
|
79
|
-
class
|
79
|
+
class GetPolicyOptions
|
80
80
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
81
81
|
|
82
82
|
include Google::Apis::Core::JsonObjectSupport
|
83
83
|
end
|
84
84
|
|
85
|
-
class
|
85
|
+
class GoogleCloudBigqueryDataexchangeV1beta1DestinationDataset
|
86
86
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
87
87
|
|
88
88
|
include Google::Apis::Core::JsonObjectSupport
|
89
89
|
end
|
90
90
|
|
91
|
-
class
|
91
|
+
class GoogleCloudBigqueryDataexchangeV1beta1DestinationDatasetReference
|
92
92
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
93
93
|
|
94
94
|
include Google::Apis::Core::JsonObjectSupport
|
@@ -251,26 +251,6 @@ module Google
|
|
251
251
|
end
|
252
252
|
end
|
253
253
|
|
254
|
-
class DestinationDataset
|
255
|
-
# @private
|
256
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
257
|
-
property :dataset_reference, as: 'datasetReference', class: Google::Apis::AnalyticshubV1beta1::DestinationDatasetReference, decorator: Google::Apis::AnalyticshubV1beta1::DestinationDatasetReference::Representation
|
258
|
-
|
259
|
-
property :description, as: 'description'
|
260
|
-
property :friendly_name, as: 'friendlyName'
|
261
|
-
hash :labels, as: 'labels'
|
262
|
-
property :location, as: 'location'
|
263
|
-
end
|
264
|
-
end
|
265
|
-
|
266
|
-
class DestinationDatasetReference
|
267
|
-
# @private
|
268
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
269
|
-
property :dataset_id, as: 'datasetId'
|
270
|
-
property :project_id, as: 'projectId'
|
271
|
-
end
|
272
|
-
end
|
273
|
-
|
274
254
|
class Empty
|
275
255
|
# @private
|
276
256
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -302,6 +282,26 @@ module Google
|
|
302
282
|
end
|
303
283
|
end
|
304
284
|
|
285
|
+
class GoogleCloudBigqueryDataexchangeV1beta1DestinationDataset
|
286
|
+
# @private
|
287
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
288
|
+
property :dataset_reference, as: 'datasetReference', class: Google::Apis::AnalyticshubV1beta1::GoogleCloudBigqueryDataexchangeV1beta1DestinationDatasetReference, decorator: Google::Apis::AnalyticshubV1beta1::GoogleCloudBigqueryDataexchangeV1beta1DestinationDatasetReference::Representation
|
289
|
+
|
290
|
+
property :description, as: 'description'
|
291
|
+
property :friendly_name, as: 'friendlyName'
|
292
|
+
hash :labels, as: 'labels'
|
293
|
+
property :location, as: 'location'
|
294
|
+
end
|
295
|
+
end
|
296
|
+
|
297
|
+
class GoogleCloudBigqueryDataexchangeV1beta1DestinationDatasetReference
|
298
|
+
# @private
|
299
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
300
|
+
property :dataset_id, as: 'datasetId'
|
301
|
+
property :project_id, as: 'projectId'
|
302
|
+
end
|
303
|
+
end
|
304
|
+
|
305
305
|
class LinkedResource
|
306
306
|
# @private
|
307
307
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -431,7 +431,7 @@ module Google
|
|
431
431
|
class SubscribeListingRequest
|
432
432
|
# @private
|
433
433
|
class Representation < Google::Apis::Core::JsonRepresentation
|
434
|
-
property :destination_dataset, as: 'destinationDataset', class: Google::Apis::AnalyticshubV1beta1::
|
434
|
+
property :destination_dataset, as: 'destinationDataset', class: Google::Apis::AnalyticshubV1beta1::GoogleCloudBigqueryDataexchangeV1beta1DestinationDataset, decorator: Google::Apis::AnalyticshubV1beta1::GoogleCloudBigqueryDataexchangeV1beta1DestinationDataset::Representation
|
435
435
|
|
436
436
|
end
|
437
437
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-analyticshub_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.30.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-12-04 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-analyticshub_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-analyticshub_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-analyticshub_v1beta1/v0.30.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-analyticshub_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.22
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Analytics Hub API V1beta1
|