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

55 lines (54 loc) 1.77 kB
import * as pulumi from "@pulumi/pulumi"; /** * Settings about where we should store your security data and logs. If the result is empty, it means that no custom-workspace configuration was set * * Uses Azure REST API version 2017-08-01-preview. */ export declare function getWorkspaceSetting(args: GetWorkspaceSettingArgs, opts?: pulumi.InvokeOptions): Promise<GetWorkspaceSettingResult>; export interface GetWorkspaceSettingArgs { /** * Name of the security setting */ workspaceSettingName: string; } /** * Configures where to store the OMS agent data for workspaces under a scope */ export interface GetWorkspaceSettingResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Resource Id */ readonly id: string; /** * Resource name */ readonly name: string; /** * All the VMs in this scope will send their security data to the mentioned workspace unless overridden by a setting with more specific scope */ readonly scope: string; /** * Resource type */ readonly type: string; /** * The full Azure ID of the workspace to save the data in */ readonly workspaceId: string; } /** * Settings about where we should store your security data and logs. If the result is empty, it means that no custom-workspace configuration was set * * Uses Azure REST API version 2017-08-01-preview. */ export declare function getWorkspaceSettingOutput(args: GetWorkspaceSettingOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetWorkspaceSettingResult>; export interface GetWorkspaceSettingOutputArgs { /** * Name of the security setting */ workspaceSettingName: pulumi.Input<string>; }