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

116 lines (115 loc) 7.46 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * List all entities (Management Groups, Subscriptions, etc.) for the authenticated user. * * Uses Azure REST API version 2023-04-01. * * Other available API versions: 2021-04-01, 2024-02-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native management [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getEntity(args?: GetEntityArgs, opts?: pulumi.InvokeOptions): Promise<GetEntityResult>; export interface GetEntityArgs { /** * The filter parameter allows you to filter on the the name or display name fields. You can check for equality on the name field (e.g. name eq '{entityName}') and you can check for substrings on either the name or display name fields(e.g. contains(name, '{substringToSearch}'), contains(displayName, '{substringToSearch')). Note that the '{entityName}' and '{substringToSearch}' fields are checked case insensitively. */ filter?: string; /** * A filter which allows the get entities call to focus on a particular group (i.e. "$filter=name eq 'groupName'") */ groupName?: string; /** * The $search parameter is used in conjunction with the $filter parameter to return three different outputs depending on the parameter passed in. * With $search=AllowedParents the API will return the entity info of all groups that the requested entity will be able to reparent to as determined by the user's permissions. * With $search=AllowedChildren the API will return the entity info of all entities that can be added as children of the requested entity. * With $search=ParentAndFirstLevelChildren the API will return the parent and first level of children that the user has either direct access to or indirect access via one of their descendants. * With $search=ParentOnly the API will return only the group if the user has access to at least one of the descendants of the group. * With $search=ChildrenOnly the API will return only the first level of children of the group entity info specified in $filter. The user must have direct access to the children entities or one of it's descendants for it to show up in the results. */ search?: string; /** * This parameter specifies the fields to include in the response. Can include any combination of Name,DisplayName,Type,ParentDisplayNameChain,ParentChain, e.g. '$select=Name,DisplayName,Type,ParentDisplayNameChain,ParentNameChain'. When specified the $select parameter can override select in $skipToken. */ select?: string; /** * Number of entities to skip over when retrieving results. Passing this in will override $skipToken. */ skip?: number; /** * Page continuation token is only used if a previous operation returned a partial result. * If a previous response contains a nextLink element, the value of the nextLink element will include a token parameter that specifies a starting point to use for subsequent calls. */ skiptoken?: string; /** * Number of elements to return when retrieving results. Passing this in will override $skipToken. */ top?: number; /** * The view parameter allows clients to filter the type of data that is returned by the getEntities call. */ view?: string; } /** * Describes the result of the request to view entities. */ export interface GetEntityResult { /** * Total count of records that match the filter */ readonly count: number; /** * The URL to use for getting the next set of results. */ readonly nextLink: string; /** * The list of entities. */ readonly value?: outputs.management.EntityInfoResponse[]; } /** * List all entities (Management Groups, Subscriptions, etc.) for the authenticated user. * * Uses Azure REST API version 2023-04-01. * * Other available API versions: 2021-04-01, 2024-02-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native management [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getEntityOutput(args?: GetEntityOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetEntityResult>; export interface GetEntityOutputArgs { /** * The filter parameter allows you to filter on the the name or display name fields. You can check for equality on the name field (e.g. name eq '{entityName}') and you can check for substrings on either the name or display name fields(e.g. contains(name, '{substringToSearch}'), contains(displayName, '{substringToSearch')). Note that the '{entityName}' and '{substringToSearch}' fields are checked case insensitively. */ filter?: pulumi.Input<string>; /** * A filter which allows the get entities call to focus on a particular group (i.e. "$filter=name eq 'groupName'") */ groupName?: pulumi.Input<string>; /** * The $search parameter is used in conjunction with the $filter parameter to return three different outputs depending on the parameter passed in. * With $search=AllowedParents the API will return the entity info of all groups that the requested entity will be able to reparent to as determined by the user's permissions. * With $search=AllowedChildren the API will return the entity info of all entities that can be added as children of the requested entity. * With $search=ParentAndFirstLevelChildren the API will return the parent and first level of children that the user has either direct access to or indirect access via one of their descendants. * With $search=ParentOnly the API will return only the group if the user has access to at least one of the descendants of the group. * With $search=ChildrenOnly the API will return only the first level of children of the group entity info specified in $filter. The user must have direct access to the children entities or one of it's descendants for it to show up in the results. */ search?: pulumi.Input<string>; /** * This parameter specifies the fields to include in the response. Can include any combination of Name,DisplayName,Type,ParentDisplayNameChain,ParentChain, e.g. '$select=Name,DisplayName,Type,ParentDisplayNameChain,ParentNameChain'. When specified the $select parameter can override select in $skipToken. */ select?: pulumi.Input<string>; /** * Number of entities to skip over when retrieving results. Passing this in will override $skipToken. */ skip?: pulumi.Input<number>; /** * Page continuation token is only used if a previous operation returned a partial result. * If a previous response contains a nextLink element, the value of the nextLink element will include a token parameter that specifies a starting point to use for subsequent calls. */ skiptoken?: pulumi.Input<string>; /** * Number of elements to return when retrieving results. Passing this in will override $skipToken. */ top?: pulumi.Input<number>; /** * The view parameter allows clients to filter the type of data that is returned by the getEntities call. */ view?: pulumi.Input<string>; }