google-apis-analyticshub_v1beta1 0.28.0 → 0.29.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: 3781da8beff2fd596db05090e888b2153f31133ea0ccf86a93f0125ade52ef73
4
- data.tar.gz: 314982a52f9f9f8a828deef978a42c46c8cff94cff8c9b64e6cb96bfeef07fae
3
+ metadata.gz: 3b01dbb26b6fc9c94bb35906a3a4f0b9ca8ddf566e40f2bc20193a099c22863e
4
+ data.tar.gz: 9806c1c46948cce0953a17d7d8474b0b84b9b09cc3743a39f1218ad3e6f6a4cf
5
5
  SHA512:
6
- metadata.gz: 591ada95eae6b2c049196058a667c7b9a0d4ce16116c58bbdbe212386094243fa2f6094194724798dddcff12e1da85c4d56de419b9b7a97329b5818f6deea974
7
- data.tar.gz: de3475789350aac3db913a20008faa70ea0738c65f23e1c4133fed72070efe5f51cd366ada2709a8331548f3d49663a931e6669a0a5a8840b6302fa6290a6753
6
+ metadata.gz: f093bb31e6fcabde766857c96058bac29747ad11478cb50d6981229b78267fe285e9ed946a8ccfe240e6dfd3f78fc02335152a16242d8e77e8fee9c6829e42e5
7
+ data.tar.gz: 44a51f87369341bba55330b64caf63b17f080d9f03b68614348d8aba3dc64a6b49d044b65ff46b9a3466166d956ac822b53bbcb1f9d2ef5d9d3ae9c95d8d36a4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-analyticshub_v1beta1
2
2
 
3
+ ### v0.29.0 (2024-06-30)
4
+
5
+ * Regenerated from discovery document revision 20240624
6
+
3
7
  ### v0.28.0 (2024-05-19)
4
8
 
5
9
  * Regenerated using generator version 0.15.0
@@ -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
 
@@ -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.28.0"
19
+ GEM_VERSION = "0.29.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240122"
25
+ REVISION = "20240624"
26
26
  end
27
27
  end
28
28
  end
@@ -306,6 +306,8 @@ module Google
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
 
@@ -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.28.0
4
+ version: 0.29.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-05-19 00:00:00.000000000 Z
11
+ date: 2024-06-30 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.28.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-analyticshub_v1beta1/v0.29.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: []