Class: Google::Apis::ConnectorsV1::EndUserAuthenticationNotifyEndpointDestinationEndPointHeader

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ EndUserAuthenticationNotifyEndpointDestinationEndPointHeader

Returns a new instance of EndUserAuthenticationNotifyEndpointDestinationEndPointHeader.



2900
2901
2902
# File 'lib/google/apis/connectors_v1/classes.rb', line 2900

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#keyString

Required. Key of Header. Corresponds to the JSON property key

Returns:

  • (String)


2893
2894
2895
# File 'lib/google/apis/connectors_v1/classes.rb', line 2893

def key
  @key
end

#valueString

Required. Value of Header. Corresponds to the JSON property value

Returns:

  • (String)


2898
2899
2900
# File 'lib/google/apis/connectors_v1/classes.rb', line 2898

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2905
2906
2907
2908
# File 'lib/google/apis/connectors_v1/classes.rb', line 2905

def update!(**args)
  @key = args[:key] if args.key?(:key)
  @value = args[:value] if args.key?(:value)
end