Class: Google::Apis::VaultV1::AddHeldAccountResult

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/vault_v1/classes.rb,
generated/google/apis/vault_v1/representations.rb,
generated/google/apis/vault_v1/representations.rb

Overview

A status detailing the status of each account creation, and the HeldAccount, if successful.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AddHeldAccountResult

Returns a new instance of AddHeldAccountResult.



115
116
117
# File 'generated/google/apis/vault_v1/classes.rb', line 115

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#accountGoogle::Apis::VaultV1::HeldAccount

An account being held in a particular hold. This structure is immutable. This can be either a single user or a google group, depending on the corpus. Corresponds to the JSON property account



103
104
105
# File 'generated/google/apis/vault_v1/classes.rb', line 103

def 
  @account
end

#statusGoogle::Apis::VaultV1::Status

The Status type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by gRPC. Each Status message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the API Design Guide. Corresponds to the JSON property status



113
114
115
# File 'generated/google/apis/vault_v1/classes.rb', line 113

def status
  @status
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



120
121
122
123
# File 'generated/google/apis/vault_v1/classes.rb', line 120

def update!(**args)
  @account = args[:account] if args.key?(:account)
  @status = args[:status] if args.key?(:status)
end