google-apis-analyticshub_v1beta1 0.28.0 → 0.30.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:
|
|
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,14 @@
|
|
|
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
|
+
|
|
8
|
+
### v0.29.0 (2024-06-30)
|
|
9
|
+
|
|
10
|
+
* Regenerated from discovery document revision 20240624
|
|
11
|
+
|
|
3
12
|
### v0.28.0 (2024-05-19)
|
|
4
13
|
|
|
5
14
|
* Regenerated using generator version 0.15.0
|
|
@@ -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
|
|
@@ -515,6 +515,17 @@ module Google
|
|
|
515
515
|
# @return [String]
|
|
516
516
|
attr_accessor :linked_dataset
|
|
517
517
|
|
|
518
|
+
# Output only. Name of the Pub/Sub subscription, e.g. projects/subscriberproject/
|
|
519
|
+
# subscriptions/subscriptions/sub_id
|
|
520
|
+
# Corresponds to the JSON property `linkedPubsubSubscription`
|
|
521
|
+
# @return [String]
|
|
522
|
+
attr_accessor :linked_pubsub_subscription
|
|
523
|
+
|
|
524
|
+
# Output only. Listing for which linked resource is created.
|
|
525
|
+
# Corresponds to the JSON property `listing`
|
|
526
|
+
# @return [String]
|
|
527
|
+
attr_accessor :listing
|
|
528
|
+
|
|
518
529
|
def initialize(**args)
|
|
519
530
|
update!(**args)
|
|
520
531
|
end
|
|
@@ -522,6 +533,8 @@ module Google
|
|
|
522
533
|
# Update properties of this object
|
|
523
534
|
def update!(**args)
|
|
524
535
|
@linked_dataset = args[:linked_dataset] if args.key?(:linked_dataset)
|
|
536
|
+
@linked_pubsub_subscription = args[:linked_pubsub_subscription] if args.key?(:linked_pubsub_subscription)
|
|
537
|
+
@listing = args[:listing] if args.key?(:listing)
|
|
525
538
|
end
|
|
526
539
|
end
|
|
527
540
|
|
|
@@ -1030,7 +1043,7 @@ module Google
|
|
|
1030
1043
|
|
|
1031
1044
|
# Defines the destination bigquery dataset.
|
|
1032
1045
|
# Corresponds to the JSON property `destinationDataset`
|
|
1033
|
-
# @return [Google::Apis::AnalyticshubV1beta1::
|
|
1046
|
+
# @return [Google::Apis::AnalyticshubV1beta1::GoogleCloudBigqueryDataexchangeV1beta1DestinationDataset]
|
|
1034
1047
|
attr_accessor :destination_dataset
|
|
1035
1048
|
|
|
1036
1049
|
def initialize(**args)
|
|
@@ -1086,6 +1099,12 @@ module Google
|
|
|
1086
1099
|
# @return [Hash<String,Google::Apis::AnalyticshubV1beta1::LinkedResource>]
|
|
1087
1100
|
attr_accessor :linked_dataset_map
|
|
1088
1101
|
|
|
1102
|
+
# Output only. Linked resources created in the subscription. Only contains
|
|
1103
|
+
# values if state = STATE_ACTIVE.
|
|
1104
|
+
# Corresponds to the JSON property `linkedResources`
|
|
1105
|
+
# @return [Array<Google::Apis::AnalyticshubV1beta1::LinkedResource>]
|
|
1106
|
+
attr_accessor :linked_resources
|
|
1107
|
+
|
|
1089
1108
|
# Output only. Resource name of the source Listing. e.g. projects/123/locations/
|
|
1090
1109
|
# US/dataExchanges/456/listings/789
|
|
1091
1110
|
# Corresponds to the JSON property `listing`
|
|
@@ -1108,6 +1127,11 @@ module Google
|
|
|
1108
1127
|
# @return [String]
|
|
1109
1128
|
attr_accessor :organization_id
|
|
1110
1129
|
|
|
1130
|
+
# Output only. Listing shared asset type.
|
|
1131
|
+
# Corresponds to the JSON property `resourceType`
|
|
1132
|
+
# @return [String]
|
|
1133
|
+
attr_accessor :resource_type
|
|
1134
|
+
|
|
1111
1135
|
# Output only. Current state of the subscription.
|
|
1112
1136
|
# Corresponds to the JSON property `state`
|
|
1113
1137
|
# @return [String]
|
|
@@ -1128,10 +1152,12 @@ module Google
|
|
|
1128
1152
|
@data_exchange = args[:data_exchange] if args.key?(:data_exchange)
|
|
1129
1153
|
@last_modify_time = args[:last_modify_time] if args.key?(:last_modify_time)
|
|
1130
1154
|
@linked_dataset_map = args[:linked_dataset_map] if args.key?(:linked_dataset_map)
|
|
1155
|
+
@linked_resources = args[:linked_resources] if args.key?(:linked_resources)
|
|
1131
1156
|
@listing = args[:listing] if args.key?(:listing)
|
|
1132
1157
|
@name = args[:name] if args.key?(:name)
|
|
1133
1158
|
@organization_display_name = args[:organization_display_name] if args.key?(:organization_display_name)
|
|
1134
1159
|
@organization_id = args[:organization_id] if args.key?(:organization_id)
|
|
1160
|
+
@resource_type = args[:resource_type] if args.key?(:resource_type)
|
|
1135
1161
|
@state = args[:state] if args.key?(:state)
|
|
1136
1162
|
@subscriber_contact = args[:subscriber_contact] if args.key?(:subscriber_contact)
|
|
1137
1163
|
end
|
|
@@ -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,10 +282,32 @@ 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
|
|
308
308
|
property :linked_dataset, as: 'linkedDataset'
|
|
309
|
+
property :linked_pubsub_subscription, as: 'linkedPubsubSubscription'
|
|
310
|
+
property :listing, as: 'listing'
|
|
309
311
|
end
|
|
310
312
|
end
|
|
311
313
|
|
|
@@ -429,7 +431,7 @@ module Google
|
|
|
429
431
|
class SubscribeListingRequest
|
|
430
432
|
# @private
|
|
431
433
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
432
|
-
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
|
|
433
435
|
|
|
434
436
|
end
|
|
435
437
|
end
|
|
@@ -448,10 +450,13 @@ module Google
|
|
|
448
450
|
property :last_modify_time, as: 'lastModifyTime'
|
|
449
451
|
hash :linked_dataset_map, as: 'linkedDatasetMap', class: Google::Apis::AnalyticshubV1beta1::LinkedResource, decorator: Google::Apis::AnalyticshubV1beta1::LinkedResource::Representation
|
|
450
452
|
|
|
453
|
+
collection :linked_resources, as: 'linkedResources', class: Google::Apis::AnalyticshubV1beta1::LinkedResource, decorator: Google::Apis::AnalyticshubV1beta1::LinkedResource::Representation
|
|
454
|
+
|
|
451
455
|
property :listing, as: 'listing'
|
|
452
456
|
property :name, as: 'name'
|
|
453
457
|
property :organization_display_name, as: 'organizationDisplayName'
|
|
454
458
|
property :organization_id, as: 'organizationId'
|
|
459
|
+
property :resource_type, as: 'resourceType'
|
|
455
460
|
property :state, as: 'state'
|
|
456
461
|
property :subscriber_contact, as: 'subscriberContact'
|
|
457
462
|
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
|