Class BackendCredentialsArgs
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Azure.ApiManagement.Inputs
Assembly: Pulumi.Azure.dll
Syntax
public sealed class BackendCredentialsArgs : ResourceArgs
Constructors
View SourceBackendCredentialsArgs()
Declaration
public BackendCredentialsArgs()
Properties
View SourceAuthorization
An authorization block as defined below.
Declaration
public Input<BackendCredentialsAuthorizationArgs> Authorization { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<BackendCredentialsAuthorizationArgs> |
Certificates
A list of client certificate thumbprints to present to the backend host. The certificates must exist within the API Management Service.
Declaration
public InputList<string> Certificates { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<System.String> |
Header
A mapping of header parameters to pass to the backend host. The keys are the header names and the values are a comma separated string of header values. This is converted to a list before being passed to the API.
Declaration
public InputMap<string> Header { get; set; }
Property Value
| Type | Description |
|---|---|
| InputMap<System.String> |
Query
A mapping of query parameters to pass to the backend host. The keys are the query names and the values are a comma separated string of query values. This is converted to a list before being passed to the API.
Declaration
public InputMap<string> Query { get; set; }
Property Value
| Type | Description |
|---|---|
| InputMap<System.String> |