Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryNotificationFilter

Inherits:
Object
  • Object
show all
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

Configures how the telemetry data should be filtered.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleChromeManagementV1TelemetryNotificationFilter

Returns a new instance of GoogleChromeManagementV1TelemetryNotificationFilter.



3664
3665
3666
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3664

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#device_idString

If set, only sends notifications for telemetry data coming from this device. Corresponds to the JSON property deviceId

Returns:

  • (String)


3639
3640
3641
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3639

def device_id
  @device_id
end

#device_org_unit_idString

If set, only sends notifications for telemetry data coming from devices in this org unit. Corresponds to the JSON property deviceOrgUnitId

Returns:

  • (String)


3645
3646
3647
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3645

def device_org_unit_id
  @device_org_unit_id
end

#telemetry_event_notification_filterGoogle::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryEventNotificationFilter

Configures how the telemetry events should be filtered. Corresponds to the JSON property telemetryEventNotificationFilter



3650
3651
3652
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3650

def telemetry_event_notification_filter
  @telemetry_event_notification_filter
end

#user_emailString

If set, only sends notifications for telemetry data coming from devices owned by this user. Corresponds to the JSON property userEmail

Returns:

  • (String)


3656
3657
3658
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3656

def user_email
  @user_email
end

#user_org_unit_idString

If set, only sends notifications for telemetry data coming from devices owned by users in this org unit. Corresponds to the JSON property userOrgUnitId

Returns:

  • (String)


3662
3663
3664
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3662

def user_org_unit_id
  @user_org_unit_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3669
3670
3671
3672
3673
3674
3675
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3669

def update!(**args)
  @device_id = args[:device_id] if args.key?(:device_id)
  @device_org_unit_id = args[:device_org_unit_id] if args.key?(:device_org_unit_id)
  @telemetry_event_notification_filter = args[:telemetry_event_notification_filter] if args.key?(:telemetry_event_notification_filter)
  @user_email = args[:user_email] if args.key?(:user_email)
  @user_org_unit_id = args[:user_org_unit_id] if args.key?(:user_org_unit_id)
end