class Google::Apis::PubsubV1beta1a::ModifyPushConfigRequest

Request for the ModifyPushConfig method.

Attributes

push_config[RW]

Configuration for a push delivery endpoint. Corresponds to the JSON property `pushConfig` @return [Google::Apis::PubsubV1beta1a::PushConfig]

subscription[RW]

The name of the subscription. Corresponds to the JSON property `subscription` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/pubsub_v1beta1a/classes.rb, line 220
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 225
def update!(**args)
  @push_config = args[:push_config] if args.key?(:push_config)
  @subscription = args[:subscription] if args.key?(:subscription)
end