import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * A Cloud Security Command Center's (Cloud SCC) finding source. A finding * source is an entity or a mechanism that can produce a finding. A source is * like a container of findings that come from the same scanner, logger, * monitor, etc. * * To get more information about Source, see: * * * [API documentation](https://cloud.google.com/security-command-center/docs/reference/rest/v1/organizations.sources) * * How-to Guides * * [Official Documentation](https://cloud.google.com/security-command-center/docs) * * ## Example Usage * * ### Scc Source Basic * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const customSource = new gcp.securitycenter.Source("custom_source", { * displayName: "My Source", * organization: "123456789", * description: "My custom Cloud Security Command Center Finding Source", * }); * ``` * * ## Import * * Source can be imported using any of these accepted formats: * * * `organizations/{{organization}}/sources/{{name}}` * * * `{{organization}}/{{name}}` * * When using the `pulumi import` command, Source can be imported using one of the formats above. For example: * * ```sh * $ pulumi import gcp:securitycenter/sourceIamBinding:SourceIamBinding default organizations/{{organization}}/sources/{{name}} * ``` * * ```sh * $ pulumi import gcp:securitycenter/sourceIamBinding:SourceIamBinding default {{organization}}/{{name}} * ``` */ export declare class SourceIamBinding extends pulumi.CustomResource { /** * Get an existing SourceIamBinding 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?: SourceIamBindingState, opts?: pulumi.CustomResourceOptions): SourceIamBinding; /** * Returns true if the given object is an instance of SourceIamBinding. 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 SourceIamBinding; readonly condition: pulumi.Output; readonly etag: pulumi.Output; readonly members: pulumi.Output; /** * The organization whose Cloud Security Command Center the Source * lives in. */ readonly organization: pulumi.Output; readonly role: pulumi.Output; readonly source: pulumi.Output; /** * Create a SourceIamBinding 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: SourceIamBindingArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering SourceIamBinding resources. */ export interface SourceIamBindingState { condition?: pulumi.Input; etag?: pulumi.Input; members?: pulumi.Input[]>; /** * The organization whose Cloud Security Command Center the Source * lives in. */ organization?: pulumi.Input; role?: pulumi.Input; source?: pulumi.Input; } /** * The set of arguments for constructing a SourceIamBinding resource. */ export interface SourceIamBindingArgs { condition?: pulumi.Input; members: pulumi.Input[]>; /** * The organization whose Cloud Security Command Center the Source * lives in. */ organization: pulumi.Input; role: pulumi.Input; source: pulumi.Input; }