Class: Google::Apis::ComputeAlpha::AutoscalingPolicyQueueBasedScalingCloudPubSub
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::AutoscalingPolicyQueueBasedScalingCloudPubSub
- Defined in:
- generated/google/apis/compute_alpha/classes.rb,
generated/google/apis/compute_alpha/representations.rb,
generated/google/apis/compute_alpha/representations.rb
Overview
Configuration parameters for scaling based on Cloud Pub/Sub subscription queue.
Instance Attribute Summary collapse
-
#subscription ⇒ String
Cloud Pub/Sub subscription used for scaling.
-
#topic ⇒ String
Cloud Pub/Sub topic used for scaling.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AutoscalingPolicyQueueBasedScalingCloudPubSub
constructor
A new instance of AutoscalingPolicyQueueBasedScalingCloudPubSub.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ AutoscalingPolicyQueueBasedScalingCloudPubSub
Returns a new instance of AutoscalingPolicyQueueBasedScalingCloudPubSub
2728 2729 2730 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 2728 def initialize(**args) update!(**args) end |
Instance Attribute Details
#subscription ⇒ String
Cloud Pub/Sub subscription used for scaling. Provide the partial URL (starting
with projects/) or just the subscription name. The subscription must be
assigned to the topic specified in topicName and must be in a pull
configuration. The subscription must belong to the same project as the
Autoscaler.
Corresponds to the JSON property subscription
2719 2720 2721 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 2719 def subscription @subscription end |
#topic ⇒ String
Cloud Pub/Sub topic used for scaling. Provide the partial URL or partial URL (
starting with projects/) or just the topic name. The topic must belong to the
same project as the Autoscaler resource.
Corresponds to the JSON property topic
2726 2727 2728 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 2726 def topic @topic end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2733 2734 2735 2736 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 2733 def update!(**args) @subscription = args[:subscription] if args.key?(:subscription) @topic = args[:topic] if args.key?(:topic) end |