google-apis-pubsub_v1 0.16.0 → 0.17.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/pubsub_v1/classes.rb +11 -6
- data/lib/google/apis/pubsub_v1/gem_version.rb +2 -2
- data/lib/google/apis/pubsub_v1/service.rb +9 -8
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 075766c3311345c61878a6b0e4b88dca7e17244d129ebe912bc8e4581a32dc05
|
|
4
|
+
data.tar.gz: 9db1069a57bd63fbfd98bf170008c37fd476505bdbfd7574a1875216dcd26a7d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 61272c4760d071175d103b43cf9b32f891336d9616648fc64f0f4cba419f1e018e0b0c54d33683d5aa2c5d1d1c6acca7a62977116b6d2e884fbd31090bc29f58
|
|
7
|
+
data.tar.gz: 59f58a7481f2fcb444e52cb2033854801cf69eab8d661dee8ba9806d28b158376d7082879003b2759b832ac1ef6e2069f79fc706a507cd5b08e54a2be0d0f6d5
|
data/CHANGELOG.md
CHANGED
|
@@ -525,7 +525,10 @@ module Google
|
|
|
525
525
|
end
|
|
526
526
|
|
|
527
527
|
# Contains information needed for generating an [OpenID Connect token](https://
|
|
528
|
-
# developers.google.com/identity/protocols/OpenIDConnect).
|
|
528
|
+
# developers.google.com/identity/protocols/OpenIDConnect). [Service account
|
|
529
|
+
# email](https://cloud.google.com/iam/docs/service-accounts) used for generating
|
|
530
|
+
# the OIDC token. For more information on setting up authentication, see [Push
|
|
531
|
+
# subscriptions](https://cloud.google.com/pubsub/docs/push).
|
|
529
532
|
class OidcToken
|
|
530
533
|
include Google::Apis::Core::Hashable
|
|
531
534
|
|
|
@@ -539,9 +542,7 @@ module Google
|
|
|
539
542
|
# @return [String]
|
|
540
543
|
attr_accessor :audience
|
|
541
544
|
|
|
542
|
-
#
|
|
543
|
-
# be used for generating the OIDC token. See [Setting up push authentication](/
|
|
544
|
-
# pubsub/docs/push#setting_up_for_push_authentication) for more details.
|
|
545
|
+
#
|
|
545
546
|
# Corresponds to the JSON property `serviceAccountEmail`
|
|
546
547
|
# @return [String]
|
|
547
548
|
attr_accessor :service_account_email
|
|
@@ -721,7 +722,8 @@ module Google
|
|
|
721
722
|
# messages published with the same non-empty `ordering_key` value will be
|
|
722
723
|
# delivered to subscribers in the order in which they are received by the Pub/
|
|
723
724
|
# Sub system. All `PubsubMessage`s published in a given `PublishRequest` must
|
|
724
|
-
# specify the same `ordering_key` value.
|
|
725
|
+
# specify the same `ordering_key` value. For more information, see [ordering
|
|
726
|
+
# messages](https://cloud.google.com/pubsub/docs/ordering).
|
|
725
727
|
# Corresponds to the JSON property `orderingKey`
|
|
726
728
|
# @return [String]
|
|
727
729
|
attr_accessor :ordering_key
|
|
@@ -825,7 +827,10 @@ module Google
|
|
|
825
827
|
attr_accessor :attributes
|
|
826
828
|
|
|
827
829
|
# Contains information needed for generating an [OpenID Connect token](https://
|
|
828
|
-
# developers.google.com/identity/protocols/OpenIDConnect).
|
|
830
|
+
# developers.google.com/identity/protocols/OpenIDConnect). [Service account
|
|
831
|
+
# email](https://cloud.google.com/iam/docs/service-accounts) used for generating
|
|
832
|
+
# the OIDC token. For more information on setting up authentication, see [Push
|
|
833
|
+
# subscriptions](https://cloud.google.com/pubsub/docs/push).
|
|
829
834
|
# Corresponds to the JSON property `oidcToken`
|
|
830
835
|
# @return [Google::Apis::PubsubV1::OidcToken]
|
|
831
836
|
attr_accessor :oidc_token
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.17.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20220421"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -472,10 +472,11 @@ module Google
|
|
|
472
472
|
execute_or_queue_command(command, &block)
|
|
473
473
|
end
|
|
474
474
|
|
|
475
|
-
# Gets the configuration details of a snapshot. Snapshots are used in Seek
|
|
476
|
-
# operations, which allow
|
|
477
|
-
# you
|
|
478
|
-
#
|
|
475
|
+
# Gets the configuration details of a snapshot. Snapshots are used in [Seek](
|
|
476
|
+
# https://cloud.google.com/pubsub/docs/replay-overview) operations, which allow
|
|
477
|
+
# you to manage message acknowledgments in bulk. That is, you can set the
|
|
478
|
+
# acknowledgment state of messages in an existing subscription to the state
|
|
479
|
+
# captured by a snapshot.
|
|
479
480
|
# @param [String] snapshot
|
|
480
481
|
# Required. The name of the snapshot to get. Format is `projects/`project`/
|
|
481
482
|
# snapshots/`snap``.
|
|
@@ -592,10 +593,10 @@ module Google
|
|
|
592
593
|
execute_or_queue_command(command, &block)
|
|
593
594
|
end
|
|
594
595
|
|
|
595
|
-
# Updates an existing snapshot. Snapshots are used in Seek
|
|
596
|
-
# allow you to manage
|
|
597
|
-
#
|
|
598
|
-
# captured by a snapshot.
|
|
596
|
+
# Updates an existing snapshot. Snapshots are used in [Seek](https://cloud.
|
|
597
|
+
# google.com/pubsub/docs/replay-overview) operations, which allow you to manage
|
|
598
|
+
# message acknowledgments in bulk. That is, you can set the acknowledgment state
|
|
599
|
+
# of messages in an existing subscription to the state captured by a snapshot.
|
|
599
600
|
# @param [String] name
|
|
600
601
|
# The name of the snapshot.
|
|
601
602
|
# @param [Google::Apis::PubsubV1::UpdateSnapshotRequest] update_snapshot_request_object
|
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.
|
|
4
|
+
version: 0.17.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: 2022-
|
|
11
|
+
date: 2022-05-02 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.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-pubsub_v1/v0.17.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: []
|