Class: Google::Apis::AdminDirectoryV1::OrgUnits
- Inherits:
-
Object
- Object
- Google::Apis::AdminDirectoryV1::OrgUnits
- 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
-
#etag ⇒ String
ETag of the resource.
-
#kind ⇒ String
The type of the API resource.
-
#organization_units ⇒ Array<Google::Apis::AdminDirectoryV1::OrgUnit>
A list of organizational unit objects.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OrgUnits
constructor
A new instance of OrgUnits.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ OrgUnits
Returns a new instance of OrgUnits.
3454 3455 3456 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3454 def initialize(**args) update!(**args) end |
Instance Attribute Details
#etag ⇒ String
ETag of the resource.
Corresponds to the JSON property etag
3441 3442 3443 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3441 def etag @etag end |
#kind ⇒ String
The type of the API resource. For Org Unit resources, the type is admin#
directory#orgUnits
.
Corresponds to the JSON property kind
3447 3448 3449 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3447 def kind @kind end |
#organization_units ⇒ Array<Google::Apis::AdminDirectoryV1::OrgUnit>
A list of organizational unit objects.
Corresponds to the JSON property organizationUnits
3452 3453 3454 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3452 def organization_units @organization_units end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3459 3460 3461 3462 3463 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3459 def update!(**args) @etag = args[:etag] if args.key?(:etag) @kind = args[:kind] if args.key?(:kind) @organization_units = args[:organization_units] if args.key?(:organization_units) end |