Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1NetworkDevice
- Inherits:
-
Object
- Object
- Google::Apis::ChromemanagementV1::GoogleChromeManagementV1NetworkDevice
- 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
Details about the network device. * This field provides device information, which is static and will not change over time. * Data for this field is controlled via policy: ReportNetworkDeviceConfiguration * Data Collection Frequency: At device startup * Default Data Reporting Frequency: At device startup - Policy Controlled: Yes * Cache: If the device is offline, the collected data is stored locally, and will be reported when the device is next online: Yes * Reported for affiliated users only: N/A
Instance Attribute Summary collapse
-
#iccid ⇒ String
Output only.
-
#imei ⇒ String
Output only.
-
#mac_address ⇒ String
Output only.
-
#mdn ⇒ String
Output only.
-
#meid ⇒ String
Output only.
-
#type ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChromeManagementV1NetworkDevice
constructor
A new instance of GoogleChromeManagementV1NetworkDevice.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChromeManagementV1NetworkDevice
Returns a new instance of GoogleChromeManagementV1NetworkDevice.
2360 2361 2362 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2360 def initialize(**args) update!(**args) end |
Instance Attribute Details
#iccid ⇒ String
Output only. The integrated circuit card ID associated with the device's sim
card.
Corresponds to the JSON property iccid
2333 2334 2335 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2333 def iccid @iccid end |
#imei ⇒ String
Output only. IMEI (if applicable) of the corresponding network device.
Corresponds to the JSON property imei
2338 2339 2340 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2338 def imei @imei end |
#mac_address ⇒ String
Output only. MAC address (if applicable) of the corresponding network device.
Corresponds to the JSON property macAddress
2343 2344 2345 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2343 def mac_address @mac_address end |
#mdn ⇒ String
Output only. The mobile directory number associated with the device's sim card.
Corresponds to the JSON property mdn
2348 2349 2350 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2348 def mdn @mdn end |
#meid ⇒ String
Output only. MEID (if applicable) of the corresponding network device.
Corresponds to the JSON property meid
2353 2354 2355 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2353 def meid @meid end |
#type ⇒ String
Output only. Network device type.
Corresponds to the JSON property type
2358 2359 2360 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2358 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2365 2366 2367 2368 2369 2370 2371 2372 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2365 def update!(**args) @iccid = args[:iccid] if args.key?(:iccid) @imei = args[:imei] if args.key?(:imei) @mac_address = args[:mac_address] if args.key?(:mac_address) @mdn = args[:mdn] if args.key?(:mdn) @meid = args[:meid] if args.key?(:meid) @type = args[:type] if args.key?(:type) end |