Class: Google::Apis::BigtableadminV2::UpdateAuthorizedViewRequest
- Inherits:
-
Object
- Object
- Google::Apis::BigtableadminV2::UpdateAuthorizedViewRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/bigtableadmin_v2/classes.rb,
lib/google/apis/bigtableadmin_v2/representations.rb,
lib/google/apis/bigtableadmin_v2/representations.rb
Overview
The request for UpdateAuthorizedView.
Instance Attribute Summary collapse
-
#authorized_view ⇒ Google::Apis::BigtableadminV2::AuthorizedView
An Authorized View of a Cloud Bigtable Table.
-
#ignore_warnings ⇒ Boolean
(also: #ignore_warnings?)
Optional.
-
#update_mask ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UpdateAuthorizedViewRequest
constructor
A new instance of UpdateAuthorizedViewRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ UpdateAuthorizedViewRequest
Returns a new instance of UpdateAuthorizedViewRequest.
3805 3806 3807 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 3805 def initialize(**args) update!(**args) end |
Instance Attribute Details
#authorized_view ⇒ Google::Apis::BigtableadminV2::AuthorizedView
An Authorized View of a Cloud Bigtable Table.
Corresponds to the JSON property authorizedView
3787 3788 3789 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 3787 def @authorized_view end |
#ignore_warnings ⇒ Boolean Also known as: ignore_warnings?
Optional. If true, ignore the safety checks when updating the AuthorizedView.
Corresponds to the JSON property ignoreWarnings
3792 3793 3794 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 3792 def ignore_warnings @ignore_warnings end |
#update_mask ⇒ String
Optional. The list of fields to update. A mask specifying which fields in the
AuthorizedView resource should be updated. This mask is relative to the
AuthorizedView resource, not to the request message. A field will be
overwritten if it is in the mask. If empty, all fields set in the request will
be overwritten. A special value *
means to overwrite all fields (including
fields not set in the request).
Corresponds to the JSON property updateMask
3803 3804 3805 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 3803 def update_mask @update_mask end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3810 3811 3812 3813 3814 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 3810 def update!(**args) @authorized_view = args[:authorized_view] if args.key?(:authorized_view) @ignore_warnings = args[:ignore_warnings] if args.key?(:ignore_warnings) @update_mask = args[:update_mask] if args.key?(:update_mask) end |