import * as pulumi from "@pulumi/pulumi"; import { input as inputs, output as outputs } from "../../types"; /** * 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 AccessPolicyAccessLevel extends pulumi.CustomResource { /** * Get an existing AccessPolicyAccessLevel 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): AccessPolicyAccessLevel; /** * Returns true if the given object is an instance of AccessPolicyAccessLevel. 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 AccessPolicyAccessLevel; /** * 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; /** * Required. Resource name for the Access Level. The `short_name` component must begin with a letter and only include alphanumeric and '_'. Format: `accessPolicies/{policy_id}/accessLevels/{short_name}`. The maximum length of the `short_name` component is 50 characters. */ readonly name: pulumi.Output; /** * Human readable title. Must be unique within the Policy. */ readonly title: pulumi.Output; /** * Create a AccessPolicyAccessLevel 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: AccessPolicyAccessLevelArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a AccessPolicyAccessLevel resource. */ export interface AccessPolicyAccessLevelArgs { readonly accessLevelsId: pulumi.Input; readonly accessPoliciesId: pulumi.Input; /** * A `BasicLevel` composed of `Conditions`. */ readonly basic?: pulumi.Input; /** * A `CustomLevel` written in the Common Expression Language. */ readonly custom?: pulumi.Input; /** * Description of the `AccessLevel` and its use. Does not affect behavior. */ readonly description?: pulumi.Input; /** * Required. Resource name for the Access Level. The `short_name` component must begin with a letter and only include alphanumeric and '_'. Format: `accessPolicies/{policy_id}/accessLevels/{short_name}`. The maximum length of the `short_name` component is 50 characters. */ readonly name?: pulumi.Input; /** * Human readable title. Must be unique within the Policy. */ readonly title?: pulumi.Input; }