azure-native-v2.iotoperations.BrokerAuthentication
Explore with Pulumi AI
Instance broker authentication resource Azure REST API version: 2024-07-01-preview.
Other available API versions: 2024-08-15-preview, 2024-09-15-preview, 2024-11-01.
Create BrokerAuthentication Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new BrokerAuthentication(name: string, args: BrokerAuthenticationArgs, opts?: CustomResourceOptions);
@overload
def BrokerAuthentication(resource_name: str,
args: BrokerAuthenticationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def BrokerAuthentication(resource_name: str,
opts: Optional[ResourceOptions] = None,
broker_name: Optional[str] = None,
extended_location: Optional[ExtendedLocationArgs] = None,
instance_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
authentication_name: Optional[str] = None,
properties: Optional[BrokerAuthenticationPropertiesArgs] = None)
func NewBrokerAuthentication(ctx *Context, name string, args BrokerAuthenticationArgs, opts ...ResourceOption) (*BrokerAuthentication, error)
public BrokerAuthentication(string name, BrokerAuthenticationArgs args, CustomResourceOptions? opts = null)
public BrokerAuthentication(String name, BrokerAuthenticationArgs args)
public BrokerAuthentication(String name, BrokerAuthenticationArgs args, CustomResourceOptions options)
type: azure-native:iotoperations:BrokerAuthentication
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name
This property is required. string - The unique name of the resource.
- args
This property is required. BrokerAuthenticationArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name
This property is required. str - The unique name of the resource.
- args
This property is required. BrokerAuthenticationArgs - The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. BrokerAuthenticationArgs - The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. BrokerAuthenticationArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name
This property is required. String - The unique name of the resource.
- args
This property is required. BrokerAuthenticationArgs - The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var brokerAuthenticationResource = new AzureNative.Iotoperations.BrokerAuthentication("brokerAuthenticationResource", new()
{
BrokerName = "string",
ExtendedLocation =
{
{ "name", "string" },
{ "type", "string" },
},
InstanceName = "string",
ResourceGroupName = "string",
AuthenticationName = "string",
Properties =
{
{ "authenticationMethods", new[]
{
{
{ "method", "string" },
{ "custom",
{
{ "endpoint", "string" },
{ "auth",
{
{ "x509",
{
{ "secretRef", "string" },
} },
} },
{ "caCertConfigMap", "string" },
{ "headers",
{
{ "string", "string" },
} },
} },
{ "serviceAccountToken",
{
{ "audiences", new[]
{
"string",
} },
} },
{ "x509Credentials",
{
{ "authorizationAttributes",
{
{ "string",
{
{ "attributes",
{
{ "string", "string" },
} },
{ "subject", "string" },
} },
} },
{ "trustedClientCaCert", "string" },
} },
},
} },
},
});
example, err := iotoperations.NewBrokerAuthentication(ctx, "brokerAuthenticationResource", &iotoperations.BrokerAuthenticationArgs{
BrokerName: "string",
ExtendedLocation: map[string]interface{}{
"name": "string",
"type": "string",
},
InstanceName: "string",
ResourceGroupName: "string",
AuthenticationName: "string",
Properties: map[string]interface{}{
"authenticationMethods": []map[string]interface{}{
map[string]interface{}{
"method": "string",
"custom": map[string]interface{}{
"endpoint": "string",
"auth": map[string]interface{}{
"x509": map[string]interface{}{
"secretRef": "string",
},
},
"caCertConfigMap": "string",
"headers": map[string]interface{}{
"string": "string",
},
},
"serviceAccountToken": map[string]interface{}{
"audiences": []string{
"string",
},
},
"x509Credentials": map[string]interface{}{
"authorizationAttributes": map[string]interface{}{
"string": map[string]interface{}{
"attributes": map[string]interface{}{
"string": "string",
},
"subject": "string",
},
},
"trustedClientCaCert": "string",
},
},
},
},
})
var brokerAuthenticationResource = new BrokerAuthentication("brokerAuthenticationResource", BrokerAuthenticationArgs.builder()
.brokerName("string")
.extendedLocation(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.instanceName("string")
.resourceGroupName("string")
.authenticationName("string")
.properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build());
broker_authentication_resource = azure_native.iotoperations.BrokerAuthentication("brokerAuthenticationResource",
broker_name=string,
extended_location={
name: string,
type: string,
},
instance_name=string,
resource_group_name=string,
authentication_name=string,
properties={
authenticationMethods: [{
method: string,
custom: {
endpoint: string,
auth: {
x509: {
secretRef: string,
},
},
caCertConfigMap: string,
headers: {
string: string,
},
},
serviceAccountToken: {
audiences: [string],
},
x509Credentials: {
authorizationAttributes: {
string: {
attributes: {
string: string,
},
subject: string,
},
},
trustedClientCaCert: string,
},
}],
})
const brokerAuthenticationResource = new azure_native.iotoperations.BrokerAuthentication("brokerAuthenticationResource", {
brokerName: "string",
extendedLocation: {
name: "string",
type: "string",
},
instanceName: "string",
resourceGroupName: "string",
authenticationName: "string",
properties: {
authenticationMethods: [{
method: "string",
custom: {
endpoint: "string",
auth: {
x509: {
secretRef: "string",
},
},
caCertConfigMap: "string",
headers: {
string: "string",
},
},
serviceAccountToken: {
audiences: ["string"],
},
x509Credentials: {
authorizationAttributes: {
string: {
attributes: {
string: "string",
},
subject: "string",
},
},
trustedClientCaCert: "string",
},
}],
},
});
type: azure-native:iotoperations:BrokerAuthentication
properties:
authenticationName: string
brokerName: string
extendedLocation:
name: string
type: string
instanceName: string
properties:
authenticationMethods:
- custom:
auth:
x509:
secretRef: string
caCertConfigMap: string
endpoint: string
headers:
string: string
method: string
serviceAccountToken:
audiences:
- string
x509Credentials:
authorizationAttributes:
string:
attributes:
string: string
subject: string
trustedClientCaCert: string
resourceGroupName: string
BrokerAuthentication Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The BrokerAuthentication resource accepts the following input properties:
- Broker
Name This property is required. Changes to this property will trigger replacement.
- Name of broker.
- Extended
Location This property is required. Changes to this property will trigger replacement.
Azure Native. Io TOperations. Inputs. Extended Location - Edge location of the resource.
- Instance
Name This property is required. Changes to this property will trigger replacement.
- Name of instance.
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group. The name is case insensitive.
- Authentication
Name Changes to this property will trigger replacement.
- Name of Instance broker authentication resource
- Properties
Pulumi.
Azure Native. Io TOperations. Inputs. Broker Authentication Properties - The resource-specific properties for this resource.
- Broker
Name This property is required. Changes to this property will trigger replacement.
- Name of broker.
- Extended
Location This property is required. Changes to this property will trigger replacement.
Location Args - Edge location of the resource.
- Instance
Name This property is required. Changes to this property will trigger replacement.
- Name of instance.
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group. The name is case insensitive.
- Authentication
Name Changes to this property will trigger replacement.
- Name of Instance broker authentication resource
- Properties
Broker
Authentication Properties Args - The resource-specific properties for this resource.
- broker
Name This property is required. Changes to this property will trigger replacement.
- Name of broker.
- extended
Location This property is required. Changes to this property will trigger replacement.
Location - Edge location of the resource.
- instance
Name This property is required. Changes to this property will trigger replacement.
- Name of instance.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group. The name is case insensitive.
- authentication
Name Changes to this property will trigger replacement.
- Name of Instance broker authentication resource
- properties
Broker
Authentication Properties - The resource-specific properties for this resource.
- broker
Name This property is required. Changes to this property will trigger replacement.
- Name of broker.
- extended
Location This property is required. Changes to this property will trigger replacement.
Location - Edge location of the resource.
- instance
Name This property is required. Changes to this property will trigger replacement.
- Name of instance.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group. The name is case insensitive.
- authentication
Name Changes to this property will trigger replacement.
- Name of Instance broker authentication resource
- properties
Broker
Authentication Properties - The resource-specific properties for this resource.
- broker_
name This property is required. Changes to this property will trigger replacement.
- Name of broker.
- extended_
location This property is required. Changes to this property will trigger replacement.
Location Args - Edge location of the resource.
- instance_
name This property is required. Changes to this property will trigger replacement.
- Name of instance.
- resource_
group_ name This property is required. Changes to this property will trigger replacement.
- The name of the resource group. The name is case insensitive.
- authentication_
name Changes to this property will trigger replacement.
- Name of Instance broker authentication resource
- properties
Broker
Authentication Properties Args - The resource-specific properties for this resource.
- broker
Name This property is required. Changes to this property will trigger replacement.
- Name of broker.
- extended
Location This property is required. Changes to this property will trigger replacement.
- Edge location of the resource.
- instance
Name This property is required. Changes to this property will trigger replacement.
- Name of instance.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group. The name is case insensitive.
- authentication
Name Changes to this property will trigger replacement.
- Name of Instance broker authentication resource
- properties Property Map
- The resource-specific properties for this resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the BrokerAuthentication resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. Io TOperations. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
BrokerAuthenticationMethod, BrokerAuthenticationMethodArgs
- Custom
- CustomCustom authentication configuration.
- Service
Account Token - ServiceAccountTokenServiceAccountToken authentication configuration.
- X509Credentials
- X509CredentialsX.509 authentication configuration.
- Broker
Authentication Method Custom - CustomCustom authentication configuration.
- Broker
Authentication Method Service Account Token - ServiceAccountTokenServiceAccountToken authentication configuration.
- Broker
Authentication Method X509Credentials - X509CredentialsX.509 authentication configuration.
- Custom
- CustomCustom authentication configuration.
- Service
Account Token - ServiceAccountTokenServiceAccountToken authentication configuration.
- X509Credentials
- X509CredentialsX.509 authentication configuration.
- Custom
- CustomCustom authentication configuration.
- Service
Account Token - ServiceAccountTokenServiceAccountToken authentication configuration.
- X509Credentials
- X509CredentialsX.509 authentication configuration.
- CUSTOM
- CustomCustom authentication configuration.
- SERVICE_ACCOUNT_TOKEN
- ServiceAccountTokenServiceAccountToken authentication configuration.
- X509_CREDENTIALS
- X509CredentialsX.509 authentication configuration.
- "Custom"
- CustomCustom authentication configuration.
- "Service
Account Token" - ServiceAccountTokenServiceAccountToken authentication configuration.
- "X509Credentials"
- X509CredentialsX.509 authentication configuration.
BrokerAuthenticationProperties, BrokerAuthenticationPropertiesArgs
- Authentication
Methods This property is required. List<Pulumi.Azure Native. Io TOperations. Inputs. Broker Authenticator Methods> - Defines a set of Broker authentication methods to be used on
BrokerListeners
. For each array element one authenticator type supported.
- Authentication
Methods This property is required. []BrokerAuthenticator Methods - Defines a set of Broker authentication methods to be used on
BrokerListeners
. For each array element one authenticator type supported.
- authentication
Methods This property is required. List<BrokerAuthenticator Methods> - Defines a set of Broker authentication methods to be used on
BrokerListeners
. For each array element one authenticator type supported.
- authentication
Methods This property is required. BrokerAuthenticator Methods[] - Defines a set of Broker authentication methods to be used on
BrokerListeners
. For each array element one authenticator type supported.
- authentication_
methods This property is required. Sequence[BrokerAuthenticator Methods] - Defines a set of Broker authentication methods to be used on
BrokerListeners
. For each array element one authenticator type supported.
- authentication
Methods This property is required. List<Property Map> - Defines a set of Broker authentication methods to be used on
BrokerListeners
. For each array element one authenticator type supported.
BrokerAuthenticationPropertiesResponse, BrokerAuthenticationPropertiesResponseArgs
- Authentication
Methods This property is required. List<Pulumi.Azure Native. Io TOperations. Inputs. Broker Authenticator Methods Response> - Defines a set of Broker authentication methods to be used on
BrokerListeners
. For each array element one authenticator type supported. - Provisioning
State This property is required. string - The status of the last operation.
- Authentication
Methods This property is required. []BrokerAuthenticator Methods Response - Defines a set of Broker authentication methods to be used on
BrokerListeners
. For each array element one authenticator type supported. - Provisioning
State This property is required. string - The status of the last operation.
- authentication
Methods This property is required. List<BrokerAuthenticator Methods Response> - Defines a set of Broker authentication methods to be used on
BrokerListeners
. For each array element one authenticator type supported. - provisioning
State This property is required. String - The status of the last operation.
- authentication
Methods This property is required. BrokerAuthenticator Methods Response[] - Defines a set of Broker authentication methods to be used on
BrokerListeners
. For each array element one authenticator type supported. - provisioning
State This property is required. string - The status of the last operation.
- authentication_
methods This property is required. Sequence[BrokerAuthenticator Methods Response] - Defines a set of Broker authentication methods to be used on
BrokerListeners
. For each array element one authenticator type supported. - provisioning_
state This property is required. str - The status of the last operation.
- authentication
Methods This property is required. List<Property Map> - Defines a set of Broker authentication methods to be used on
BrokerListeners
. For each array element one authenticator type supported. - provisioning
State This property is required. String - The status of the last operation.
BrokerAuthenticatorCustomAuth, BrokerAuthenticatorCustomAuthArgs
- X509
This property is required. Pulumi.Azure Native. Io TOperations. Inputs. X509Manual Certificate - X509 Custom Auth type details.
- X509
This property is required. X509ManualCertificate - X509 Custom Auth type details.
- x509
This property is required. X509ManualCertificate - X509 Custom Auth type details.
- x509
This property is required. X509ManualCertificate - X509 Custom Auth type details.
- x509
This property is required. X509ManualCertificate - X509 Custom Auth type details.
- x509
This property is required. Property Map - X509 Custom Auth type details.
BrokerAuthenticatorCustomAuthResponse, BrokerAuthenticatorCustomAuthResponseArgs
- X509
This property is required. Pulumi.Azure Native. Io TOperations. Inputs. X509Manual Certificate Response - X509 Custom Auth type details.
- X509
This property is required. X509ManualCertificate Response - X509 Custom Auth type details.
- x509
This property is required. X509ManualCertificate Response - X509 Custom Auth type details.
- x509
This property is required. X509ManualCertificate Response - X509 Custom Auth type details.
- x509
This property is required. X509ManualCertificate Response - X509 Custom Auth type details.
- x509
This property is required. Property Map - X509 Custom Auth type details.
BrokerAuthenticatorMethodCustom, BrokerAuthenticatorMethodCustomArgs
- Endpoint
This property is required. string - Endpoint of the custom authentication server. Must be an HTTPS endpoint.
- Auth
Pulumi.
Azure Native. Io TOperations. Inputs. Broker Authenticator Custom Auth - Optional authentication needed for authenticating with the custom authentication server.
- Ca
Cert stringConfig Map - Optional CA certificate for validating the custom authentication server's certificate.
- Headers Dictionary<string, string>
- Additional HTTP headers to pass to the custom authentication server.
- Endpoint
This property is required. string - Endpoint of the custom authentication server. Must be an HTTPS endpoint.
- Auth
Broker
Authenticator Custom Auth - Optional authentication needed for authenticating with the custom authentication server.
- Ca
Cert stringConfig Map - Optional CA certificate for validating the custom authentication server's certificate.
- Headers map[string]string
- Additional HTTP headers to pass to the custom authentication server.
- endpoint
This property is required. String - Endpoint of the custom authentication server. Must be an HTTPS endpoint.
- auth
Broker
Authenticator Custom Auth - Optional authentication needed for authenticating with the custom authentication server.
- ca
Cert StringConfig Map - Optional CA certificate for validating the custom authentication server's certificate.
- headers Map<String,String>
- Additional HTTP headers to pass to the custom authentication server.
- endpoint
This property is required. string - Endpoint of the custom authentication server. Must be an HTTPS endpoint.
- auth
Broker
Authenticator Custom Auth - Optional authentication needed for authenticating with the custom authentication server.
- ca
Cert stringConfig Map - Optional CA certificate for validating the custom authentication server's certificate.
- headers {[key: string]: string}
- Additional HTTP headers to pass to the custom authentication server.
- endpoint
This property is required. str - Endpoint of the custom authentication server. Must be an HTTPS endpoint.
- auth
Broker
Authenticator Custom Auth - Optional authentication needed for authenticating with the custom authentication server.
- ca_
cert_ strconfig_ map - Optional CA certificate for validating the custom authentication server's certificate.
- headers Mapping[str, str]
- Additional HTTP headers to pass to the custom authentication server.
- endpoint
This property is required. String - Endpoint of the custom authentication server. Must be an HTTPS endpoint.
- auth Property Map
- Optional authentication needed for authenticating with the custom authentication server.
- ca
Cert StringConfig Map - Optional CA certificate for validating the custom authentication server's certificate.
- headers Map<String>
- Additional HTTP headers to pass to the custom authentication server.
BrokerAuthenticatorMethodCustomResponse, BrokerAuthenticatorMethodCustomResponseArgs
- Endpoint
This property is required. string - Endpoint of the custom authentication server. Must be an HTTPS endpoint.
- Auth
Pulumi.
Azure Native. Io TOperations. Inputs. Broker Authenticator Custom Auth Response - Optional authentication needed for authenticating with the custom authentication server.
- Ca
Cert stringConfig Map - Optional CA certificate for validating the custom authentication server's certificate.
- Headers Dictionary<string, string>
- Additional HTTP headers to pass to the custom authentication server.
- Endpoint
This property is required. string - Endpoint of the custom authentication server. Must be an HTTPS endpoint.
- Auth
Broker
Authenticator Custom Auth Response - Optional authentication needed for authenticating with the custom authentication server.
- Ca
Cert stringConfig Map - Optional CA certificate for validating the custom authentication server's certificate.
- Headers map[string]string
- Additional HTTP headers to pass to the custom authentication server.
- endpoint
This property is required. String - Endpoint of the custom authentication server. Must be an HTTPS endpoint.
- auth
Broker
Authenticator Custom Auth Response - Optional authentication needed for authenticating with the custom authentication server.
- ca
Cert StringConfig Map - Optional CA certificate for validating the custom authentication server's certificate.
- headers Map<String,String>
- Additional HTTP headers to pass to the custom authentication server.
- endpoint
This property is required. string - Endpoint of the custom authentication server. Must be an HTTPS endpoint.
- auth
Broker
Authenticator Custom Auth Response - Optional authentication needed for authenticating with the custom authentication server.
- ca
Cert stringConfig Map - Optional CA certificate for validating the custom authentication server's certificate.
- headers {[key: string]: string}
- Additional HTTP headers to pass to the custom authentication server.
- endpoint
This property is required. str - Endpoint of the custom authentication server. Must be an HTTPS endpoint.
- auth
Broker
Authenticator Custom Auth Response - Optional authentication needed for authenticating with the custom authentication server.
- ca_
cert_ strconfig_ map - Optional CA certificate for validating the custom authentication server's certificate.
- headers Mapping[str, str]
- Additional HTTP headers to pass to the custom authentication server.
- endpoint
This property is required. String - Endpoint of the custom authentication server. Must be an HTTPS endpoint.
- auth Property Map
- Optional authentication needed for authenticating with the custom authentication server.
- ca
Cert StringConfig Map - Optional CA certificate for validating the custom authentication server's certificate.
- headers Map<String>
- Additional HTTP headers to pass to the custom authentication server.
BrokerAuthenticatorMethodSat, BrokerAuthenticatorMethodSatArgs
- Audiences
This property is required. List<string> - List of allowed audience.
- Audiences
This property is required. []string - List of allowed audience.
- audiences
This property is required. List<String> - List of allowed audience.
- audiences
This property is required. string[] - List of allowed audience.
- audiences
This property is required. Sequence[str] - List of allowed audience.
- audiences
This property is required. List<String> - List of allowed audience.
BrokerAuthenticatorMethodSatResponse, BrokerAuthenticatorMethodSatResponseArgs
- Audiences
This property is required. List<string> - List of allowed audience.
- Audiences
This property is required. []string - List of allowed audience.
- audiences
This property is required. List<String> - List of allowed audience.
- audiences
This property is required. string[] - List of allowed audience.
- audiences
This property is required. Sequence[str] - List of allowed audience.
- audiences
This property is required. List<String> - List of allowed audience.
BrokerAuthenticatorMethodX509, BrokerAuthenticatorMethodX509Args
- Dictionary<string, Pulumi.
Azure Native. Io TOperations. Inputs. Broker Authenticator Method X509Attributes> - X509 authorization attributes properties.
- Trusted
Client stringCa Cert - Name of the trusted client ca cert resource.
- map[string]Broker
Authenticator Method X509Attributes - X509 authorization attributes properties.
- Trusted
Client stringCa Cert - Name of the trusted client ca cert resource.
- Map<String,Broker
Authenticator Method X509Attributes> - X509 authorization attributes properties.
- trusted
Client StringCa Cert - Name of the trusted client ca cert resource.
- {[key: string]: Broker
Authenticator Method X509Attributes} - X509 authorization attributes properties.
- trusted
Client stringCa Cert - Name of the trusted client ca cert resource.
- Mapping[str, Broker
Authenticator Method X509Attributes] - X509 authorization attributes properties.
- trusted_
client_ strca_ cert - Name of the trusted client ca cert resource.
- Map<Property Map>
- X509 authorization attributes properties.
- trusted
Client StringCa Cert - Name of the trusted client ca cert resource.
BrokerAuthenticatorMethodX509Attributes, BrokerAuthenticatorMethodX509AttributesArgs
- Attributes
This property is required. Dictionary<string, string> - Attributes object.
- Subject
This property is required. string - Subject of the X509 attribute.
- Attributes
This property is required. map[string]string - Attributes object.
- Subject
This property is required. string - Subject of the X509 attribute.
- attributes
This property is required. Map<String,String> - Attributes object.
- subject
This property is required. String - Subject of the X509 attribute.
- attributes
This property is required. {[key: string]: string} - Attributes object.
- subject
This property is required. string - Subject of the X509 attribute.
- attributes
This property is required. Mapping[str, str] - Attributes object.
- subject
This property is required. str - Subject of the X509 attribute.
- attributes
This property is required. Map<String> - Attributes object.
- subject
This property is required. String - Subject of the X509 attribute.
BrokerAuthenticatorMethodX509AttributesResponse, BrokerAuthenticatorMethodX509AttributesResponseArgs
- Attributes
This property is required. Dictionary<string, string> - Attributes object.
- Subject
This property is required. string - Subject of the X509 attribute.
- Attributes
This property is required. map[string]string - Attributes object.
- Subject
This property is required. string - Subject of the X509 attribute.
- attributes
This property is required. Map<String,String> - Attributes object.
- subject
This property is required. String - Subject of the X509 attribute.
- attributes
This property is required. {[key: string]: string} - Attributes object.
- subject
This property is required. string - Subject of the X509 attribute.
- attributes
This property is required. Mapping[str, str] - Attributes object.
- subject
This property is required. str - Subject of the X509 attribute.
- attributes
This property is required. Map<String> - Attributes object.
- subject
This property is required. String - Subject of the X509 attribute.
BrokerAuthenticatorMethodX509Response, BrokerAuthenticatorMethodX509ResponseArgs
- Dictionary<string, Pulumi.
Azure Native. Io TOperations. Inputs. Broker Authenticator Method X509Attributes Response> - X509 authorization attributes properties.
- Trusted
Client stringCa Cert - Name of the trusted client ca cert resource.
- map[string]Broker
Authenticator Method X509Attributes Response - X509 authorization attributes properties.
- Trusted
Client stringCa Cert - Name of the trusted client ca cert resource.
- Map<String,Broker
Authenticator Method X509Attributes Response> - X509 authorization attributes properties.
- trusted
Client StringCa Cert - Name of the trusted client ca cert resource.
- {[key: string]: Broker
Authenticator Method X509Attributes Response} - X509 authorization attributes properties.
- trusted
Client stringCa Cert - Name of the trusted client ca cert resource.
- Mapping[str, Broker
Authenticator Method X509Attributes Response] - X509 authorization attributes properties.
- trusted_
client_ strca_ cert - Name of the trusted client ca cert resource.
- Map<Property Map>
- X509 authorization attributes properties.
- trusted
Client StringCa Cert - Name of the trusted client ca cert resource.
BrokerAuthenticatorMethods, BrokerAuthenticatorMethodsArgs
- Method
This property is required. string | Pulumi.Azure Native. Io TOperations. Broker Authentication Method - Custom authentication configuration.
- Custom
Pulumi.
Azure Native. Io TOperations. Inputs. Broker Authenticator Method Custom - Custom authentication configuration.
- Service
Account Pulumi.Token Azure Native. Io TOperations. Inputs. Broker Authenticator Method Sat - ServiceAccountToken authentication configuration.
- X509Credentials
Pulumi.
Azure Native. Io TOperations. Inputs. Broker Authenticator Method X509 - X.509 authentication configuration.
- Method
This property is required. string | BrokerAuthentication Method - Custom authentication configuration.
- Custom
Broker
Authenticator Method Custom - Custom authentication configuration.
- Service
Account BrokerToken Authenticator Method Sat - ServiceAccountToken authentication configuration.
- X509Credentials
Broker
Authenticator Method X509 - X.509 authentication configuration.
- method
This property is required. String | BrokerAuthentication Method - Custom authentication configuration.
- custom
Broker
Authenticator Method Custom - Custom authentication configuration.
- service
Account BrokerToken Authenticator Method Sat - ServiceAccountToken authentication configuration.
- x509Credentials
Broker
Authenticator Method X509 - X.509 authentication configuration.
- method
This property is required. string | BrokerAuthentication Method - Custom authentication configuration.
- custom
Broker
Authenticator Method Custom - Custom authentication configuration.
- service
Account BrokerToken Authenticator Method Sat - ServiceAccountToken authentication configuration.
- x509Credentials
Broker
Authenticator Method X509 - X.509 authentication configuration.
- method
This property is required. str | BrokerAuthentication Method - Custom authentication configuration.
- custom
Broker
Authenticator Method Custom - Custom authentication configuration.
- service_
account_ Brokertoken Authenticator Method Sat - ServiceAccountToken authentication configuration.
- x509_
credentials BrokerAuthenticator Method X509 - X.509 authentication configuration.
- method
This property is required. String | "Custom" | "ServiceAccount Token" | "X509Credentials" - Custom authentication configuration.
- custom Property Map
- Custom authentication configuration.
- service
Account Property MapToken - ServiceAccountToken authentication configuration.
- x509Credentials Property Map
- X.509 authentication configuration.
BrokerAuthenticatorMethodsResponse, BrokerAuthenticatorMethodsResponseArgs
- Method
This property is required. string - Custom authentication configuration.
- Custom
Pulumi.
Azure Native. Io TOperations. Inputs. Broker Authenticator Method Custom Response - Custom authentication configuration.
- Service
Account Pulumi.Token Azure Native. Io TOperations. Inputs. Broker Authenticator Method Sat Response - ServiceAccountToken authentication configuration.
- X509Credentials
Pulumi.
Azure Native. Io TOperations. Inputs. Broker Authenticator Method X509Response - X.509 authentication configuration.
- Method
This property is required. string - Custom authentication configuration.
- Custom
Broker
Authenticator Method Custom Response - Custom authentication configuration.
- Service
Account BrokerToken Authenticator Method Sat Response - ServiceAccountToken authentication configuration.
- X509Credentials
Broker
Authenticator Method X509Response - X.509 authentication configuration.
- method
This property is required. String - Custom authentication configuration.
- custom
Broker
Authenticator Method Custom Response - Custom authentication configuration.
- service
Account BrokerToken Authenticator Method Sat Response - ServiceAccountToken authentication configuration.
- x509Credentials
Broker
Authenticator Method X509Response - X.509 authentication configuration.
- method
This property is required. string - Custom authentication configuration.
- custom
Broker
Authenticator Method Custom Response - Custom authentication configuration.
- service
Account BrokerToken Authenticator Method Sat Response - ServiceAccountToken authentication configuration.
- x509Credentials
Broker
Authenticator Method X509Response - X.509 authentication configuration.
- method
This property is required. str - Custom authentication configuration.
- custom
Broker
Authenticator Method Custom Response - Custom authentication configuration.
- service_
account_ Brokertoken Authenticator Method Sat Response - ServiceAccountToken authentication configuration.
- x509_
credentials BrokerAuthenticator Method X509Response - X.509 authentication configuration.
- method
This property is required. String - Custom authentication configuration.
- custom Property Map
- Custom authentication configuration.
- service
Account Property MapToken - ServiceAccountToken authentication configuration.
- x509Credentials Property Map
- X.509 authentication configuration.
ExtendedLocation, ExtendedLocationArgs
- Name
This property is required. string - The name of the extended location.
- Type
This property is required. string | Pulumi.Azure Native. Io TOperations. Extended Location Type - Type of ExtendedLocation.
- Name
This property is required. string - The name of the extended location.
- Type
This property is required. string | ExtendedLocation Type - Type of ExtendedLocation.
- name
This property is required. String - The name of the extended location.
- type
This property is required. String | ExtendedLocation Type - Type of ExtendedLocation.
- name
This property is required. string - The name of the extended location.
- type
This property is required. string | ExtendedLocation Type - Type of ExtendedLocation.
- name
This property is required. str - The name of the extended location.
- type
This property is required. str | ExtendedLocation Type - Type of ExtendedLocation.
- name
This property is required. String - The name of the extended location.
- type
This property is required. String | "CustomLocation" - Type of ExtendedLocation.
ExtendedLocationResponse, ExtendedLocationResponseArgs
ExtendedLocationType, ExtendedLocationTypeArgs
- Custom
Location - CustomLocationCustomLocation type
- Extended
Location Type Custom Location - CustomLocationCustomLocation type
- Custom
Location - CustomLocationCustomLocation type
- Custom
Location - CustomLocationCustomLocation type
- CUSTOM_LOCATION
- CustomLocationCustomLocation type
- "Custom
Location" - CustomLocationCustomLocation type
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
X509ManualCertificate, X509ManualCertificateArgs
- Secret
Ref This property is required. string - Kubernetes secret containing an X.509 client certificate. This is a reference to the secret through an identifying name, not the secret itself.
- Secret
Ref This property is required. string - Kubernetes secret containing an X.509 client certificate. This is a reference to the secret through an identifying name, not the secret itself.
- secret
Ref This property is required. String - Kubernetes secret containing an X.509 client certificate. This is a reference to the secret through an identifying name, not the secret itself.
- secret
Ref This property is required. string - Kubernetes secret containing an X.509 client certificate. This is a reference to the secret through an identifying name, not the secret itself.
- secret_
ref This property is required. str - Kubernetes secret containing an X.509 client certificate. This is a reference to the secret through an identifying name, not the secret itself.
- secret
Ref This property is required. String - Kubernetes secret containing an X.509 client certificate. This is a reference to the secret through an identifying name, not the secret itself.
X509ManualCertificateResponse, X509ManualCertificateResponseArgs
- Secret
Ref This property is required. string - Kubernetes secret containing an X.509 client certificate. This is a reference to the secret through an identifying name, not the secret itself.
- Secret
Ref This property is required. string - Kubernetes secret containing an X.509 client certificate. This is a reference to the secret through an identifying name, not the secret itself.
- secret
Ref This property is required. String - Kubernetes secret containing an X.509 client certificate. This is a reference to the secret through an identifying name, not the secret itself.
- secret
Ref This property is required. string - Kubernetes secret containing an X.509 client certificate. This is a reference to the secret through an identifying name, not the secret itself.
- secret_
ref This property is required. str - Kubernetes secret containing an X.509 client certificate. This is a reference to the secret through an identifying name, not the secret itself.
- secret
Ref This property is required. String - Kubernetes secret containing an X.509 client certificate. This is a reference to the secret through an identifying name, not the secret itself.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:iotoperations:BrokerAuthentication gjfyvwhgwouiqfxml /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.IoTOperations/instances/{instanceName}/brokers/{brokerName}/authentications/{authenticationName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v2 pulumi/pulumi-azure-native
- License
- Apache-2.0