class Google::Apis::VaultV1::HeldOrgUnit

The organizational unit covered by a hold. This structure is immutable.

Attributes

hold_time[RW]

When the organizational unit was put on hold. This property is immutable. Corresponds to the JSON property `holdTime` @return [String]

org_unit_id[RW]

The organizational unit's immutable ID as provided by the [Admin SDK](https:// developers.google.com/admin-sdk/). Corresponds to the JSON property `orgUnitId` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/vault_v1/classes.rb, line 993
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/vault_v1/classes.rb, line 998
def update!(**args)
  @hold_time = args[:hold_time] if args.key?(:hold_time)
  @org_unit_id = args[:org_unit_id] if args.key?(:org_unit_id)
end