Class: Google::Apis::ConnectorsV1::EndUserAuthenticationNotifyEndpointDestinationEndPointHeader
- Inherits:
-
Object
- Object
- Google::Apis::ConnectorsV1::EndUserAuthenticationNotifyEndpointDestinationEndPointHeader
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/connectors_v1/classes.rb,
lib/google/apis/connectors_v1/representations.rb,
lib/google/apis/connectors_v1/representations.rb
Overview
Header details for a given header to be added to Endpoint.
Instance Attribute Summary collapse
-
#key ⇒ String
Required.
-
#value ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EndUserAuthenticationNotifyEndpointDestinationEndPointHeader
constructor
A new instance of EndUserAuthenticationNotifyEndpointDestinationEndPointHeader.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ EndUserAuthenticationNotifyEndpointDestinationEndPointHeader
Returns a new instance of EndUserAuthenticationNotifyEndpointDestinationEndPointHeader.
2846 2847 2848 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2846 def initialize(**args) update!(**args) end |
Instance Attribute Details
#key ⇒ String
Required. Key of Header.
Corresponds to the JSON property key
2839 2840 2841 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2839 def key @key end |
#value ⇒ String
Required. Value of Header.
Corresponds to the JSON property value
2844 2845 2846 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2844 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2851 2852 2853 2854 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2851 def update!(**args) @key = args[:key] if args.key?(:key) @value = args[:value] if args.key?(:value) end |