import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * Creates an AppGroup. Once created, user can register apps under the AppGroup to obtain secret key and password. At creation time, the AppGroup's state is set as `active`. */ export declare class Appgroup extends pulumi.CustomResource { /** * Get an existing Appgroup 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): Appgroup; /** * Returns true if the given object is an instance of Appgroup. 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 Appgroup; /** * Internal identifier that cannot be edited */ readonly appGroupId: pulumi.Output; /** * A list of attributes */ readonly attributes: pulumi.Output; /** * channel identifier identifies the owner maintaing this grouping. */ readonly channelId: pulumi.Output; /** * A reference to the associated storefront/marketplace. */ readonly channelUri: pulumi.Output; /** * Created time as milliseconds since epoch. */ readonly createdAt: pulumi.Output; /** * app group name displayed in the UI */ readonly displayName: pulumi.Output; /** * Modified time as milliseconds since epoch. */ readonly lastModifiedAt: pulumi.Output; /** * Immutable. Name of the AppGroup. Characters you can use in the name are restricted to: A-Z0-9._\-$ %. */ readonly name: pulumi.Output; /** * Immutable. the org the app group is created */ readonly organization: pulumi.Output; readonly organizationId: pulumi.Output; /** * Valid values are `active` or `inactive`. Note that the status of the AppGroup should be updated via UpdateAppGroupRequest by setting the action as `active` or `inactive`. */ readonly status: pulumi.Output; /** * Create a Appgroup 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: AppgroupArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Appgroup resource. */ export interface AppgroupArgs { /** * A list of attributes */ attributes?: pulumi.Input[]>; /** * channel identifier identifies the owner maintaing this grouping. */ channelId?: pulumi.Input; /** * A reference to the associated storefront/marketplace. */ channelUri?: pulumi.Input; /** * app group name displayed in the UI */ displayName?: pulumi.Input; /** * Immutable. Name of the AppGroup. Characters you can use in the name are restricted to: A-Z0-9._\-$ %. */ name?: pulumi.Input; /** * Immutable. the org the app group is created */ organization?: pulumi.Input; organizationId: pulumi.Input; }