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

72 lines (71 loc) 2.37 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Rule results. * * Uses Azure REST API version 2023-02-01-preview. * * Other available API versions: 2020-07-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native security [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getSqlVulnerabilityAssessmentBaselineRule(args: GetSqlVulnerabilityAssessmentBaselineRuleArgs, opts?: pulumi.InvokeOptions): Promise<GetSqlVulnerabilityAssessmentBaselineRuleResult>; export interface GetSqlVulnerabilityAssessmentBaselineRuleArgs { /** * The identifier of the resource. */ resourceId: string; /** * The rule Id. */ ruleId: string; /** * The workspace Id. */ workspaceId: string; } /** * Rule results. */ export interface GetSqlVulnerabilityAssessmentBaselineRuleResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Resource Id */ readonly id: string; /** * Resource name */ readonly name: string; /** * Rule results properties. */ readonly properties: outputs.security.RuleResultsPropertiesResponse; /** * Resource type */ readonly type: string; } /** * Rule results. * * Uses Azure REST API version 2023-02-01-preview. * * Other available API versions: 2020-07-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native security [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getSqlVulnerabilityAssessmentBaselineRuleOutput(args: GetSqlVulnerabilityAssessmentBaselineRuleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSqlVulnerabilityAssessmentBaselineRuleResult>; export interface GetSqlVulnerabilityAssessmentBaselineRuleOutputArgs { /** * The identifier of the resource. */ resourceId: pulumi.Input<string>; /** * The rule Id. */ ruleId: pulumi.Input<string>; /** * The workspace Id. */ workspaceId: pulumi.Input<string>; }