google-apis-analyticshub_v1beta1 0.29.0 → 0.31.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3b01dbb26b6fc9c94bb35906a3a4f0b9ca8ddf566e40f2bc20193a099c22863e
4
- data.tar.gz: 9806c1c46948cce0953a17d7d8474b0b84b9b09cc3743a39f1218ad3e6f6a4cf
3
+ metadata.gz: efeddefcea77cb99cb4e0aecf63ead82150616c5bab2b0175368a92cf23139b6
4
+ data.tar.gz: 38f5da7f0987d80f73f229d7ec0915f696989d17fb538aa14c5f947ae87166fe
5
5
  SHA512:
6
- metadata.gz: f093bb31e6fcabde766857c96058bac29747ad11478cb50d6981229b78267fe285e9ed946a8ccfe240e6dfd3f78fc02335152a16242d8e77e8fee9c6829e42e5
7
- data.tar.gz: 44a51f87369341bba55330b64caf63b17f080d9f03b68614348d8aba3dc64a6b49d044b65ff46b9a3466166d956ac822b53bbcb1f9d2ef5d9d3ae9c95d8d36a4
6
+ metadata.gz: 0fd3cbe7d2c8473ed8b39b18599c14d2dfba6a3baec91414d03fae400d9f5c52f662108ecfd502f3a83b74ce244e97536d51d95acc21b845ead1670e4d450737
7
+ data.tar.gz: d59a71b02b01136b0b2641ffe0d535be2a8a1b7ccc4815602d67a590027d7114e22cd545182588a6933fa23d6c29d2e9b7069a148a0e63b651c37679a7c4c45f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-analyticshub_v1beta1
2
2
 
3
+ ### v0.31.0 (2025-01-05)
4
+
5
+ * Regenerated from discovery document revision 20241213
6
+
7
+ ### v0.30.0 (2024-12-02)
8
+
9
+ * Regenerated from discovery document revision 20241028
10
+ * Regenerated using generator version 0.15.1
11
+
3
12
  ### v0.29.0 (2024-06-30)
4
13
 
5
14
  * Regenerated from discovery document revision 20240624
@@ -219,6 +219,25 @@ module Google
219
219
  end
220
220
  end
221
221
 
222
+ # Commercial info metadata for this subscription.
223
+ class CommercialInfo
224
+ include Google::Apis::Core::Hashable
225
+
226
+ # Cloud Marketplace commercial metadata for this subscription.
227
+ # Corresponds to the JSON property `cloudMarketplace`
228
+ # @return [Google::Apis::AnalyticshubV1beta1::GoogleCloudMarketplaceInfo]
229
+ attr_accessor :cloud_marketplace
230
+
231
+ def initialize(**args)
232
+ update!(**args)
233
+ end
234
+
235
+ # Update properties of this object
236
+ def update!(**args)
237
+ @cloud_marketplace = args[:cloud_marketplace] if args.key?(:cloud_marketplace)
238
+ end
239
+ end
240
+
222
241
  # A data exchange is a container that lets you share data. Along with the
223
242
  # descriptive information about the data exchange, it contains listings that
224
243
  # reference shared datasets.
@@ -314,80 +333,6 @@ module Google
314
333
  end
315
334
  end
316
335
 
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
336
  # A generic empty message that you can re-use to avoid defining duplicated empty
392
337
  # messages in your APIs. A typical example is to use it as the request or the
393
338
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
@@ -505,6 +450,99 @@ module Google
505
450
  end
506
451
  end
507
452
 
453
+ # Defines the destination bigquery dataset.
454
+ class GoogleCloudBigqueryDataexchangeV1beta1DestinationDataset
455
+ include Google::Apis::Core::Hashable
456
+
457
+ # Contains the reference that identifies a destination bigquery dataset.
458
+ # Corresponds to the JSON property `datasetReference`
459
+ # @return [Google::Apis::AnalyticshubV1beta1::GoogleCloudBigqueryDataexchangeV1beta1DestinationDatasetReference]
460
+ attr_accessor :dataset_reference
461
+
462
+ # Optional. A user-friendly description of the dataset.
463
+ # Corresponds to the JSON property `description`
464
+ # @return [String]
465
+ attr_accessor :description
466
+
467
+ # Optional. A descriptive name for the dataset.
468
+ # Corresponds to the JSON property `friendlyName`
469
+ # @return [String]
470
+ attr_accessor :friendly_name
471
+
472
+ # Optional. The labels associated with this dataset. You can use these to
473
+ # organize and group your datasets. You can set this property when inserting or
474
+ # updating a dataset. See https://cloud.google.com/resource-manager/docs/
475
+ # creating-managing-labels for more information.
476
+ # Corresponds to the JSON property `labels`
477
+ # @return [Hash<String,String>]
478
+ attr_accessor :labels
479
+
480
+ # Required. The geographic location where the dataset should reside. See https://
481
+ # cloud.google.com/bigquery/docs/locations for supported locations.
482
+ # Corresponds to the JSON property `location`
483
+ # @return [String]
484
+ attr_accessor :location
485
+
486
+ def initialize(**args)
487
+ update!(**args)
488
+ end
489
+
490
+ # Update properties of this object
491
+ def update!(**args)
492
+ @dataset_reference = args[:dataset_reference] if args.key?(:dataset_reference)
493
+ @description = args[:description] if args.key?(:description)
494
+ @friendly_name = args[:friendly_name] if args.key?(:friendly_name)
495
+ @labels = args[:labels] if args.key?(:labels)
496
+ @location = args[:location] if args.key?(:location)
497
+ end
498
+ end
499
+
500
+ # Contains the reference that identifies a destination bigquery dataset.
501
+ class GoogleCloudBigqueryDataexchangeV1beta1DestinationDatasetReference
502
+ include Google::Apis::Core::Hashable
503
+
504
+ # Required. A unique ID for this dataset, without the project name. The ID must
505
+ # contain only letters (a-z, A-Z), numbers (0-9), or underscores (_). The
506
+ # maximum length is 1,024 characters.
507
+ # Corresponds to the JSON property `datasetId`
508
+ # @return [String]
509
+ attr_accessor :dataset_id
510
+
511
+ # Required. The ID of the project containing this dataset.
512
+ # Corresponds to the JSON property `projectId`
513
+ # @return [String]
514
+ attr_accessor :project_id
515
+
516
+ def initialize(**args)
517
+ update!(**args)
518
+ end
519
+
520
+ # Update properties of this object
521
+ def update!(**args)
522
+ @dataset_id = args[:dataset_id] if args.key?(:dataset_id)
523
+ @project_id = args[:project_id] if args.key?(:project_id)
524
+ end
525
+ end
526
+
527
+ # Cloud Marketplace commercial metadata for this subscription.
528
+ class GoogleCloudMarketplaceInfo
529
+ include Google::Apis::Core::Hashable
530
+
531
+ # Resource name of the Marketplace Order.
532
+ # Corresponds to the JSON property `order`
533
+ # @return [String]
534
+ attr_accessor :order
535
+
536
+ def initialize(**args)
537
+ update!(**args)
538
+ end
539
+
540
+ # Update properties of this object
541
+ def update!(**args)
542
+ @order = args[:order] if args.key?(:order)
543
+ end
544
+ end
545
+
508
546
  # Reference to a linked resource tracked by this Subscription.
509
547
  class LinkedResource
510
548
  include Google::Apis::Core::Hashable
@@ -1043,7 +1081,7 @@ module Google
1043
1081
 
1044
1082
  # Defines the destination bigquery dataset.
1045
1083
  # Corresponds to the JSON property `destinationDataset`
1046
- # @return [Google::Apis::AnalyticshubV1beta1::DestinationDataset]
1084
+ # @return [Google::Apis::AnalyticshubV1beta1::GoogleCloudBigqueryDataexchangeV1beta1DestinationDataset]
1047
1085
  attr_accessor :destination_dataset
1048
1086
 
1049
1087
  def initialize(**args)
@@ -1075,6 +1113,11 @@ module Google
1075
1113
  class Subscription
1076
1114
  include Google::Apis::Core::Hashable
1077
1115
 
1116
+ # Commercial info metadata for this subscription.
1117
+ # Corresponds to the JSON property `commercialInfo`
1118
+ # @return [Google::Apis::AnalyticshubV1beta1::CommercialInfo]
1119
+ attr_accessor :commercial_info
1120
+
1078
1121
  # Output only. Timestamp when the subscription was created.
1079
1122
  # Corresponds to the JSON property `creationTime`
1080
1123
  # @return [String]
@@ -1148,6 +1191,7 @@ module Google
1148
1191
 
1149
1192
  # Update properties of this object
1150
1193
  def update!(**args)
1194
+ @commercial_info = args[:commercial_info] if args.key?(:commercial_info)
1151
1195
  @creation_time = args[:creation_time] if args.key?(:creation_time)
1152
1196
  @data_exchange = args[:data_exchange] if args.key?(:data_exchange)
1153
1197
  @last_modify_time = args[:last_modify_time] if args.key?(:last_modify_time)
@@ -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.29.0"
19
+ GEM_VERSION = "0.31.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.0"
22
+ GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240624"
25
+ REVISION = "20241213"
26
26
  end
27
27
  end
28
28
  end
@@ -46,6 +46,12 @@ module Google
46
46
  include Google::Apis::Core::JsonObjectSupport
47
47
  end
48
48
 
49
+ class CommercialInfo
50
+ class Representation < Google::Apis::Core::JsonRepresentation; end
51
+
52
+ include Google::Apis::Core::JsonObjectSupport
53
+ end
54
+
49
55
  class DataExchange
50
56
  class Representation < Google::Apis::Core::JsonRepresentation; end
51
57
 
@@ -58,37 +64,43 @@ module Google
58
64
  include Google::Apis::Core::JsonObjectSupport
59
65
  end
60
66
 
61
- class DestinationDataset
67
+ class Empty
62
68
  class Representation < Google::Apis::Core::JsonRepresentation; end
63
69
 
64
70
  include Google::Apis::Core::JsonObjectSupport
65
71
  end
66
72
 
67
- class DestinationDatasetReference
73
+ class Expr
68
74
  class Representation < Google::Apis::Core::JsonRepresentation; end
69
75
 
70
76
  include Google::Apis::Core::JsonObjectSupport
71
77
  end
72
78
 
73
- class Empty
79
+ class GetIamPolicyRequest
74
80
  class Representation < Google::Apis::Core::JsonRepresentation; end
75
81
 
76
82
  include Google::Apis::Core::JsonObjectSupport
77
83
  end
78
84
 
79
- class Expr
85
+ class GetPolicyOptions
80
86
  class Representation < Google::Apis::Core::JsonRepresentation; end
81
87
 
82
88
  include Google::Apis::Core::JsonObjectSupport
83
89
  end
84
90
 
85
- class GetIamPolicyRequest
91
+ class GoogleCloudBigqueryDataexchangeV1beta1DestinationDataset
86
92
  class Representation < Google::Apis::Core::JsonRepresentation; end
87
93
 
88
94
  include Google::Apis::Core::JsonObjectSupport
89
95
  end
90
96
 
91
- class GetPolicyOptions
97
+ class GoogleCloudBigqueryDataexchangeV1beta1DestinationDatasetReference
98
+ class Representation < Google::Apis::Core::JsonRepresentation; end
99
+
100
+ include Google::Apis::Core::JsonObjectSupport
101
+ end
102
+
103
+ class GoogleCloudMarketplaceInfo
92
104
  class Representation < Google::Apis::Core::JsonRepresentation; end
93
105
 
94
106
  include Google::Apis::Core::JsonObjectSupport
@@ -230,6 +242,14 @@ module Google
230
242
  end
231
243
  end
232
244
 
245
+ class CommercialInfo
246
+ # @private
247
+ class Representation < Google::Apis::Core::JsonRepresentation
248
+ property :cloud_marketplace, as: 'cloudMarketplace', class: Google::Apis::AnalyticshubV1beta1::GoogleCloudMarketplaceInfo, decorator: Google::Apis::AnalyticshubV1beta1::GoogleCloudMarketplaceInfo::Representation
249
+
250
+ end
251
+ end
252
+
233
253
  class DataExchange
234
254
  # @private
235
255
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -251,54 +271,61 @@ module Google
251
271
  end
252
272
  end
253
273
 
254
- class DestinationDataset
274
+ class Empty
255
275
  # @private
256
276
  class Representation < Google::Apis::Core::JsonRepresentation
257
- property :dataset_reference, as: 'datasetReference', class: Google::Apis::AnalyticshubV1beta1::DestinationDatasetReference, decorator: Google::Apis::AnalyticshubV1beta1::DestinationDatasetReference::Representation
277
+ end
278
+ end
258
279
 
280
+ class Expr
281
+ # @private
282
+ class Representation < Google::Apis::Core::JsonRepresentation
259
283
  property :description, as: 'description'
260
- property :friendly_name, as: 'friendlyName'
261
- hash :labels, as: 'labels'
284
+ property :expression, as: 'expression'
262
285
  property :location, as: 'location'
286
+ property :title, as: 'title'
263
287
  end
264
288
  end
265
289
 
266
- class DestinationDatasetReference
290
+ class GetIamPolicyRequest
267
291
  # @private
268
292
  class Representation < Google::Apis::Core::JsonRepresentation
269
- property :dataset_id, as: 'datasetId'
270
- property :project_id, as: 'projectId'
293
+ property :options, as: 'options', class: Google::Apis::AnalyticshubV1beta1::GetPolicyOptions, decorator: Google::Apis::AnalyticshubV1beta1::GetPolicyOptions::Representation
294
+
271
295
  end
272
296
  end
273
297
 
274
- class Empty
298
+ class GetPolicyOptions
275
299
  # @private
276
300
  class Representation < Google::Apis::Core::JsonRepresentation
301
+ property :requested_policy_version, as: 'requestedPolicyVersion'
277
302
  end
278
303
  end
279
304
 
280
- class Expr
305
+ class GoogleCloudBigqueryDataexchangeV1beta1DestinationDataset
281
306
  # @private
282
307
  class Representation < Google::Apis::Core::JsonRepresentation
308
+ property :dataset_reference, as: 'datasetReference', class: Google::Apis::AnalyticshubV1beta1::GoogleCloudBigqueryDataexchangeV1beta1DestinationDatasetReference, decorator: Google::Apis::AnalyticshubV1beta1::GoogleCloudBigqueryDataexchangeV1beta1DestinationDatasetReference::Representation
309
+
283
310
  property :description, as: 'description'
284
- property :expression, as: 'expression'
311
+ property :friendly_name, as: 'friendlyName'
312
+ hash :labels, as: 'labels'
285
313
  property :location, as: 'location'
286
- property :title, as: 'title'
287
314
  end
288
315
  end
289
316
 
290
- class GetIamPolicyRequest
317
+ class GoogleCloudBigqueryDataexchangeV1beta1DestinationDatasetReference
291
318
  # @private
292
319
  class Representation < Google::Apis::Core::JsonRepresentation
293
- property :options, as: 'options', class: Google::Apis::AnalyticshubV1beta1::GetPolicyOptions, decorator: Google::Apis::AnalyticshubV1beta1::GetPolicyOptions::Representation
294
-
320
+ property :dataset_id, as: 'datasetId'
321
+ property :project_id, as: 'projectId'
295
322
  end
296
323
  end
297
324
 
298
- class GetPolicyOptions
325
+ class GoogleCloudMarketplaceInfo
299
326
  # @private
300
327
  class Representation < Google::Apis::Core::JsonRepresentation
301
- property :requested_policy_version, as: 'requestedPolicyVersion'
328
+ property :order, as: 'order'
302
329
  end
303
330
  end
304
331
 
@@ -431,7 +458,7 @@ module Google
431
458
  class SubscribeListingRequest
432
459
  # @private
433
460
  class Representation < Google::Apis::Core::JsonRepresentation
434
- property :destination_dataset, as: 'destinationDataset', class: Google::Apis::AnalyticshubV1beta1::DestinationDataset, decorator: Google::Apis::AnalyticshubV1beta1::DestinationDataset::Representation
461
+ property :destination_dataset, as: 'destinationDataset', class: Google::Apis::AnalyticshubV1beta1::GoogleCloudBigqueryDataexchangeV1beta1DestinationDataset, decorator: Google::Apis::AnalyticshubV1beta1::GoogleCloudBigqueryDataexchangeV1beta1DestinationDataset::Representation
435
462
 
436
463
  end
437
464
  end
@@ -445,6 +472,8 @@ module Google
445
472
  class Subscription
446
473
  # @private
447
474
  class Representation < Google::Apis::Core::JsonRepresentation
475
+ property :commercial_info, as: 'commercialInfo', class: Google::Apis::AnalyticshubV1beta1::CommercialInfo, decorator: Google::Apis::AnalyticshubV1beta1::CommercialInfo::Representation
476
+
448
477
  property :creation_time, as: 'creationTime'
449
478
  property :data_exchange, as: 'dataExchange'
450
479
  property :last_modify_time, as: 'lastModifyTime'
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.29.0
4
+ version: 0.31.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-06-30 00:00:00.000000000 Z
11
+ date: 2025-01-05 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.29.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-analyticshub_v1beta1/v0.31.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.6
78
+ rubygems_version: 3.5.23
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Analytics Hub API V1beta1