Class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaRuleSetting
- Inherits:
-
Object
- Object
- Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaRuleSetting
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/beyondcorp_v1alpha/classes.rb,
lib/google/apis/beyondcorp_v1alpha/representations.rb,
lib/google/apis/beyondcorp_v1alpha/representations.rb
Overview
Message to capture settings for a BrowserDlpRule
Instance Attribute Summary collapse
-
#type ⇒ String
Required.
-
#value ⇒ Hash<String,Object>
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudBeyondcorpPartnerservicesV1alphaRuleSetting
constructor
A new instance of GoogleCloudBeyondcorpPartnerservicesV1alphaRuleSetting.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudBeyondcorpPartnerservicesV1alphaRuleSetting
Returns a new instance of GoogleCloudBeyondcorpPartnerservicesV1alphaRuleSetting.
2463 2464 2465 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2463 def initialize(**args) update!(**args) end |
Instance Attribute Details
#type ⇒ String
Required. Immutable. The type of the Setting. .
Corresponds to the JSON property type
2456 2457 2458 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2456 def type @type end |
#value ⇒ Hash<String,Object>
Required. The value of the Setting.
Corresponds to the JSON property value
2461 2462 2463 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2461 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2468 2469 2470 2471 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2468 def update!(**args) @type = args[:type] if args.key?(:type) @value = args[:value] if args.key?(:value) end |