@pulumi/gcp
Version:
A Pulumi package for creating and managing Google Cloud Platform resources.
113 lines (112 loc) • 4.31 kB
TypeScript
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/sourceIamMember:SourceIamMember default organizations/{{organization}}/sources/{{name}}
* ```
*
* ```sh
* $ pulumi import gcp:securitycenter/sourceIamMember:SourceIamMember default {{organization}}/{{name}}
* ```
*/
export declare class SourceIamMember extends pulumi.CustomResource {
/**
* Get an existing SourceIamMember 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?: SourceIamMemberState, opts?: pulumi.CustomResourceOptions): SourceIamMember;
/**
* Returns true if the given object is an instance of SourceIamMember. 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 SourceIamMember;
readonly condition: pulumi.Output<outputs.securitycenter.SourceIamMemberCondition | undefined>;
readonly etag: pulumi.Output<string>;
readonly member: pulumi.Output<string>;
/**
* The organization whose Cloud Security Command Center the Source
* lives in.
*/
readonly organization: pulumi.Output<string>;
readonly role: pulumi.Output<string>;
readonly source: pulumi.Output<string>;
/**
* Create a SourceIamMember 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: SourceIamMemberArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering SourceIamMember resources.
*/
export interface SourceIamMemberState {
condition?: pulumi.Input<inputs.securitycenter.SourceIamMemberCondition>;
etag?: pulumi.Input<string>;
member?: pulumi.Input<string>;
/**
* The organization whose Cloud Security Command Center the Source
* lives in.
*/
organization?: pulumi.Input<string>;
role?: pulumi.Input<string>;
source?: pulumi.Input<string>;
}
/**
* The set of arguments for constructing a SourceIamMember resource.
*/
export interface SourceIamMemberArgs {
condition?: pulumi.Input<inputs.securitycenter.SourceIamMemberCondition>;
member: pulumi.Input<string>;
/**
* The organization whose Cloud Security Command Center the Source
* lives in.
*/
organization: pulumi.Input<string>;
role: pulumi.Input<string>;
source: pulumi.Input<string>;
}