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
| 1480 1481 1482 | # File 'generated/google/apis/gmail_v1/classes.rb', line 1480 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
| 1460 1461 1462 | # File 'generated/google/apis/gmail_v1/classes.rb', line 1460 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
| 1467 1468 1469 | # File 'generated/google/apis/gmail_v1/classes.rb', line 1467 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
| 1478 1479 1480 | # File 'generated/google/apis/gmail_v1/classes.rb', line 1478 def topic_name @topic_name end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1485 1486 1487 1488 1489 | # File 'generated/google/apis/gmail_v1/classes.rb', line 1485 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 |