Show / Hide Table of Contents

Class BackendCredentialsArgs

Inheritance
System.Object
InputArgs
ResourceArgs
BackendCredentialsArgs
Inherited Members
ResourceArgs.Empty
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 Source

BackendCredentialsArgs()

Declaration
public BackendCredentialsArgs()

Properties

View Source

Authorization

An authorization block as defined below.

Declaration
public Input<BackendCredentialsAuthorizationArgs> Authorization { get; set; }
Property Value
Type Description
Input<BackendCredentialsAuthorizationArgs>
View Source

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>
View Source

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>
View Source

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>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.