import * as pulumi from "@pulumi/pulumi"; /** * Sentry Project resource. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sentry from "@pulumiverse/sentry"; * * // Create a project * const _default = new sentry.SentryProject("default", { * organization: "my-organization", * teams: [ * "my-first-team", * "my-second-team", * ], * name: "Web App", * slug: "web-app", * platform: "javascript", * resolveAge: 720, * }); * ``` * * ## Import * * import using the organization and team slugs from the URL: * * https://sentry.io/settings/[org-slug]/projects/[project-slug]/ * * ```sh * $ pulumi import sentry:index/sentryProject:SentryProject default org-slug/project-slug * ``` */ export declare class SentryProject extends pulumi.CustomResource { /** * Get an existing SentryProject 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 state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: SentryProjectState, opts?: pulumi.CustomResourceOptions): SentryProject; /** * Returns true if the given object is an instance of SentryProject. 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 SentryProject; readonly color: pulumi.Output; /** * The maximum amount of time (in seconds) to wait between scheduling digests for delivery. */ readonly digestsMaxDelay: pulumi.Output; /** * The minimum amount of time (in seconds) to wait between scheduling digests for delivery after the initial scheduling. */ readonly digestsMinDelay: pulumi.Output; readonly features: pulumi.Output; /** * The internal ID for this project. */ readonly internalId: pulumi.Output; /** * @deprecated is_bookmarked is no longer used */ readonly isBookmarked: pulumi.Output; readonly isPublic: pulumi.Output; /** * The name for the project. */ readonly name: pulumi.Output; /** * The slug of the organization the project belongs to. */ readonly organization: pulumi.Output; /** * The optional platform for this project. */ readonly platform: pulumi.Output; /** * Use `internalId` instead. * * @deprecated Use `internalId` instead. */ readonly projectId: pulumi.Output; /** * Hours in which an issue is automatically resolve if not seen after this amount of time. */ readonly resolveAge: pulumi.Output; /** * The optional slug for this project. */ readonly slug: pulumi.Output; readonly status: pulumi.Output; /** * The slug of the team to create the project for. **Deprecated** Use `teams` instead. * * @deprecated Use `teams` instead. */ readonly team: pulumi.Output; /** * The slugs of the teams to create the project for. */ readonly teams: pulumi.Output; /** * Create a SentryProject 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: SentryProjectArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering SentryProject resources. */ export interface SentryProjectState { color?: pulumi.Input; /** * The maximum amount of time (in seconds) to wait between scheduling digests for delivery. */ digestsMaxDelay?: pulumi.Input; /** * The minimum amount of time (in seconds) to wait between scheduling digests for delivery after the initial scheduling. */ digestsMinDelay?: pulumi.Input; features?: pulumi.Input[]>; /** * The internal ID for this project. */ internalId?: pulumi.Input; /** * @deprecated is_bookmarked is no longer used */ isBookmarked?: pulumi.Input; isPublic?: pulumi.Input; /** * The name for the project. */ name?: pulumi.Input; /** * The slug of the organization the project belongs to. */ organization?: pulumi.Input; /** * The optional platform for this project. */ platform?: pulumi.Input; /** * Use `internalId` instead. * * @deprecated Use `internalId` instead. */ projectId?: pulumi.Input; /** * Hours in which an issue is automatically resolve if not seen after this amount of time. */ resolveAge?: pulumi.Input; /** * The optional slug for this project. */ slug?: pulumi.Input; status?: pulumi.Input; /** * The slug of the team to create the project for. **Deprecated** Use `teams` instead. * * @deprecated Use `teams` instead. */ team?: pulumi.Input; /** * The slugs of the teams to create the project for. */ teams?: pulumi.Input[]>; } /** * The set of arguments for constructing a SentryProject resource. */ export interface SentryProjectArgs { /** * The maximum amount of time (in seconds) to wait between scheduling digests for delivery. */ digestsMaxDelay?: pulumi.Input; /** * The minimum amount of time (in seconds) to wait between scheduling digests for delivery after the initial scheduling. */ digestsMinDelay?: pulumi.Input; /** * The name for the project. */ name?: pulumi.Input; /** * The slug of the organization the project belongs to. */ organization: pulumi.Input; /** * The optional platform for this project. */ platform?: pulumi.Input; /** * Hours in which an issue is automatically resolve if not seen after this amount of time. */ resolveAge?: pulumi.Input; /** * The optional slug for this project. */ slug?: pulumi.Input; /** * The slug of the team to create the project for. **Deprecated** Use `teams` instead. * * @deprecated Use `teams` instead. */ team?: pulumi.Input; /** * The slugs of the teams to create the project for. */ teams?: pulumi.Input[]>; }