Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1DisplayInfo

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

Information for a display.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleChromeManagementV1DisplayInfo

Returns a new instance of GoogleChromeManagementV1DisplayInfo.



1440
1441
1442
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1440

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

Instance Attribute Details

#device_idFixnum

Output only. Represents the graphics card device id. Corresponds to the JSON property deviceId

Returns:

  • (Fixnum)


1412
1413
1414
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1412

def device_id
  @device_id
end

#display_nameString

Output only. Display device name. Corresponds to the JSON property displayName

Returns:

  • (String)


1417
1418
1419
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1417

def display_name
  @display_name
end

#is_internalBoolean Also known as: is_internal?

Output only. Indicates if display is internal or not. Corresponds to the JSON property isInternal

Returns:

  • (Boolean)


1422
1423
1424
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1422

def is_internal
  @is_internal
end

#refresh_rateFixnum

Output only. Refresh rate in Hz. Corresponds to the JSON property refreshRate

Returns:

  • (Fixnum)


1428
1429
1430
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1428

def refresh_rate
  @refresh_rate
end

#resolution_heightFixnum

Output only. Resolution height in pixels. Corresponds to the JSON property resolutionHeight

Returns:

  • (Fixnum)


1433
1434
1435
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1433

def resolution_height
  @resolution_height
end

#resolution_widthFixnum

Output only. Resolution width in pixels. Corresponds to the JSON property resolutionWidth

Returns:

  • (Fixnum)


1438
1439
1440
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1438

def resolution_width
  @resolution_width
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1445
1446
1447
1448
1449
1450
1451
1452
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1445

def update!(**args)
  @device_id = args[:device_id] if args.key?(:device_id)
  @display_name = args[:display_name] if args.key?(:display_name)
  @is_internal = args[:is_internal] if args.key?(:is_internal)
  @refresh_rate = args[:refresh_rate] if args.key?(:refresh_rate)
  @resolution_height = args[:resolution_height] if args.key?(:resolution_height)
  @resolution_width = args[:resolution_width] if args.key?(:resolution_width)
end