@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.61 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Get a specific security operator for the requested scope.
*
* Uses Azure REST API version 2023-01-01-preview.
*/
export declare function getSecurityOperator(args: GetSecurityOperatorArgs, opts?: pulumi.InvokeOptions): Promise<GetSecurityOperatorResult>;
export interface GetSecurityOperatorArgs {
/**
* name of the pricing configuration
*/
pricingName: string;
/**
* name of the securityOperator
*/
securityOperatorName: string;
}
/**
* Security operator under a given subscription and pricing
*/
export interface GetSecurityOperatorResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* Resource Id
*/
readonly id: string;
/**
* Identity for the resource.
*/
readonly identity?: outputs.security.IdentityResponse;
/**
* Resource name
*/
readonly name: string;
/**
* Resource type
*/
readonly type: string;
}
/**
* Get a specific security operator for the requested scope.
*
* Uses Azure REST API version 2023-01-01-preview.
*/
export declare function getSecurityOperatorOutput(args: GetSecurityOperatorOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSecurityOperatorResult>;
export interface GetSecurityOperatorOutputArgs {
/**
* name of the pricing configuration
*/
pricingName: pulumi.Input<string>;
/**
* name of the securityOperator
*/
securityOperatorName: pulumi.Input<string>;
}