Class: Google::Apis::GmailV1::WatchRequest
- Inherits:
-
Object
- Object
- Google::Apis::GmailV1::WatchRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/gmail_v1/classes.rb,
generated/google/apis/gmail_v1/representations.rb,
generated/google/apis/gmail_v1/representations.rb
Overview
Set up or update a new push notification watch on this user's mailbox.
Instance Attribute Summary collapse
-
#label_filter_action ⇒ String
Filtering behavior of labelIds list specified.
-
#label_ids ⇒ Array<String>
List of label_ids to restrict notifications about.
-
#topic_name ⇒ String
A fully qualified Google Cloud Pub/Sub API topic name to publish the events to.
Instance Method Summary collapse
-
#initialize(**args) ⇒ WatchRequest
constructor
A new instance of WatchRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ WatchRequest
Returns a new instance of WatchRequest
1531 1532 1533 |
# File 'generated/google/apis/gmail_v1/classes.rb', line 1531 def initialize(**args) update!(**args) end |
Instance Attribute Details
#label_filter_action ⇒ String
Filtering behavior of labelIds list specified.
Corresponds to the JSON property labelFilterAction
1511 1512 1513 |
# File 'generated/google/apis/gmail_v1/classes.rb', line 1511 def label_filter_action @label_filter_action end |
#label_ids ⇒ Array<String>
List of label_ids to restrict notifications about. By default, if unspecified,
all changes are pushed out. If specified then dictates which labels are
required for a push notification to be generated.
Corresponds to the JSON property labelIds
1518 1519 1520 |
# File 'generated/google/apis/gmail_v1/classes.rb', line 1518 def label_ids @label_ids end |
#topic_name ⇒ String
A fully qualified Google Cloud Pub/Sub API topic name to publish the events to.
This topic name must already exist in Cloud Pub/Sub and you must have
already granted gmail "publish" permission on it. For example, "projects/my-
project-identifier/topics/my-topic-name" (using the Cloud Pub/Sub "v1" topic
naming format).
Note that the "my-project-identifier" portion must exactly match your Google
developer project id (the one executing this watch request).
Corresponds to the JSON property topicName
1529 1530 1531 |
# File 'generated/google/apis/gmail_v1/classes.rb', line 1529 def topic_name @topic_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1536 1537 1538 1539 1540 |
# File 'generated/google/apis/gmail_v1/classes.rb', line 1536 def update!(**args) @label_filter_action = args[:label_filter_action] if args.key?(:label_filter_action) @label_ids = args[:label_ids] if args.key?(:label_ids) @topic_name = args[:topic_name] if args.key?(:topic_name) end |