Class: Google::Apis::AdminDirectoryV1::OrgUnit
- Inherits:
-
Object
- Object
- Google::Apis::AdminDirectoryV1::OrgUnit
- 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 Org Unit resource in Directory API.
Instance Attribute Summary collapse
-
#block_inheritance ⇒ Boolean
(also: #block_inheritance?)
Should block inheritance Corresponds to the JSON property
blockInheritance
. -
#description ⇒ String
Description of OrgUnit Corresponds to the JSON property
description
. -
#etag ⇒ String
ETag of the resource.
-
#kind ⇒ String
Kind of resource this is.
-
#name ⇒ String
Name of OrgUnit Corresponds to the JSON property
name
. -
#org_unit_id ⇒ String
Id of OrgUnit Corresponds to the JSON property
orgUnitId
. -
#org_unit_path ⇒ String
Path of OrgUnit Corresponds to the JSON property
orgUnitPath
. -
#parent_org_unit_id ⇒ String
Id of parent OrgUnit Corresponds to the JSON property
parentOrgUnitId
. -
#parent_org_unit_path ⇒ String
Path of parent OrgUnit Corresponds to the JSON property
parentOrgUnitPath
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OrgUnit
constructor
A new instance of OrgUnit.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ OrgUnit
Returns a new instance of OrgUnit
2317 2318 2319 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2317 def initialize(**args) update!(**args) end |
Instance Attribute Details
#block_inheritance ⇒ Boolean Also known as: block_inheritance?
Should block inheritance
Corresponds to the JSON property blockInheritance
2274 2275 2276 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2274 def block_inheritance @block_inheritance end |
#description ⇒ String
Description of OrgUnit
Corresponds to the JSON property description
2280 2281 2282 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2280 def description @description end |
#etag ⇒ String
ETag of the resource.
Corresponds to the JSON property etag
2285 2286 2287 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2285 def etag @etag end |
#kind ⇒ String
Kind of resource this is.
Corresponds to the JSON property kind
2290 2291 2292 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2290 def kind @kind end |
#name ⇒ String
Name of OrgUnit
Corresponds to the JSON property name
2295 2296 2297 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2295 def name @name end |
#org_unit_id ⇒ String
Id of OrgUnit
Corresponds to the JSON property orgUnitId
2300 2301 2302 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2300 def org_unit_id @org_unit_id end |
#org_unit_path ⇒ String
Path of OrgUnit
Corresponds to the JSON property orgUnitPath
2305 2306 2307 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2305 def org_unit_path @org_unit_path end |
#parent_org_unit_id ⇒ String
Id of parent OrgUnit
Corresponds to the JSON property parentOrgUnitId
2310 2311 2312 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2310 def parent_org_unit_id @parent_org_unit_id end |
#parent_org_unit_path ⇒ String
Path of parent OrgUnit
Corresponds to the JSON property parentOrgUnitPath
2315 2316 2317 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2315 def parent_org_unit_path @parent_org_unit_path end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2322 def update!(**args) @block_inheritance = args[:block_inheritance] if args.key?(:block_inheritance) @description = args[:description] if args.key?(:description) @etag = args[:etag] if args.key?(:etag) @kind = args[:kind] if args.key?(:kind) @name = args[:name] if args.key?(:name) @org_unit_id = args[:org_unit_id] if args.key?(:org_unit_id) @org_unit_path = args[:org_unit_path] if args.key?(:org_unit_path) @parent_org_unit_id = args[:parent_org_unit_id] if args.key?(:parent_org_unit_id) @parent_org_unit_path = args[:parent_org_unit_path] if args.key?(:parent_org_unit_path) end |