google-apis-analyticshub_v1beta1 0.32.0 → 0.34.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 +9 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/analyticshub_v1beta1/classes.rb +94 -6
- data/lib/google/apis/analyticshub_v1beta1/gem_version.rb +3 -3
- data/lib/google/apis/analyticshub_v1beta1/representations.rb +35 -0
- data/lib/google/apis/analyticshub_v1beta1/service.rb +12 -12
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4a9e401c5224acbb92da5cb86d70456fb0b0d637465b86ba34da3df9adaf444c
|
4
|
+
data.tar.gz: afbeddc9fd9577008375a8e35e057c611df40b4b56d9c3e815e5e99f7b108dd3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f84f5907f8cff35f3d76f4628e37915bd57d5313825be98a4ef897cf2ff0e55ef917fbd824a01428592094300a7f03070fc321fb4d325b7ac620caa6573c8d09
|
7
|
+
data.tar.gz: 3d8bd09306b56f40d59a590da1411c7e33056742d74d90072127cc99aee384889f368704f66b605995e8eda3a1fde32586cfdc7722ab3717c75df43b9f3a94ff
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-analyticshub_v1beta1
|
2
2
|
|
3
|
+
### v0.34.0 (2025-05-18)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250507
|
6
|
+
|
7
|
+
### v0.33.0 (2025-05-04)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250418
|
10
|
+
* Regenerated using generator version 0.17.0
|
11
|
+
|
3
12
|
### v0.32.0 (2025-02-26)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20250217
|
data/OVERVIEW.md
CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/bigquery/docs/analytics-hub
|
|
83
83
|
|
84
84
|
## Supported Ruby versions
|
85
85
|
|
86
|
-
This library is supported on Ruby
|
86
|
+
This library is supported on Ruby 3.1+.
|
87
87
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
89
89
|
|
@@ -281,7 +281,7 @@ module Google
|
|
281
281
|
attr_accessor :listing_count
|
282
282
|
|
283
283
|
# Output only. The resource name of the data exchange. e.g. `projects/myproject/
|
284
|
-
# locations/
|
284
|
+
# locations/us/dataExchanges/123`.
|
285
285
|
# Corresponds to the JSON property `name`
|
286
286
|
# @return [String]
|
287
287
|
attr_accessor :name
|
@@ -333,6 +333,80 @@ module Google
|
|
333
333
|
end
|
334
334
|
end
|
335
335
|
|
336
|
+
# Defines the destination bigquery dataset.
|
337
|
+
class DestinationDataset
|
338
|
+
include Google::Apis::Core::Hashable
|
339
|
+
|
340
|
+
# Required. A reference that identifies the destination dataset.
|
341
|
+
# Corresponds to the JSON property `datasetReference`
|
342
|
+
# @return [Google::Apis::AnalyticshubV1beta1::DestinationDatasetReference]
|
343
|
+
attr_accessor :dataset_reference
|
344
|
+
|
345
|
+
# Optional. A user-friendly description of the dataset.
|
346
|
+
# Corresponds to the JSON property `description`
|
347
|
+
# @return [String]
|
348
|
+
attr_accessor :description
|
349
|
+
|
350
|
+
# Optional. A descriptive name for the dataset.
|
351
|
+
# Corresponds to the JSON property `friendlyName`
|
352
|
+
# @return [String]
|
353
|
+
attr_accessor :friendly_name
|
354
|
+
|
355
|
+
# Optional. The labels associated with this dataset. You can use these to
|
356
|
+
# organize and group your datasets. You can set this property when inserting or
|
357
|
+
# updating a dataset. See https://cloud.google.com/resource-manager/docs/
|
358
|
+
# creating-managing-labels for more information.
|
359
|
+
# Corresponds to the JSON property `labels`
|
360
|
+
# @return [Hash<String,String>]
|
361
|
+
attr_accessor :labels
|
362
|
+
|
363
|
+
# Required. The geographic location where the dataset should reside. See https://
|
364
|
+
# cloud.google.com/bigquery/docs/locations for supported locations.
|
365
|
+
# Corresponds to the JSON property `location`
|
366
|
+
# @return [String]
|
367
|
+
attr_accessor :location
|
368
|
+
|
369
|
+
def initialize(**args)
|
370
|
+
update!(**args)
|
371
|
+
end
|
372
|
+
|
373
|
+
# Update properties of this object
|
374
|
+
def update!(**args)
|
375
|
+
@dataset_reference = args[:dataset_reference] if args.key?(:dataset_reference)
|
376
|
+
@description = args[:description] if args.key?(:description)
|
377
|
+
@friendly_name = args[:friendly_name] if args.key?(:friendly_name)
|
378
|
+
@labels = args[:labels] if args.key?(:labels)
|
379
|
+
@location = args[:location] if args.key?(:location)
|
380
|
+
end
|
381
|
+
end
|
382
|
+
|
383
|
+
#
|
384
|
+
class DestinationDatasetReference
|
385
|
+
include Google::Apis::Core::Hashable
|
386
|
+
|
387
|
+
# Required. A unique ID for this dataset, without the project name. The ID must
|
388
|
+
# contain only letters (a-z, A-Z), numbers (0-9), or underscores (_). The
|
389
|
+
# maximum length is 1,024 characters.
|
390
|
+
# Corresponds to the JSON property `datasetId`
|
391
|
+
# @return [String]
|
392
|
+
attr_accessor :dataset_id
|
393
|
+
|
394
|
+
# Required. The ID of the project containing this dataset.
|
395
|
+
# Corresponds to the JSON property `projectId`
|
396
|
+
# @return [String]
|
397
|
+
attr_accessor :project_id
|
398
|
+
|
399
|
+
def initialize(**args)
|
400
|
+
update!(**args)
|
401
|
+
end
|
402
|
+
|
403
|
+
# Update properties of this object
|
404
|
+
def update!(**args)
|
405
|
+
@dataset_id = args[:dataset_id] if args.key?(:dataset_id)
|
406
|
+
@project_id = args[:project_id] if args.key?(:project_id)
|
407
|
+
end
|
408
|
+
end
|
409
|
+
|
336
410
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
337
411
|
# messages in your APIs. A typical example is to use it as the request or the
|
338
412
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
@@ -657,6 +731,13 @@ module Google
|
|
657
731
|
class Listing
|
658
732
|
include Google::Apis::Core::Hashable
|
659
733
|
|
734
|
+
# Optional. If true, the listing is only available to get the resource metadata.
|
735
|
+
# Listing is non subscribable.
|
736
|
+
# Corresponds to the JSON property `allowOnlyMetadataSharing`
|
737
|
+
# @return [Boolean]
|
738
|
+
attr_accessor :allow_only_metadata_sharing
|
739
|
+
alias_method :allow_only_metadata_sharing?, :allow_only_metadata_sharing
|
740
|
+
|
660
741
|
# A reference to a shared dataset. It is an existing BigQuery dataset with a
|
661
742
|
# collection of objects such as tables and views that you want to share with
|
662
743
|
# subscribers. When subscriber's subscribe to a listing, Analytics Hub creates a
|
@@ -709,7 +790,7 @@ module Google
|
|
709
790
|
attr_accessor :icon
|
710
791
|
|
711
792
|
# Output only. The resource name of the listing. e.g. `projects/myproject/
|
712
|
-
# locations/
|
793
|
+
# locations/us/dataExchanges/123/listings/456`
|
713
794
|
# Corresponds to the JSON property `name`
|
714
795
|
# @return [String]
|
715
796
|
attr_accessor :name
|
@@ -748,6 +829,7 @@ module Google
|
|
748
829
|
|
749
830
|
# Update properties of this object
|
750
831
|
def update!(**args)
|
832
|
+
@allow_only_metadata_sharing = args[:allow_only_metadata_sharing] if args.key?(:allow_only_metadata_sharing)
|
751
833
|
@bigquery_dataset = args[:bigquery_dataset] if args.key?(:bigquery_dataset)
|
752
834
|
@categories = args[:categories] if args.key?(:categories)
|
753
835
|
@data_provider = args[:data_provider] if args.key?(:data_provider)
|
@@ -1124,18 +1206,23 @@ module Google
|
|
1124
1206
|
attr_accessor :creation_time
|
1125
1207
|
|
1126
1208
|
# Output only. Resource name of the source Data Exchange. e.g. projects/123/
|
1127
|
-
# locations/
|
1209
|
+
# locations/us/dataExchanges/456
|
1128
1210
|
# Corresponds to the JSON property `dataExchange`
|
1129
1211
|
# @return [String]
|
1130
1212
|
attr_accessor :data_exchange
|
1131
1213
|
|
1214
|
+
# Defines the destination bigquery dataset.
|
1215
|
+
# Corresponds to the JSON property `destinationDataset`
|
1216
|
+
# @return [Google::Apis::AnalyticshubV1beta1::DestinationDataset]
|
1217
|
+
attr_accessor :destination_dataset
|
1218
|
+
|
1132
1219
|
# Output only. Timestamp when the subscription was last modified.
|
1133
1220
|
# Corresponds to the JSON property `lastModifyTime`
|
1134
1221
|
# @return [String]
|
1135
1222
|
attr_accessor :last_modify_time
|
1136
1223
|
|
1137
1224
|
# Output only. Map of listing resource names to associated linked resource, e.g.
|
1138
|
-
# projects/123/locations/
|
1225
|
+
# projects/123/locations/us/dataExchanges/456/listings/789 -> projects/123/
|
1139
1226
|
# datasets/my_dataset For listing-level subscriptions, this is a map of size 1.
|
1140
1227
|
# Only contains values if state == STATE_ACTIVE.
|
1141
1228
|
# Corresponds to the JSON property `linkedDatasetMap`
|
@@ -1149,7 +1236,7 @@ module Google
|
|
1149
1236
|
attr_accessor :linked_resources
|
1150
1237
|
|
1151
1238
|
# Output only. Resource name of the source Listing. e.g. projects/123/locations/
|
1152
|
-
#
|
1239
|
+
# us/dataExchanges/456/listings/789
|
1153
1240
|
# Corresponds to the JSON property `listing`
|
1154
1241
|
# @return [String]
|
1155
1242
|
attr_accessor :listing
|
@@ -1162,7 +1249,7 @@ module Google
|
|
1162
1249
|
alias_method :log_linked_dataset_query_user_email?, :log_linked_dataset_query_user_email
|
1163
1250
|
|
1164
1251
|
# Output only. The resource name of the subscription. e.g. `projects/myproject/
|
1165
|
-
# locations/
|
1252
|
+
# locations/us/subscriptions/123`.
|
1166
1253
|
# Corresponds to the JSON property `name`
|
1167
1254
|
# @return [String]
|
1168
1255
|
attr_accessor :name
|
@@ -1201,6 +1288,7 @@ module Google
|
|
1201
1288
|
@commercial_info = args[:commercial_info] if args.key?(:commercial_info)
|
1202
1289
|
@creation_time = args[:creation_time] if args.key?(:creation_time)
|
1203
1290
|
@data_exchange = args[:data_exchange] if args.key?(:data_exchange)
|
1291
|
+
@destination_dataset = args[:destination_dataset] if args.key?(:destination_dataset)
|
1204
1292
|
@last_modify_time = args[:last_modify_time] if args.key?(:last_modify_time)
|
1205
1293
|
@linked_dataset_map = args[:linked_dataset_map] if args.key?(:linked_dataset_map)
|
1206
1294
|
@linked_resources = args[:linked_resources] if args.key?(:linked_resources)
|
@@ -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.34.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.17.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250507"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -64,6 +64,18 @@ module Google
|
|
64
64
|
include Google::Apis::Core::JsonObjectSupport
|
65
65
|
end
|
66
66
|
|
67
|
+
class DestinationDataset
|
68
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
|
+
|
70
|
+
include Google::Apis::Core::JsonObjectSupport
|
71
|
+
end
|
72
|
+
|
73
|
+
class DestinationDatasetReference
|
74
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
|
+
|
76
|
+
include Google::Apis::Core::JsonObjectSupport
|
77
|
+
end
|
78
|
+
|
67
79
|
class Empty
|
68
80
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
81
|
|
@@ -271,6 +283,26 @@ module Google
|
|
271
283
|
end
|
272
284
|
end
|
273
285
|
|
286
|
+
class DestinationDataset
|
287
|
+
# @private
|
288
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
289
|
+
property :dataset_reference, as: 'datasetReference', class: Google::Apis::AnalyticshubV1beta1::DestinationDatasetReference, decorator: Google::Apis::AnalyticshubV1beta1::DestinationDatasetReference::Representation
|
290
|
+
|
291
|
+
property :description, as: 'description'
|
292
|
+
property :friendly_name, as: 'friendlyName'
|
293
|
+
hash :labels, as: 'labels'
|
294
|
+
property :location, as: 'location'
|
295
|
+
end
|
296
|
+
end
|
297
|
+
|
298
|
+
class DestinationDatasetReference
|
299
|
+
# @private
|
300
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
301
|
+
property :dataset_id, as: 'datasetId'
|
302
|
+
property :project_id, as: 'projectId'
|
303
|
+
end
|
304
|
+
end
|
305
|
+
|
274
306
|
class Empty
|
275
307
|
# @private
|
276
308
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -368,6 +400,7 @@ module Google
|
|
368
400
|
class Listing
|
369
401
|
# @private
|
370
402
|
class Representation < Google::Apis::Core::JsonRepresentation
|
403
|
+
property :allow_only_metadata_sharing, as: 'allowOnlyMetadataSharing'
|
371
404
|
property :bigquery_dataset, as: 'bigqueryDataset', class: Google::Apis::AnalyticshubV1beta1::BigQueryDatasetSource, decorator: Google::Apis::AnalyticshubV1beta1::BigQueryDatasetSource::Representation
|
372
405
|
|
373
406
|
collection :categories, as: 'categories'
|
@@ -476,6 +509,8 @@ module Google
|
|
476
509
|
|
477
510
|
property :creation_time, as: 'creationTime'
|
478
511
|
property :data_exchange, as: 'dataExchange'
|
512
|
+
property :destination_dataset, as: 'destinationDataset', class: Google::Apis::AnalyticshubV1beta1::DestinationDataset, decorator: Google::Apis::AnalyticshubV1beta1::DestinationDataset::Representation
|
513
|
+
|
479
514
|
property :last_modify_time, as: 'lastModifyTime'
|
480
515
|
hash :linked_dataset_map, as: 'linkedDatasetMap', class: Google::Apis::AnalyticshubV1beta1::LinkedResource, decorator: Google::Apis::AnalyticshubV1beta1::LinkedResource::Representation
|
481
516
|
|
@@ -54,7 +54,7 @@ module Google
|
|
54
54
|
# Lists all data exchanges from projects in a given organization and location.
|
55
55
|
# @param [String] organization
|
56
56
|
# Required. The organization resource path of the projects containing
|
57
|
-
# DataExchanges. e.g. `organizations/myorg/locations/
|
57
|
+
# DataExchanges. e.g. `organizations/myorg/locations/us`.
|
58
58
|
# @param [Fixnum] page_size
|
59
59
|
# The maximum number of results to return in a single response page. Leverage
|
60
60
|
# the page tokens to iterate through the entire collection.
|
@@ -92,7 +92,7 @@ module Google
|
|
92
92
|
# Creates a new data exchange.
|
93
93
|
# @param [String] parent
|
94
94
|
# Required. The parent resource path of the data exchange. e.g. `projects/
|
95
|
-
# myproject/locations/
|
95
|
+
# myproject/locations/us`.
|
96
96
|
# @param [Google::Apis::AnalyticshubV1beta1::DataExchange] data_exchange_object
|
97
97
|
# @param [String] data_exchange_id
|
98
98
|
# Required. The ID of the data exchange. Must contain only Unicode letters,
|
@@ -131,7 +131,7 @@ module Google
|
|
131
131
|
# Deletes an existing data exchange.
|
132
132
|
# @param [String] name
|
133
133
|
# Required. The full name of the data exchange resource that you want to delete.
|
134
|
-
# For example, `projects/myproject/locations/
|
134
|
+
# For example, `projects/myproject/locations/us/dataExchanges/123`.
|
135
135
|
# @param [String] fields
|
136
136
|
# Selector specifying which fields to include in a partial response.
|
137
137
|
# @param [String] quota_user
|
@@ -162,7 +162,7 @@ module Google
|
|
162
162
|
# Gets the details of a data exchange.
|
163
163
|
# @param [String] name
|
164
164
|
# Required. The resource name of the data exchange. e.g. `projects/myproject/
|
165
|
-
# locations/
|
165
|
+
# locations/us/dataExchanges/123`.
|
166
166
|
# @param [String] fields
|
167
167
|
# Selector specifying which fields to include in a partial response.
|
168
168
|
# @param [String] quota_user
|
@@ -228,7 +228,7 @@ module Google
|
|
228
228
|
# Lists all data exchanges in a given project and location.
|
229
229
|
# @param [String] parent
|
230
230
|
# Required. The parent resource path of the data exchanges. e.g. `projects/
|
231
|
-
# myproject/locations/
|
231
|
+
# myproject/locations/us`.
|
232
232
|
# @param [Fixnum] page_size
|
233
233
|
# The maximum number of results to return in a single response page. Leverage
|
234
234
|
# the page tokens to iterate through the entire collection.
|
@@ -266,7 +266,7 @@ module Google
|
|
266
266
|
# Updates an existing data exchange.
|
267
267
|
# @param [String] name
|
268
268
|
# Output only. The resource name of the data exchange. e.g. `projects/myproject/
|
269
|
-
# locations/
|
269
|
+
# locations/us/dataExchanges/123`.
|
270
270
|
# @param [Google::Apis::AnalyticshubV1beta1::DataExchange] data_exchange_object
|
271
271
|
# @param [String] update_mask
|
272
272
|
# Required. Field mask specifies the fields to update in the data exchange
|
@@ -375,7 +375,7 @@ module Google
|
|
375
375
|
# Creates a new listing.
|
376
376
|
# @param [String] parent
|
377
377
|
# Required. The parent resource path of the listing. e.g. `projects/myproject/
|
378
|
-
# locations/
|
378
|
+
# locations/us/dataExchanges/123`.
|
379
379
|
# @param [Google::Apis::AnalyticshubV1beta1::Listing] listing_object
|
380
380
|
# @param [String] listing_id
|
381
381
|
# Required. The ID of the listing to create. Must contain only Unicode letters,
|
@@ -414,7 +414,7 @@ module Google
|
|
414
414
|
# Deletes a listing.
|
415
415
|
# @param [String] name
|
416
416
|
# Required. Resource name of the listing to delete. e.g. `projects/myproject/
|
417
|
-
# locations/
|
417
|
+
# locations/us/dataExchanges/123/listings/456`.
|
418
418
|
# @param [String] fields
|
419
419
|
# Selector specifying which fields to include in a partial response.
|
420
420
|
# @param [String] quota_user
|
@@ -445,7 +445,7 @@ module Google
|
|
445
445
|
# Gets the details of a listing.
|
446
446
|
# @param [String] name
|
447
447
|
# Required. The resource name of the listing. e.g. `projects/myproject/locations/
|
448
|
-
#
|
448
|
+
# us/dataExchanges/123/listings/456`.
|
449
449
|
# @param [String] fields
|
450
450
|
# Selector specifying which fields to include in a partial response.
|
451
451
|
# @param [String] quota_user
|
@@ -511,7 +511,7 @@ module Google
|
|
511
511
|
# Lists all listings in a given project and location.
|
512
512
|
# @param [String] parent
|
513
513
|
# Required. The parent resource path of the listing. e.g. `projects/myproject/
|
514
|
-
# locations/
|
514
|
+
# locations/us/dataExchanges/123`.
|
515
515
|
# @param [Fixnum] page_size
|
516
516
|
# The maximum number of results to return in a single response page. Leverage
|
517
517
|
# the page tokens to iterate through the entire collection.
|
@@ -549,7 +549,7 @@ module Google
|
|
549
549
|
# Updates an existing listing.
|
550
550
|
# @param [String] name
|
551
551
|
# Output only. The resource name of the listing. e.g. `projects/myproject/
|
552
|
-
# locations/
|
552
|
+
# locations/us/dataExchanges/123/listings/456`
|
553
553
|
# @param [Google::Apis::AnalyticshubV1beta1::Listing] listing_object
|
554
554
|
# @param [String] update_mask
|
555
555
|
# Required. Field mask specifies the fields to update in the listing resource.
|
@@ -626,7 +626,7 @@ module Google
|
|
626
626
|
# subscriber's project.
|
627
627
|
# @param [String] name
|
628
628
|
# Required. Resource name of the listing that you want to subscribe to. e.g. `
|
629
|
-
# projects/myproject/locations/
|
629
|
+
# projects/myproject/locations/us/dataExchanges/123/listings/456`.
|
630
630
|
# @param [Google::Apis::AnalyticshubV1beta1::SubscribeListingRequest] subscribe_listing_request_object
|
631
631
|
# @param [String] fields
|
632
632
|
# Selector specifying which fields to include in a partial response.
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
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.34.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-analyticshub_v1beta1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-analyticshub_v1beta1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-analyticshub_v1beta1/v0.34.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-analyticshub_v1beta1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|
@@ -66,14 +66,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
66
66
|
requirements:
|
67
67
|
- - ">="
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version: '
|
69
|
+
version: '3.1'
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
71
71
|
requirements:
|
72
72
|
- - ">="
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.8
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Analytics Hub API V1beta1
|
79
79
|
test_files: []
|