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.
-
#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.
228 229 230 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 228 def initialize(**args) update!(**args) end |
Instance Attribute Details
#etags ⇒ String
ETag of the resource.
Corresponds to the JSON property etags
193 194 195 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 193 def @etags 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
199 200 201 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 199 def kind @kind end |
#resource_description ⇒ String
The brief description of the calendar resource.
Corresponds to the JSON property resourceDescription
204 205 206 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 204 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
210 211 212 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 210 def resource_email @resource_email end |
#resource_id ⇒ String
The unique ID for the calendar resource.
Corresponds to the JSON property resourceId
215 216 217 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 215 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
220 221 222 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 220 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
226 227 228 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 226 def resource_type @resource_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
233 234 235 236 237 238 239 240 241 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 233 def update!(**args) @etags = args[:etags] if args.key?(:etags) @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 |