@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 3.01 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Get a BrokerAuthorizationResource
*
* Uses Azure REST API version 2023-10-04-preview.
*/
export declare function getBrokerAuthorization(args: GetBrokerAuthorizationArgs, opts?: pulumi.InvokeOptions): Promise<GetBrokerAuthorizationResult>;
export interface GetBrokerAuthorizationArgs {
/**
* Name of MQ broker/authorization resource
*/
authorizationName: 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/authorization resource
*/
export interface GetBrokerAuthorizationResult {
/**
* The list of authorization policies supported by the Authorization Resource.
*/
readonly authorizationPolicies: outputs.iotoperationsmq.AuthorizationConfigResponse;
/**
* 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 BrokerAuthorizationResource
*
* Uses Azure REST API version 2023-10-04-preview.
*/
export declare function getBrokerAuthorizationOutput(args: GetBrokerAuthorizationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetBrokerAuthorizationResult>;
export interface GetBrokerAuthorizationOutputArgs {
/**
* Name of MQ broker/authorization resource
*/
authorizationName: 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>;
}