class ModifyPushConfigRequest extends Message

Request for the ModifyPushConfig method.

Protobuf type Google\Pubsub\V1\ModifyPushConfigRequest

Methods

__construct()

No description

string
getSubscription()

The name of the subscription.

setSubscription(string $var)

The name of the subscription.

getPushConfig()

The push configuration for future deliveries.

setPushConfig(PushConfig $var)

The push configuration for future deliveries.

Details

at line 36
__construct()

at line 48
string getSubscription()

The name of the subscription.

Format is projects/{project}/subscriptions/{sub}.

Generated from protobuf field string subscription = 1;

Return Value

string

at line 60
setSubscription(string $var)

The name of the subscription.

Format is projects/{project}/subscriptions/{sub}.

Generated from protobuf field string subscription = 1;

Parameters

string $var

at line 76
PushConfig getPushConfig()

The push configuration for future deliveries.

An empty pushConfig indicates that the Pub/Sub system should stop pushing messages from the given subscription and allow messages to be pulled and acknowledged - effectively pausing the subscription if Pull is not called.

Generated from protobuf field .google.pubsub.v1.PushConfig push_config = 2;

Return Value

PushConfig

at line 91
setPushConfig(PushConfig $var)

The push configuration for future deliveries.

An empty pushConfig indicates that the Pub/Sub system should stop pushing messages from the given subscription and allow messages to be pulled and acknowledged - effectively pausing the subscription if Pull is not called.

Generated from protobuf field .google.pubsub.v1.PushConfig push_config = 2;

Parameters

PushConfig $var