import * as pulumi from "@pulumi/pulumi"; /** * 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 OrganizationSource, see: * * * [API documentation](https://cloud.google.com/security-command-center/docs/reference/rest/v2/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 * * OrganizationSource can be imported using any of these accepted formats: * * * `organizations/{{organization}}/sources/{{name}}` * * * `{{organization}}/{{name}}` * * When using the `pulumi import` command, OrganizationSource can be imported using one of the formats above. For example: * * ```sh * $ pulumi import gcp:securitycenter/v2OrganizationSource:V2OrganizationSource default organizations/{{organization}}/sources/{{name}} * ``` * * ```sh * $ pulumi import gcp:securitycenter/v2OrganizationSource:V2OrganizationSource default {{organization}}/{{name}} * ``` */ export declare class V2OrganizationSource extends pulumi.CustomResource { /** * Get an existing V2OrganizationSource 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?: V2OrganizationSourceState, opts?: pulumi.CustomResourceOptions): V2OrganizationSource; /** * Returns true if the given object is an instance of V2OrganizationSource. 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 V2OrganizationSource; /** * The description of the source (max of 1024 characters). */ readonly description: pulumi.Output; /** * The source’s display name. A source’s display name must be unique * amongst its siblings, for example, two sources with the same parent * can't share the same display name. The display name must start and end * with a letter or digit, may contain letters, digits, spaces, hyphens, * and underscores, and can be no longer than 32 characters. */ readonly displayName: pulumi.Output; /** * The resource name of this source, in the format * `organizations/{{organization}}/sources/{{source}}`. */ readonly name: pulumi.Output; /** * The organization whose Cloud Security Command Center the Source * lives in. */ readonly organization: pulumi.Output; /** * Create a V2OrganizationSource 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: V2OrganizationSourceArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering V2OrganizationSource resources. */ export interface V2OrganizationSourceState { /** * The description of the source (max of 1024 characters). */ description?: pulumi.Input; /** * The source’s display name. A source’s display name must be unique * amongst its siblings, for example, two sources with the same parent * can't share the same display name. The display name must start and end * with a letter or digit, may contain letters, digits, spaces, hyphens, * and underscores, and can be no longer than 32 characters. */ displayName?: pulumi.Input; /** * The resource name of this source, in the format * `organizations/{{organization}}/sources/{{source}}`. */ name?: pulumi.Input; /** * The organization whose Cloud Security Command Center the Source * lives in. */ organization?: pulumi.Input; } /** * The set of arguments for constructing a V2OrganizationSource resource. */ export interface V2OrganizationSourceArgs { /** * The description of the source (max of 1024 characters). */ description?: pulumi.Input; /** * The source’s display name. A source’s display name must be unique * amongst its siblings, for example, two sources with the same parent * can't share the same display name. The display name must start and end * with a letter or digit, may contain letters, digits, spaces, hyphens, * and underscores, and can be no longer than 32 characters. */ displayName: pulumi.Input; /** * The organization whose Cloud Security Command Center the Source * lives in. */ organization: pulumi.Input; }