import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Create, update, and delete a Harness FME (Split) environment. Import id format: `org_id/project_id/environment_id`. */ export declare class FmeEnvironment extends pulumi.CustomResource { /** * Get an existing FmeEnvironment 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?: FmeEnvironmentState, opts?: pulumi.CustomResourceOptions): FmeEnvironment; /** * Returns true if the given object is an instance of FmeEnvironment. 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 FmeEnvironment; /** * IDs of API keys auto-created by Split when the environment is created. Only populated from the create response; the Split API does not return these on read. Stored in Terraform state so the provider can delete them before destroying the environment. Empty after `pulumi import` unless you set this attribute manually (not recommended). */ readonly bootstrapApiTokenIds: pulumi.Output; /** * Change permission and approval settings for this environment. Controls whether kills are allowed, whether approvals are required for changes, and who can approve or skip approvals. Note: the Split API does not return these on read; values are preserved from create/update responses. */ readonly changePermissions: pulumi.Output; /** * The Split environment ID (same as `id`). */ readonly environmentId: pulumi.Output; /** * Environment name in Split (max 20 characters per Split API). */ readonly name: pulumi.Output; /** * Harness organization identifier. */ readonly orgId: pulumi.Output; /** * Whether this is a production environment. */ readonly production: pulumi.Output; /** * Harness project identifier. */ readonly projectId: pulumi.Output; /** * Create a FmeEnvironment 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: FmeEnvironmentArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering FmeEnvironment resources. */ export interface FmeEnvironmentState { /** * IDs of API keys auto-created by Split when the environment is created. Only populated from the create response; the Split API does not return these on read. Stored in Terraform state so the provider can delete them before destroying the environment. Empty after `pulumi import` unless you set this attribute manually (not recommended). */ bootstrapApiTokenIds?: pulumi.Input[] | undefined>; /** * Change permission and approval settings for this environment. Controls whether kills are allowed, whether approvals are required for changes, and who can approve or skip approvals. Note: the Split API does not return these on read; values are preserved from create/update responses. */ changePermissions?: pulumi.Input; /** * The Split environment ID (same as `id`). */ environmentId?: pulumi.Input; /** * Environment name in Split (max 20 characters per Split API). */ name?: pulumi.Input; /** * Harness organization identifier. */ orgId?: pulumi.Input; /** * Whether this is a production environment. */ production?: pulumi.Input; /** * Harness project identifier. */ projectId?: pulumi.Input; } /** * The set of arguments for constructing a FmeEnvironment resource. */ export interface FmeEnvironmentArgs { /** * Change permission and approval settings for this environment. Controls whether kills are allowed, whether approvals are required for changes, and who can approve or skip approvals. Note: the Split API does not return these on read; values are preserved from create/update responses. */ changePermissions?: pulumi.Input; /** * Environment name in Split (max 20 characters per Split API). */ name?: pulumi.Input; /** * Harness organization identifier. */ orgId: pulumi.Input; /** * Whether this is a production environment. */ production?: pulumi.Input; /** * Harness project identifier. */ projectId: pulumi.Input; } //# sourceMappingURL=fmeEnvironment.d.ts.map