UNPKG

@pulumiverse/scaleway

Version:

A Pulumi package for creating and managing Scaleway cloud resources.

80 lines 3.13 kB
import * as pulumi from "@pulumi/pulumi"; /** * SCIM (System for Cross-domain Identity Management) resource allows you to enable or disable SCIM for an organization. * * SCIM is a standard for automating the exchange of user identity information between identity domains, or IT systems. When enabled, it allows for automated provisioning and deprovisioning of user accounts. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scaleway from "@pulumiverse/scaleway"; * * //## Enable IAM SCIM for an organization * const main = new scaleway.iam.Scim("main", {organizationId: "11111111-1111-1111-1111-111111111111"}); * ``` * * ## Import * * SCIM can be imported using the organization ID: * * ```sh * $ pulumi import scaleway:iam/scim:Scim main 11111111-1111-1111-1111-111111111111 * ``` */ export declare class Scim extends pulumi.CustomResource { /** * Get an existing Scim 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<pulumi.ID>, state?: ScimState, opts?: pulumi.CustomResourceOptions): Scim; /** * Returns true if the given object is an instance of Scim. 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 Scim; /** * The date and time of SCIM configuration creation. */ readonly createdAt: pulumi.Output<string>; /** * The organization ID. If not provided, the default organization configured in the provider is used. */ readonly organizationId: pulumi.Output<string>; /** * Create a Scim 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?: ScimArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Scim resources. */ export interface ScimState { /** * The date and time of SCIM configuration creation. */ createdAt?: pulumi.Input<string | undefined>; /** * The organization ID. If not provided, the default organization configured in the provider is used. */ organizationId?: pulumi.Input<string | undefined>; } /** * The set of arguments for constructing a Scim resource. */ export interface ScimArgs { /** * The organization ID. If not provided, the default organization configured in the provider is used. */ organizationId?: pulumi.Input<string | undefined>; } //# sourceMappingURL=scim.d.ts.map