Class: Google::Apis::AdminDirectoryV1::ChromeOsDevice::DeviceFile
- Inherits:
-
Object
- Object
- Google::Apis::AdminDirectoryV1::ChromeOsDevice::DeviceFile
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/admin_directory_v1/classes.rb,
lib/google/apis/admin_directory_v1/representations.rb,
lib/google/apis/admin_directory_v1/representations.rb
Instance Attribute Summary collapse
-
#create_time ⇒ DateTime
Date and time the file was created Corresponds to the JSON property
createTime
. -
#download_url ⇒ String
File download URL Corresponds to the JSON property
downloadUrl
. -
#name ⇒ String
File name Corresponds to the JSON property
name
. -
#type ⇒ String
File type Corresponds to the JSON property
type
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DeviceFile
constructor
A new instance of DeviceFile.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DeviceFile
Returns a new instance of DeviceFile.
1563 1564 1565 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1563 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ DateTime
Date and time the file was created
Corresponds to the JSON property createTime
1546 1547 1548 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1546 def create_time @create_time end |
#download_url ⇒ String
File download URL
Corresponds to the JSON property downloadUrl
1551 1552 1553 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1551 def download_url @download_url end |
#name ⇒ String
File name
Corresponds to the JSON property name
1556 1557 1558 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1556 def name @name end |
#type ⇒ String
File type
Corresponds to the JSON property type
1561 1562 1563 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1561 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1568 1569 1570 1571 1572 1573 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1568 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @download_url = args[:download_url] if args.key?(:download_url) @name = args[:name] if args.key?(:name) @type = args[:type] if args.key?(:type) end |