Class: Google::Apis::AdminDirectoryV1::CalendarResource
- Inherits:
-
Object
- Object
- Google::Apis::AdminDirectoryV1::CalendarResource
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/admin_directory_v1/classes.rb,
generated/google/apis/admin_directory_v1/representations.rb,
generated/google/apis/admin_directory_v1/representations.rb
Overview
JSON template for Calendar Resource object in Directory API.
Instance Attribute Summary collapse
-
#etags ⇒ String
ETag of the resource.
-
#generated_resource_name ⇒ String
The auto-generated name of the calendar resource which includes metadata about the resource such as building name, floor, capacity, etc.
-
#kind ⇒ String
The type of the resource.
-
#resource_description ⇒ String
The brief description of the calendar resource.
-
#resource_email ⇒ String
The read-only email ID for the calendar resource.
-
#resource_id ⇒ String
The unique ID for the calendar resource.
-
#resource_name ⇒ String
The name of the calendar resource.
-
#resource_type ⇒ String
The type of the calendar resource.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CalendarResource
constructor
A new instance of CalendarResource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CalendarResource
Returns a new instance of CalendarResource
302 303 304 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 302 def initialize(**args) update!(**args) end |
Instance Attribute Details
#etags ⇒ String
ETag of the resource.
Corresponds to the JSON property etags
260 261 262 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 260 def @etags end |
#generated_resource_name ⇒ String
The auto-generated name of the calendar resource which includes metadata about
the resource such as building name, floor, capacity, etc. For example, NYC-2-
Training Room 1A (16)
Corresponds to the JSON property generatedResourceName
267 268 269 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 267 def generated_resource_name @generated_resource_name end |
#kind ⇒ String
The type of the resource. For calendar resources, the value is admin#directory#
resources#calendars#CalendarResource.
Corresponds to the JSON property kind
273 274 275 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 273 def kind @kind end |
#resource_description ⇒ String
The brief description of the calendar resource.
Corresponds to the JSON property resourceDescription
278 279 280 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 278 def resource_description @resource_description end |
#resource_email ⇒ String
The read-only email ID for the calendar resource. Generated as part of
creating a new calendar resource.
Corresponds to the JSON property resourceEmail
284 285 286 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 284 def resource_email @resource_email end |
#resource_id ⇒ String
The unique ID for the calendar resource.
Corresponds to the JSON property resourceId
289 290 291 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 289 def resource_id @resource_id end |
#resource_name ⇒ String
The name of the calendar resource. For example, Training Room 1A
Corresponds to the JSON property resourceName
294 295 296 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 294 def resource_name @resource_name end |
#resource_type ⇒ String
The type of the calendar resource. Used for grouping resources in the calendar
user interface.
Corresponds to the JSON property resourceType
300 301 302 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 300 def resource_type @resource_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
307 308 309 310 311 312 313 314 315 316 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 307 def update!(**args) @etags = args[:etags] if args.key?(:etags) @generated_resource_name = args[:generated_resource_name] if args.key?(:generated_resource_name) @kind = args[:kind] if args.key?(:kind) @resource_description = args[:resource_description] if args.key?(:resource_description) @resource_email = args[:resource_email] if args.key?(:resource_email) @resource_id = args[:resource_id] if args.key?(:resource_id) @resource_name = args[:resource_name] if args.key?(:resource_name) @resource_type = args[:resource_type] if args.key?(:resource_type) end |