Class: Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeaders
- Inherits:
-
Object
- Object
- Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeaders
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/beyondcorp_v1/classes.rb,
lib/google/apis/beyondcorp_v1/representations.rb,
lib/google/apis/beyondcorp_v1/representations.rb
Overview
Contextual headers configuration.
Instance Attribute Summary collapse
-
#device_info ⇒ Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedDeviceInfo
The delegated device information configuration.
-
#group_info ⇒ Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedGroupInfo
The delegated group configuration details.
-
#output_type ⇒ String
Optional.
-
#user_info ⇒ Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedUserInfo
The configuration information for the delegated user.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeaders
constructor
A new instance of GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeaders.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeaders
Returns a new instance of GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeaders.
1844 1845 1846 |
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 1844 def initialize(**args) update!(**args) end |
Instance Attribute Details
#device_info ⇒ Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedDeviceInfo
The delegated device information configuration.
Corresponds to the JSON property deviceInfo
1827 1828 1829 |
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 1827 def device_info @device_info end |
#group_info ⇒ Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedGroupInfo
The delegated group configuration details.
Corresponds to the JSON property groupInfo
1832 1833 1834 |
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 1832 def group_info @group_info end |
#output_type ⇒ String
Optional. Default output type for all enabled headers.
Corresponds to the JSON property outputType
1837 1838 1839 |
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 1837 def output_type @output_type end |
#user_info ⇒ Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedUserInfo
The configuration information for the delegated user.
Corresponds to the JSON property userInfo
1842 1843 1844 |
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 1842 def user_info @user_info end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1849 1850 1851 1852 1853 1854 |
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 1849 def update!(**args) @device_info = args[:device_info] if args.key?(:device_info) @group_info = args[:group_info] if args.key?(:group_info) @output_type = args[:output_type] if args.key?(:output_type) @user_info = args[:user_info] if args.key?(:user_info) end |