class Google::Apis::PubsubV1beta1a::PushConfig

Configuration for a push delivery endpoint.

Attributes

push_endpoint[RW]

A URL locating the endpoint to which messages should be pushed. For example, a Webhook endpoint might use “example.com/push”. Corresponds to the JSON property `pushEndpoint` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/pubsub_v1beta1a/classes.rb, line 510
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/pubsub_v1beta1a/classes.rb, line 515
def update!(**args)
  @push_endpoint = args[:push_endpoint] if args.key?(:push_endpoint)
end