@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 3.1 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Get a BrokerAuthenticationResource
*
* Uses Azure REST API version 2023-10-04-preview.
*/
export declare function getBrokerAuthentication(args: GetBrokerAuthenticationArgs, opts?: pulumi.InvokeOptions): Promise<GetBrokerAuthenticationResult>;
export interface GetBrokerAuthenticationArgs {
/**
* Name of MQ broker/authentication resource
*/
authenticationName: string;
/**
* Name of MQ broker resource
*/
brokerName: string;
/**
* Name of MQ resource
*/
mqName: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
}
/**
* MQ broker/authentication resource
*/
export interface GetBrokerAuthenticationResult {
/**
* The list of authentication methods supported by the Authentication Resource. For each array element, NOTE - Enum only authenticator type supported.
*/
readonly authenticationMethods: outputs.iotoperationsmq.BrokerAuthenticatorMethodsResponse[];
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* Extended Location
*/
readonly extendedLocation: outputs.iotoperationsmq.ExtendedLocationPropertyResponse;
/**
* Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
*/
readonly id: string;
/**
* The array of listener Resources it supports.
*/
readonly listenerRef: string[];
/**
* The geo-location where the resource lives
*/
readonly location: string;
/**
* The name of the resource
*/
readonly name: string;
/**
* The status of the last operation.
*/
readonly provisioningState: string;
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: outputs.iotoperationsmq.SystemDataResponse;
/**
* Resource tags.
*/
readonly tags?: {
[key: string]: string;
};
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: string;
}
/**
* Get a BrokerAuthenticationResource
*
* Uses Azure REST API version 2023-10-04-preview.
*/
export declare function getBrokerAuthenticationOutput(args: GetBrokerAuthenticationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetBrokerAuthenticationResult>;
export interface GetBrokerAuthenticationOutputArgs {
/**
* Name of MQ broker/authentication resource
*/
authenticationName: pulumi.Input<string>;
/**
* Name of MQ broker resource
*/
brokerName: pulumi.Input<string>;
/**
* Name of MQ resource
*/
mqName: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
}