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

68 lines (67 loc) 2.33 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets a single custom entity store assignment by name for the provided subscription and resource group. * * Uses Azure REST API version 2021-07-01-preview. */ export declare function getCustomEntityStoreAssignment(args: GetCustomEntityStoreAssignmentArgs, opts?: pulumi.InvokeOptions): Promise<GetCustomEntityStoreAssignmentResult>; export interface GetCustomEntityStoreAssignmentArgs { /** * Name of the custom entity store assignment. Generated name is GUID. */ customEntityStoreAssignmentName: string; /** * The name of the resource group within the user's subscription. The name is case insensitive. */ resourceGroupName: string; } /** * Custom entity store assignment */ export interface GetCustomEntityStoreAssignmentResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * The link to entity store database. */ readonly entityStoreDatabaseLink?: string; /** * Resource Id */ readonly id: string; /** * Resource name */ readonly name: string; /** * The principal assigned with entity store. Format of principal is: [AAD type]=[PrincipalObjectId];[TenantId] */ readonly principal?: string; /** * Azure Resource Manager metadata containing createdBy and modifiedBy information. */ readonly systemData: outputs.security.SystemDataResponse; /** * Resource type */ readonly type: string; } /** * Gets a single custom entity store assignment by name for the provided subscription and resource group. * * Uses Azure REST API version 2021-07-01-preview. */ export declare function getCustomEntityStoreAssignmentOutput(args: GetCustomEntityStoreAssignmentOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCustomEntityStoreAssignmentResult>; export interface GetCustomEntityStoreAssignmentOutputArgs { /** * Name of the custom entity store assignment. Generated name is GUID. */ customEntityStoreAssignmentName: pulumi.Input<string>; /** * The name of the resource group within the user's subscription. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; }