google-apis-analyticshub_v1 0.26.0 → 0.27.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: e3905514b2ac2f321c126d7a1552a8aee5ccf81d62d35a3cdb97aa0802b060d3
4
- data.tar.gz: 125f6d9398fc050768cbb260e250b19cc292be4378680d6856651fc5582c6568
3
+ metadata.gz: 1854c7162af81664c6244ade6fa6df30159fa052ae83987226c30070268b62ad
4
+ data.tar.gz: 40fecbefb8cf6f8ac12f22ebf7dc1721fa83037c01a4786760e671588f8d1dc0
5
5
  SHA512:
6
- metadata.gz: c4f937c1f20037bb1823f9c21dd82f9a4d2730510b7f1627e01b016fbe29a9172529dc948502540d0572e237d253653a9dbc666bbdd365672d9c8d51ff37cb76
7
- data.tar.gz: 2df52e1326ef901a7763d0712ad22056838ee570e09ddfa816b3367f0205eb2046d73f4a40c83b3e0ecf9dd3eee8e79cc15aeeb045059fc98c1c41e4a98a8e9a
6
+ metadata.gz: 9408cd6a7407bf2990ecbf44f837b00b157426926f7c3041de0a6ee5f029254008b9dfb734aab164519c3370b8c99a9791a213be54449189c2bc2bbdbc395820
7
+ data.tar.gz: eff20e451f44aac7d5bf3ebfa3ca7ede3692856f8e280c2329f0c3ee8ef84500287ff7308b328736f5d43c82ca1ca30753c8198b7a2938c61e392b94a5daefd3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-analyticshub_v1
2
2
 
3
+ ### v0.27.0 (2025-01-05)
4
+
5
+ * Regenerated from discovery document revision 20241213
6
+
3
7
  ### v0.26.0 (2024-11-03)
4
8
 
5
9
  * Regenerated from discovery document revision 20241028
@@ -22,7 +22,7 @@ module Google
22
22
  module Apis
23
23
  module AnalyticshubV1
24
24
 
25
- # Information about an associated Analytics Hub subscription (https://cloud.
25
+ # Information about an associated [Analytics Hub subscription](https://cloud.
26
26
  # google.com/bigquery/docs/analytics-hub-manage-subscriptions).
27
27
  class AnalyticsHubSubscriptionInfo
28
28
  include Google::Apis::Core::Hashable
@@ -905,6 +905,92 @@ module Google
905
905
  end
906
906
  end
907
907
 
908
+ # Commercial info contains the information about the commercial data products
909
+ # associated with the listing.
910
+ class GoogleCloudBigqueryAnalyticshubV1ListingCommercialInfo
911
+ include Google::Apis::Core::Hashable
912
+
913
+ # Specifies the details of the Marketplace Data Product associated with the
914
+ # Listing.
915
+ # Corresponds to the JSON property `cloudMarketplace`
916
+ # @return [Google::Apis::AnalyticshubV1::GoogleCloudBigqueryAnalyticshubV1ListingCommercialInfoGoogleCloudMarketplaceInfo]
917
+ attr_accessor :cloud_marketplace
918
+
919
+ def initialize(**args)
920
+ update!(**args)
921
+ end
922
+
923
+ # Update properties of this object
924
+ def update!(**args)
925
+ @cloud_marketplace = args[:cloud_marketplace] if args.key?(:cloud_marketplace)
926
+ end
927
+ end
928
+
929
+ # Specifies the details of the Marketplace Data Product associated with the
930
+ # Listing.
931
+ class GoogleCloudBigqueryAnalyticshubV1ListingCommercialInfoGoogleCloudMarketplaceInfo
932
+ include Google::Apis::Core::Hashable
933
+
934
+ # Output only. Commercial state of the Marketplace Data Product.
935
+ # Corresponds to the JSON property `commercialState`
936
+ # @return [String]
937
+ attr_accessor :commercial_state
938
+
939
+ # Output only. Resource name of the commercial service associated with the
940
+ # Marketplace Data Product. e.g. example.com
941
+ # Corresponds to the JSON property `service`
942
+ # @return [String]
943
+ attr_accessor :service
944
+
945
+ def initialize(**args)
946
+ update!(**args)
947
+ end
948
+
949
+ # Update properties of this object
950
+ def update!(**args)
951
+ @commercial_state = args[:commercial_state] if args.key?(:commercial_state)
952
+ @service = args[:service] if args.key?(:service)
953
+ end
954
+ end
955
+
956
+ # Commercial info metadata for this subscription.
957
+ class GoogleCloudBigqueryAnalyticshubV1SubscriptionCommercialInfo
958
+ include Google::Apis::Core::Hashable
959
+
960
+ # Cloud Marketplace commercial metadata for this subscription.
961
+ # Corresponds to the JSON property `cloudMarketplace`
962
+ # @return [Google::Apis::AnalyticshubV1::GoogleCloudBigqueryAnalyticshubV1SubscriptionCommercialInfoGoogleCloudMarketplaceInfo]
963
+ attr_accessor :cloud_marketplace
964
+
965
+ def initialize(**args)
966
+ update!(**args)
967
+ end
968
+
969
+ # Update properties of this object
970
+ def update!(**args)
971
+ @cloud_marketplace = args[:cloud_marketplace] if args.key?(:cloud_marketplace)
972
+ end
973
+ end
974
+
975
+ # Cloud Marketplace commercial metadata for this subscription.
976
+ class GoogleCloudBigqueryAnalyticshubV1SubscriptionCommercialInfoGoogleCloudMarketplaceInfo
977
+ include Google::Apis::Core::Hashable
978
+
979
+ # Resource name of the Marketplace Order.
980
+ # Corresponds to the JSON property `order`
981
+ # @return [String]
982
+ attr_accessor :order
983
+
984
+ def initialize(**args)
985
+ update!(**args)
986
+ end
987
+
988
+ # Update properties of this object
989
+ def update!(**args)
990
+ @order = args[:order] if args.key?(:order)
991
+ end
992
+ end
993
+
908
994
  # A subscription resource. If none of `push_config`, `bigquery_config`, or `
909
995
  # cloud_storage_config` is set, then the subscriber will pull and ack messages
910
996
  # using API methods. At most one of these fields may be set.
@@ -930,7 +1016,7 @@ module Google
930
1016
  # @return [Fixnum]
931
1017
  attr_accessor :ack_deadline_seconds
932
1018
 
933
- # Information about an associated Analytics Hub subscription (https://cloud.
1019
+ # Information about an associated [Analytics Hub subscription](https://cloud.
934
1020
  # google.com/bigquery/docs/analytics-hub-manage-subscriptions).
935
1021
  # Corresponds to the JSON property `analyticsHubSubscriptionInfo`
936
1022
  # @return [Google::Apis::AnalyticshubV1::AnalyticsHubSubscriptionInfo]
@@ -1270,6 +1356,12 @@ module Google
1270
1356
  # @return [Array<String>]
1271
1357
  attr_accessor :categories
1272
1358
 
1359
+ # Commercial info contains the information about the commercial data products
1360
+ # associated with the listing.
1361
+ # Corresponds to the JSON property `commercialInfo`
1362
+ # @return [Google::Apis::AnalyticshubV1::GoogleCloudBigqueryAnalyticshubV1ListingCommercialInfo]
1363
+ attr_accessor :commercial_info
1364
+
1273
1365
  # Contains details of the data provider.
1274
1366
  # Corresponds to the JSON property `dataProvider`
1275
1367
  # @return [Google::Apis::AnalyticshubV1::DataProvider]
@@ -1363,6 +1455,7 @@ module Google
1363
1455
  def update!(**args)
1364
1456
  @bigquery_dataset = args[:bigquery_dataset] if args.key?(:bigquery_dataset)
1365
1457
  @categories = args[:categories] if args.key?(:categories)
1458
+ @commercial_info = args[:commercial_info] if args.key?(:commercial_info)
1366
1459
  @data_provider = args[:data_provider] if args.key?(:data_provider)
1367
1460
  @description = args[:description] if args.key?(:description)
1368
1461
  @discovery_type = args[:discovery_type] if args.key?(:discovery_type)
@@ -2195,6 +2288,11 @@ module Google
2195
2288
  class Subscription
2196
2289
  include Google::Apis::Core::Hashable
2197
2290
 
2291
+ # Commercial info metadata for this subscription.
2292
+ # Corresponds to the JSON property `commercialInfo`
2293
+ # @return [Google::Apis::AnalyticshubV1::GoogleCloudBigqueryAnalyticshubV1SubscriptionCommercialInfo]
2294
+ attr_accessor :commercial_info
2295
+
2198
2296
  # Output only. Timestamp when the subscription was created.
2199
2297
  # Corresponds to the JSON property `creationTime`
2200
2298
  # @return [String]
@@ -2268,6 +2366,7 @@ module Google
2268
2366
 
2269
2367
  # Update properties of this object
2270
2368
  def update!(**args)
2369
+ @commercial_info = args[:commercial_info] if args.key?(:commercial_info)
2271
2370
  @creation_time = args[:creation_time] if args.key?(:creation_time)
2272
2371
  @data_exchange = args[:data_exchange] if args.key?(:data_exchange)
2273
2372
  @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 AnalyticshubV1
18
18
  # Version of the google-apis-analyticshub_v1 gem
19
- GEM_VERSION = "0.26.0"
19
+ GEM_VERSION = "0.27.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20241028"
25
+ REVISION = "20241213"
26
26
  end
27
27
  end
28
28
  end
@@ -148,6 +148,30 @@ module Google
148
148
  include Google::Apis::Core::JsonObjectSupport
149
149
  end
150
150
 
151
+ class GoogleCloudBigqueryAnalyticshubV1ListingCommercialInfo
152
+ class Representation < Google::Apis::Core::JsonRepresentation; end
153
+
154
+ include Google::Apis::Core::JsonObjectSupport
155
+ end
156
+
157
+ class GoogleCloudBigqueryAnalyticshubV1ListingCommercialInfoGoogleCloudMarketplaceInfo
158
+ class Representation < Google::Apis::Core::JsonRepresentation; end
159
+
160
+ include Google::Apis::Core::JsonObjectSupport
161
+ end
162
+
163
+ class GoogleCloudBigqueryAnalyticshubV1SubscriptionCommercialInfo
164
+ class Representation < Google::Apis::Core::JsonRepresentation; end
165
+
166
+ include Google::Apis::Core::JsonObjectSupport
167
+ end
168
+
169
+ class GoogleCloudBigqueryAnalyticshubV1SubscriptionCommercialInfoGoogleCloudMarketplaceInfo
170
+ class Representation < Google::Apis::Core::JsonRepresentation; end
171
+
172
+ include Google::Apis::Core::JsonObjectSupport
173
+ end
174
+
151
175
  class GooglePubsubV1Subscription
152
176
  class Representation < Google::Apis::Core::JsonRepresentation; end
153
177
 
@@ -562,6 +586,37 @@ module Google
562
586
  end
563
587
  end
564
588
 
589
+ class GoogleCloudBigqueryAnalyticshubV1ListingCommercialInfo
590
+ # @private
591
+ class Representation < Google::Apis::Core::JsonRepresentation
592
+ property :cloud_marketplace, as: 'cloudMarketplace', class: Google::Apis::AnalyticshubV1::GoogleCloudBigqueryAnalyticshubV1ListingCommercialInfoGoogleCloudMarketplaceInfo, decorator: Google::Apis::AnalyticshubV1::GoogleCloudBigqueryAnalyticshubV1ListingCommercialInfoGoogleCloudMarketplaceInfo::Representation
593
+
594
+ end
595
+ end
596
+
597
+ class GoogleCloudBigqueryAnalyticshubV1ListingCommercialInfoGoogleCloudMarketplaceInfo
598
+ # @private
599
+ class Representation < Google::Apis::Core::JsonRepresentation
600
+ property :commercial_state, as: 'commercialState'
601
+ property :service, as: 'service'
602
+ end
603
+ end
604
+
605
+ class GoogleCloudBigqueryAnalyticshubV1SubscriptionCommercialInfo
606
+ # @private
607
+ class Representation < Google::Apis::Core::JsonRepresentation
608
+ property :cloud_marketplace, as: 'cloudMarketplace', class: Google::Apis::AnalyticshubV1::GoogleCloudBigqueryAnalyticshubV1SubscriptionCommercialInfoGoogleCloudMarketplaceInfo, decorator: Google::Apis::AnalyticshubV1::GoogleCloudBigqueryAnalyticshubV1SubscriptionCommercialInfoGoogleCloudMarketplaceInfo::Representation
609
+
610
+ end
611
+ end
612
+
613
+ class GoogleCloudBigqueryAnalyticshubV1SubscriptionCommercialInfoGoogleCloudMarketplaceInfo
614
+ # @private
615
+ class Representation < Google::Apis::Core::JsonRepresentation
616
+ property :order, as: 'order'
617
+ end
618
+ end
619
+
565
620
  class GooglePubsubV1Subscription
566
621
  # @private
567
622
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -653,6 +708,8 @@ module Google
653
708
  property :bigquery_dataset, as: 'bigqueryDataset', class: Google::Apis::AnalyticshubV1::BigQueryDatasetSource, decorator: Google::Apis::AnalyticshubV1::BigQueryDatasetSource::Representation
654
709
 
655
710
  collection :categories, as: 'categories'
711
+ property :commercial_info, as: 'commercialInfo', class: Google::Apis::AnalyticshubV1::GoogleCloudBigqueryAnalyticshubV1ListingCommercialInfo, decorator: Google::Apis::AnalyticshubV1::GoogleCloudBigqueryAnalyticshubV1ListingCommercialInfo::Representation
712
+
656
713
  property :data_provider, as: 'dataProvider', class: Google::Apis::AnalyticshubV1::DataProvider, decorator: Google::Apis::AnalyticshubV1::DataProvider::Representation
657
714
 
658
715
  property :description, as: 'description'
@@ -889,6 +946,8 @@ module Google
889
946
  class Subscription
890
947
  # @private
891
948
  class Representation < Google::Apis::Core::JsonRepresentation
949
+ property :commercial_info, as: 'commercialInfo', class: Google::Apis::AnalyticshubV1::GoogleCloudBigqueryAnalyticshubV1SubscriptionCommercialInfo, decorator: Google::Apis::AnalyticshubV1::GoogleCloudBigqueryAnalyticshubV1SubscriptionCommercialInfo::Representation
950
+
892
951
  property :creation_time, as: 'creationTime'
893
952
  property :data_exchange, as: 'dataExchange'
894
953
  property :last_modify_time, as: 'lastModifyTime'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-analyticshub_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.26.0
4
+ version: 0.27.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-03 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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-analyticshub_v1/v0.26.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-analyticshub_v1/v0.27.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-analyticshub_v1
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.21
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 V1