UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

60 lines (59 loc) 1.61 kB
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>; }