import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * Creates a `Membership`. * Auto-naming is currently not supported for this resource. */ export declare class Membership extends pulumi.CustomResource { /** * Get an existing Membership 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): Membership; /** * Returns true if the given object is an instance of Membership. 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 Membership; /** * The time when the `Membership` was created. */ readonly createTime: pulumi.Output; /** * Delivery setting associated with the membership. */ readonly deliverySetting: pulumi.Output; readonly groupId: pulumi.Output; /** * The [resource name](https://cloud.google.com/apis/design/resource_names) of the `Membership`. Shall be of the form `groups/{group}/memberships/{membership}`. */ readonly name: pulumi.Output; /** * Immutable. The `EntityKey` of the member. */ readonly preferredMemberKey: pulumi.Output; /** * The `MembershipRole`s that apply to the `Membership`. If unspecified, defaults to a single `MembershipRole` with `name` `MEMBER`. Must not contain duplicate `MembershipRole`s with the same `name`. */ readonly roles: pulumi.Output; /** * The type of the membership. */ readonly type: pulumi.Output; /** * The time when the `Membership` was last updated. */ readonly updateTime: pulumi.Output; /** * Create a Membership 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: MembershipArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Membership resource. */ export interface MembershipArgs { groupId: pulumi.Input; /** * Immutable. The `EntityKey` of the member. */ preferredMemberKey: pulumi.Input; /** * The `MembershipRole`s that apply to the `Membership`. If unspecified, defaults to a single `MembershipRole` with `name` `MEMBER`. Must not contain duplicate `MembershipRole`s with the same `name`. */ roles?: pulumi.Input[]>; }