google-apis-pubsub_v1 0.52.0 → 0.53.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: 666fb31bad3f8aea2b1228386599b09ede930f558c76a223ab5a6b5e271b8f2c
4
- data.tar.gz: 5b84dce98403ed2fc30f22f0ac2f7a3c64eae1f55aa68f9a60851563a92600ac
3
+ metadata.gz: 021d4d3dd6c81266a4c6459415c71b8b8c1512e2b6bf26516565916c9541563b
4
+ data.tar.gz: fd2be5a6d8f2e34d35c84f5d958f11f47216d9c3a757968e2e0fefc9713b0622
5
5
  SHA512:
6
- metadata.gz: b3fca6b5c489c194ac8647e3c34cd2f541035db49855a0b593f5ca69b52604954d7a6fcfe97762b82c1706ce862b9f98bfa60a6336bb805adb1964e7621eae26
7
- data.tar.gz: 9d87100c12c746d5200698665c02d19a59d5b4b1fe0da295c1b1579296eb879938a0a886d73938150cf0bcd57b85aeed8ffa2bdd6aa536c4e9dd46f15c622e85
6
+ metadata.gz: b484ff2478c4be5ea62c02970f0b3860691e56da97b1e46bc51e21dd718a6899a286fed58a6c6bf6b228908ef785a6703433e2797735cb6a33e074c667eba355
7
+ data.tar.gz: a5892457b2d5a0031ccf8372bf5b9757d8308240cfdbe7ef24c830149617a3d03a3faf65089f8d661ca348ba0e22ab089c2310c96a0227404ea6d2a30fa4fe31
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-pubsub_v1
2
2
 
3
+ ### v0.53.0 (2024-06-26)
4
+
5
+ * Regenerated from discovery document revision 20240618
6
+
3
7
  ### v0.52.0 (2024-06-16)
4
8
 
5
9
  * Regenerated from discovery document revision 20240607
@@ -42,6 +42,35 @@ module Google
42
42
  end
43
43
  end
44
44
 
45
+ # Information about an associated Analytics Hub subscription (https://cloud.
46
+ # google.com/bigquery/docs/analytics-hub-manage-subscriptions).
47
+ class AnalyticsHubSubscriptionInfo
48
+ include Google::Apis::Core::Hashable
49
+
50
+ # Optional. The name of the associated Analytics Hub listing resource. Pattern: "
51
+ # projects/`project`/locations/`location`/dataExchanges/`data_exchange`/listings/
52
+ # `listing`"
53
+ # Corresponds to the JSON property `listing`
54
+ # @return [String]
55
+ attr_accessor :listing
56
+
57
+ # Optional. The name of the associated Analytics Hub subscription resource.
58
+ # Pattern: "projects/`project`/locations/`location`/subscriptions/`subscription`"
59
+ # Corresponds to the JSON property `subscription`
60
+ # @return [String]
61
+ attr_accessor :subscription
62
+
63
+ def initialize(**args)
64
+ update!(**args)
65
+ end
66
+
67
+ # Update properties of this object
68
+ def update!(**args)
69
+ @listing = args[:listing] if args.key?(:listing)
70
+ @subscription = args[:subscription] if args.key?(:subscription)
71
+ end
72
+ end
73
+
45
74
  # Configuration for writing message data in Avro format. Message payloads and
46
75
  # metadata will be written to files as an Avro binary.
47
76
  class AvroConfig
@@ -1619,6 +1648,12 @@ module Google
1619
1648
  # @return [Fixnum]
1620
1649
  attr_accessor :ack_deadline_seconds
1621
1650
 
1651
+ # Information about an associated Analytics Hub subscription (https://cloud.
1652
+ # google.com/bigquery/docs/analytics-hub-manage-subscriptions).
1653
+ # Corresponds to the JSON property `analyticsHubSubscriptionInfo`
1654
+ # @return [Google::Apis::PubsubV1::AnalyticsHubSubscriptionInfo]
1655
+ attr_accessor :analytics_hub_subscription_info
1656
+
1622
1657
  # Configuration for a BigQuery subscription.
1623
1658
  # Corresponds to the JSON property `bigqueryConfig`
1624
1659
  # @return [Google::Apis::PubsubV1::BigQueryConfig]
@@ -1765,6 +1800,7 @@ module Google
1765
1800
  # Update properties of this object
1766
1801
  def update!(**args)
1767
1802
  @ack_deadline_seconds = args[:ack_deadline_seconds] if args.key?(:ack_deadline_seconds)
1803
+ @analytics_hub_subscription_info = args[:analytics_hub_subscription_info] if args.key?(:analytics_hub_subscription_info)
1768
1804
  @bigquery_config = args[:bigquery_config] if args.key?(:bigquery_config)
1769
1805
  @cloud_storage_config = args[:cloud_storage_config] if args.key?(:cloud_storage_config)
1770
1806
  @dead_letter_policy = args[:dead_letter_policy] if args.key?(:dead_letter_policy)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module PubsubV1
18
18
  # Version of the google-apis-pubsub_v1 gem
19
- GEM_VERSION = "0.52.0"
19
+ GEM_VERSION = "0.53.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 = "20240607"
25
+ REVISION = "20240618"
26
26
  end
27
27
  end
28
28
  end
@@ -28,6 +28,12 @@ module Google
28
28
  include Google::Apis::Core::JsonObjectSupport
29
29
  end
30
30
 
31
+ class AnalyticsHubSubscriptionInfo
32
+ class Representation < Google::Apis::Core::JsonRepresentation; end
33
+
34
+ include Google::Apis::Core::JsonObjectSupport
35
+ end
36
+
31
37
  class AvroConfig
32
38
  class Representation < Google::Apis::Core::JsonRepresentation; end
33
39
 
@@ -359,6 +365,14 @@ module Google
359
365
  end
360
366
  end
361
367
 
368
+ class AnalyticsHubSubscriptionInfo
369
+ # @private
370
+ class Representation < Google::Apis::Core::JsonRepresentation
371
+ property :listing, as: 'listing'
372
+ property :subscription, as: 'subscription'
373
+ end
374
+ end
375
+
362
376
  class AvroConfig
363
377
  # @private
364
378
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -734,6 +748,8 @@ module Google
734
748
  # @private
735
749
  class Representation < Google::Apis::Core::JsonRepresentation
736
750
  property :ack_deadline_seconds, as: 'ackDeadlineSeconds'
751
+ property :analytics_hub_subscription_info, as: 'analyticsHubSubscriptionInfo', class: Google::Apis::PubsubV1::AnalyticsHubSubscriptionInfo, decorator: Google::Apis::PubsubV1::AnalyticsHubSubscriptionInfo::Representation
752
+
737
753
  property :bigquery_config, as: 'bigqueryConfig', class: Google::Apis::PubsubV1::BigQueryConfig, decorator: Google::Apis::PubsubV1::BigQueryConfig::Representation
738
754
 
739
755
  property :cloud_storage_config, as: 'cloudStorageConfig', class: Google::Apis::PubsubV1::CloudStorageConfig, decorator: Google::Apis::PubsubV1::CloudStorageConfig::Representation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-pubsub_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.52.0
4
+ version: 0.53.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-06-16 00:00:00.000000000 Z
11
+ date: 2024-06-27 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-pubsub_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-pubsub_v1/v0.52.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-pubsub_v1/v0.53.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-pubsub_v1
63
63
  post_install_message:
64
64
  rdoc_options: []