google-apis-analyticshub_v1beta1 0.33.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 +4 -0
- data/lib/google/apis/analyticshub_v1beta1/classes.rb +86 -6
- data/lib/google/apis/analyticshub_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/analyticshub_v1beta1/representations.rb +34 -0
- data/lib/google/apis/analyticshub_v1beta1/service.rb +12 -12
- metadata +2 -2
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
@@ -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.
|
@@ -716,7 +790,7 @@ module Google
|
|
716
790
|
attr_accessor :icon
|
717
791
|
|
718
792
|
# Output only. The resource name of the listing. e.g. `projects/myproject/
|
719
|
-
# locations/
|
793
|
+
# locations/us/dataExchanges/123/listings/456`
|
720
794
|
# Corresponds to the JSON property `name`
|
721
795
|
# @return [String]
|
722
796
|
attr_accessor :name
|
@@ -1132,18 +1206,23 @@ module Google
|
|
1132
1206
|
attr_accessor :creation_time
|
1133
1207
|
|
1134
1208
|
# Output only. Resource name of the source Data Exchange. e.g. projects/123/
|
1135
|
-
# locations/
|
1209
|
+
# locations/us/dataExchanges/456
|
1136
1210
|
# Corresponds to the JSON property `dataExchange`
|
1137
1211
|
# @return [String]
|
1138
1212
|
attr_accessor :data_exchange
|
1139
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
|
+
|
1140
1219
|
# Output only. Timestamp when the subscription was last modified.
|
1141
1220
|
# Corresponds to the JSON property `lastModifyTime`
|
1142
1221
|
# @return [String]
|
1143
1222
|
attr_accessor :last_modify_time
|
1144
1223
|
|
1145
1224
|
# Output only. Map of listing resource names to associated linked resource, e.g.
|
1146
|
-
# projects/123/locations/
|
1225
|
+
# projects/123/locations/us/dataExchanges/456/listings/789 -> projects/123/
|
1147
1226
|
# datasets/my_dataset For listing-level subscriptions, this is a map of size 1.
|
1148
1227
|
# Only contains values if state == STATE_ACTIVE.
|
1149
1228
|
# Corresponds to the JSON property `linkedDatasetMap`
|
@@ -1157,7 +1236,7 @@ module Google
|
|
1157
1236
|
attr_accessor :linked_resources
|
1158
1237
|
|
1159
1238
|
# Output only. Resource name of the source Listing. e.g. projects/123/locations/
|
1160
|
-
#
|
1239
|
+
# us/dataExchanges/456/listings/789
|
1161
1240
|
# Corresponds to the JSON property `listing`
|
1162
1241
|
# @return [String]
|
1163
1242
|
attr_accessor :listing
|
@@ -1170,7 +1249,7 @@ module Google
|
|
1170
1249
|
alias_method :log_linked_dataset_query_user_email?, :log_linked_dataset_query_user_email
|
1171
1250
|
|
1172
1251
|
# Output only. The resource name of the subscription. e.g. `projects/myproject/
|
1173
|
-
# locations/
|
1252
|
+
# locations/us/subscriptions/123`.
|
1174
1253
|
# Corresponds to the JSON property `name`
|
1175
1254
|
# @return [String]
|
1176
1255
|
attr_accessor :name
|
@@ -1209,6 +1288,7 @@ module Google
|
|
1209
1288
|
@commercial_info = args[:commercial_info] if args.key?(:commercial_info)
|
1210
1289
|
@creation_time = args[:creation_time] if args.key?(:creation_time)
|
1211
1290
|
@data_exchange = args[:data_exchange] if args.key?(:data_exchange)
|
1291
|
+
@destination_dataset = args[:destination_dataset] if args.key?(:destination_dataset)
|
1212
1292
|
@last_modify_time = args[:last_modify_time] if args.key?(:last_modify_time)
|
1213
1293
|
@linked_dataset_map = args[:linked_dataset_map] if args.key?(:linked_dataset_map)
|
1214
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
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
|
@@ -477,6 +509,8 @@ module Google
|
|
477
509
|
|
478
510
|
property :creation_time, as: 'creationTime'
|
479
511
|
property :data_exchange, as: 'dataExchange'
|
512
|
+
property :destination_dataset, as: 'destinationDataset', class: Google::Apis::AnalyticshubV1beta1::DestinationDataset, decorator: Google::Apis::AnalyticshubV1beta1::DestinationDataset::Representation
|
513
|
+
|
480
514
|
property :last_modify_time, as: 'lastModifyTime'
|
481
515
|
hash :linked_dataset_map, as: 'linkedDatasetMap', class: Google::Apis::AnalyticshubV1beta1::LinkedResource, decorator: Google::Apis::AnalyticshubV1beta1::LinkedResource::Representation
|
482
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,7 +1,7 @@
|
|
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
|
@@ -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:
|