Class: Google::Apis::VaultV1::AddMatterPermissionsRequest
- Inherits:
-
Object
- Object
- Google::Apis::VaultV1::AddMatterPermissionsRequest
- 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
Add an account with the permission specified. The role cannot be owner. If an account already has a role in the matter, it will be overwritten.
Instance Attribute Summary collapse
-
#cc_me ⇒ Boolean
(also: #cc_me?)
Only relevant if send_emails is true.
-
#matter_permission ⇒ Google::Apis::VaultV1::MatterPermission
Currently each matter only has one owner, and all others are collaborators.
-
#send_emails ⇒ Boolean
(also: #send_emails?)
True to send notification email to the added account.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AddMatterPermissionsRequest
constructor
A new instance of AddMatterPermissionsRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ AddMatterPermissionsRequest
Returns a new instance of AddMatterPermissionsRequest
183 184 185 |
# File 'generated/google/apis/vault_v1/classes.rb', line 183 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cc_me ⇒ Boolean Also known as: cc_me?
Only relevant if send_emails is true.
True to CC requestor in the email message.
False to not CC requestor.
Corresponds to the JSON property ccMe
166 167 168 |
# File 'generated/google/apis/vault_v1/classes.rb', line 166 def cc_me @cc_me end |
#matter_permission ⇒ Google::Apis::VaultV1::MatterPermission
Currently each matter only has one owner, and all others are collaborators.
When an account is purged, its corresponding MatterPermission resources
cease to exist.
Corresponds to the JSON property matterPermission
174 175 176 |
# File 'generated/google/apis/vault_v1/classes.rb', line 174 def @matter_permission end |
#send_emails ⇒ Boolean Also known as: send_emails?
True to send notification email to the added account.
False to not send notification email.
Corresponds to the JSON property sendEmails
180 181 182 |
# File 'generated/google/apis/vault_v1/classes.rb', line 180 def send_emails @send_emails end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
188 189 190 191 192 |
# File 'generated/google/apis/vault_v1/classes.rb', line 188 def update!(**args) @cc_me = args[:cc_me] if args.key?(:cc_me) @matter_permission = args[:matter_permission] if args.key?(:matter_permission) @send_emails = args[:send_emails] if args.key?(:send_emails) end |