import * as pulumi from "@pulumi/pulumi"; /** * Gets information about a Security Group. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scaleway from "@pulumi/scaleway"; * * const myKey = scaleway.getInstancePlacementGroup({ * placementGroupId: "11111111-1111-1111-1111-111111111111", * }); * ``` */ export declare function getInstancePlacementGroup(args?: GetInstancePlacementGroupArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getInstancePlacementGroup. */ export interface GetInstancePlacementGroupArgs { /** * The placement group name. Only one of `name` and `placementGroupId` should be specified. */ name?: string; /** * The placement group id. Only one of `name` and `placementGroupId` should be specified. */ placementGroupId?: string; /** * `projectId`) The ID of the project the placement group is associated with. */ projectId?: string; /** * `zone`) The zone in which the placement group exists. */ zone?: string; } /** * A collection of values returned by getInstancePlacementGroup. */ export interface GetInstancePlacementGroupResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name?: string; /** * The organization ID the placement group is associated with. */ readonly organizationId: string; readonly placementGroupId?: string; /** * The [policy mode](https://developers.scaleway.com/en/products/instance/api/#placement-groups-d8f653) of the placement group. */ readonly policyMode: string; /** * Is true when the policy is respected. */ readonly policyRespected: boolean; /** * The [policy type](https://developers.scaleway.com/en/products/instance/api/#placement-groups-d8f653) of the placement group. */ readonly policyType: string; readonly projectId: string; /** * A list of tags to apply to the placement group. */ readonly tags: string[]; readonly zone?: string; } /** * Gets information about a Security Group. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scaleway from "@pulumi/scaleway"; * * const myKey = scaleway.getInstancePlacementGroup({ * placementGroupId: "11111111-1111-1111-1111-111111111111", * }); * ``` */ export declare function getInstancePlacementGroupOutput(args?: GetInstancePlacementGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getInstancePlacementGroup. */ export interface GetInstancePlacementGroupOutputArgs { /** * The placement group name. Only one of `name` and `placementGroupId` should be specified. */ name?: pulumi.Input; /** * The placement group id. Only one of `name` and `placementGroupId` should be specified. */ placementGroupId?: pulumi.Input; /** * `projectId`) The ID of the project the placement group is associated with. */ projectId?: pulumi.Input; /** * `zone`) The zone in which the placement group exists. */ zone?: pulumi.Input; }