class Google::Apis::PubsubV1::UpdateTopicRequest
Request for the UpdateTopic method.
Attributes
topic[RW]
A topic resource. Corresponds to the JSON property `topic` @return [Google::Apis::PubsubV1::Topic]
update_mask[RW]
Required. Indicates which fields in the provided topic to update. Must be specified and non-empty. Note that if `update_mask` contains “ message_storage_policy” but the `message_storage_policy` is not set in the ` topic` provided above, then the updated value is determined by the policy configured at the project or organization level. Corresponds to the JSON property `updateMask` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/pubsub_v1/classes.rb, line 1599 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_v1/classes.rb, line 1604 def update!(**args) @topic = args[:topic] if args.key?(:topic) @update_mask = args[:update_mask] if args.key?(:update_mask) end