Class: Google::Apis::ConnectorsV1::EndUserAuthenticationNotifyEndpointDestinationEndPoint
- Inherits:
-
Object
- Object
- Google::Apis::ConnectorsV1::EndUserAuthenticationNotifyEndpointDestinationEndPoint
- 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
Endpoint message includes details of the Destination endpoint.
Instance Attribute Summary collapse
-
#endpoint_uri ⇒ String
Required.
-
#headers ⇒ Array<Google::Apis::ConnectorsV1::EndUserAuthenticationNotifyEndpointDestinationEndPointHeader>
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EndUserAuthenticationNotifyEndpointDestinationEndPoint
constructor
A new instance of EndUserAuthenticationNotifyEndpointDestinationEndPoint.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ EndUserAuthenticationNotifyEndpointDestinationEndPoint
Returns a new instance of EndUserAuthenticationNotifyEndpointDestinationEndPoint.
2781 2782 2783 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2781 def initialize(**args) update!(**args) end |
Instance Attribute Details
#endpoint_uri ⇒ String
Required. The URI of the Endpoint.
Corresponds to the JSON property endpointUri
2774 2775 2776 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2774 def endpoint_uri @endpoint_uri end |
#headers ⇒ Array<Google::Apis::ConnectorsV1::EndUserAuthenticationNotifyEndpointDestinationEndPointHeader>
Optional. List of Header to be added to the Endpoint.
Corresponds to the JSON property headers
2779 2780 2781 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2779 def headers @headers end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2786 2787 2788 2789 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2786 def update!(**args) @endpoint_uri = args[:endpoint_uri] if args.key?(:endpoint_uri) @headers = args[:headers] if args.key?(:headers) end |