Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1ListTelemetryNotificationConfigsResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ChromemanagementV1::GoogleChromeManagementV1ListTelemetryNotificationConfigsResponse
 
 
- Includes:
 - Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/chromemanagement_v1/classes.rb,
lib/google/apis/chromemanagement_v1/representations.rb,
lib/google/apis/chromemanagement_v1/representations.rb 
Overview
Response message for listing notification configs for a customer.
Instance Attribute Summary collapse
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A token, which can be sent as
page_tokento retrieve the next page. - 
  
    
      #telemetry_notification_configs  ⇒ Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryNotificationConfig> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The telemetry notification configs from the specified customer.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleChromeManagementV1ListTelemetryNotificationConfigsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleChromeManagementV1ListTelemetryNotificationConfigsResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleChromeManagementV1ListTelemetryNotificationConfigsResponse
Returns a new instance of GoogleChromeManagementV1ListTelemetryNotificationConfigsResponse.
      2153 2154 2155  | 
    
      # File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2153 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#next_page_token ⇒ String
A token, which can be sent as page_token to retrieve the next page. If this
field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
      2146 2147 2148  | 
    
      # File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2146 def next_page_token @next_page_token end  | 
  
#telemetry_notification_configs ⇒ Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryNotificationConfig>
The telemetry notification configs from the specified customer.
Corresponds to the JSON property telemetryNotificationConfigs
      2151 2152 2153  | 
    
      # File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2151 def telemetry_notification_configs @telemetry_notification_configs end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2158 2159 2160 2161  | 
    
      # File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2158 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @telemetry_notification_configs = args[:telemetry_notification_configs] if args.key?(:telemetry_notification_configs) end  |