import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * Create an Access Level. The longrunning operation from this RPC will have a successful status once the Access Level has propagated to long-lasting storage. Access Levels containing errors will result in an error response for the first error encountered. */ export declare class AccessLevel extends pulumi.CustomResource { /** * Get an existing AccessLevel resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): AccessLevel; /** * Returns true if the given object is an instance of AccessLevel. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is AccessLevel; readonly accessPolicyId: pulumi.Output; /** * A `BasicLevel` composed of `Conditions`. */ readonly basic: pulumi.Output; /** * A `CustomLevel` written in the Common Expression Language. */ readonly custom: pulumi.Output; /** * Description of the `AccessLevel` and its use. Does not affect behavior. */ readonly description: pulumi.Output; /** * Resource name for the `AccessLevel`. Format: `accessPolicies/{access_policy}/accessLevels/{access_level}`. The `access_level` component must begin with a letter, followed by alphanumeric characters or `_`. Its maximum length is 50 characters. After you create an `AccessLevel`, you cannot change its `name`. */ readonly name: pulumi.Output; /** * Human readable title. Must be unique within the Policy. */ readonly title: pulumi.Output; /** * Create a AccessLevel resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: AccessLevelArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a AccessLevel resource. */ export interface AccessLevelArgs { accessPolicyId: pulumi.Input; /** * A `BasicLevel` composed of `Conditions`. */ basic?: pulumi.Input; /** * A `CustomLevel` written in the Common Expression Language. */ custom?: pulumi.Input; /** * Description of the `AccessLevel` and its use. Does not affect behavior. */ description?: pulumi.Input; /** * Resource name for the `AccessLevel`. Format: `accessPolicies/{access_policy}/accessLevels/{access_level}`. The `access_level` component must begin with a letter, followed by alphanumeric characters or `_`. Its maximum length is 50 characters. After you create an `AccessLevel`, you cannot change its `name`. */ name?: pulumi.Input; /** * Human readable title. Must be unique within the Policy. */ title?: pulumi.Input; }