1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. securitycenter
  5. SourceIamMember
Google Cloud Classic v7.20.0 published on Wednesday, Apr 24, 2024 by Pulumi

gcp.securitycenter.SourceIamMember

Explore with Pulumi AI

gcp logo
Google Cloud Classic v7.20.0 published on Wednesday, Apr 24, 2024 by 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 Source, see:

    Example Usage

    Scc Source Basic

    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 pulumi
    import pulumi_gcp as gcp
    
    custom_source = gcp.securitycenter.Source("custom_source",
        display_name="My Source",
        organization="123456789",
        description="My custom Cloud Security Command Center Finding Source")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/securitycenter"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := securitycenter.NewSource(ctx, "custom_source", &securitycenter.SourceArgs{
    			DisplayName:  pulumi.String("My Source"),
    			Organization: pulumi.String("123456789"),
    			Description:  pulumi.String("My custom Cloud Security Command Center Finding Source"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var customSource = new Gcp.SecurityCenter.Source("custom_source", new()
        {
            DisplayName = "My Source",
            Organization = "123456789",
            Description = "My custom Cloud Security Command Center Finding Source",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.securitycenter.Source;
    import com.pulumi.gcp.securitycenter.SourceArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var customSource = new Source("customSource", SourceArgs.builder()        
                .displayName("My Source")
                .organization("123456789")
                .description("My custom Cloud Security Command Center Finding Source")
                .build());
    
        }
    }
    
    resources:
      customSource:
        type: gcp:securitycenter:Source
        name: custom_source
        properties:
          displayName: My Source
          organization: '123456789'
          description: My custom Cloud Security Command Center Finding Source
    

    Create SourceIamMember Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new SourceIamMember(name: string, args: SourceIamMemberArgs, opts?: CustomResourceOptions);
    @overload
    def SourceIamMember(resource_name: str,
                        args: SourceIamMemberArgs,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def SourceIamMember(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        member: Optional[str] = None,
                        organization: Optional[str] = None,
                        role: Optional[str] = None,
                        source: Optional[str] = None,
                        condition: Optional[SourceIamMemberConditionArgs] = None)
    func NewSourceIamMember(ctx *Context, name string, args SourceIamMemberArgs, opts ...ResourceOption) (*SourceIamMember, error)
    public SourceIamMember(string name, SourceIamMemberArgs args, CustomResourceOptions? opts = null)
    public SourceIamMember(String name, SourceIamMemberArgs args)
    public SourceIamMember(String name, SourceIamMemberArgs args, CustomResourceOptions options)
    
    type: gcp:securitycenter:SourceIamMember
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args SourceIamMemberArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args SourceIamMemberArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args SourceIamMemberArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SourceIamMemberArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SourceIamMemberArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var sourceIamMemberResource = new Gcp.SecurityCenter.SourceIamMember("sourceIamMemberResource", new()
    {
        Member = "string",
        Organization = "string",
        Role = "string",
        Source = "string",
        Condition = new Gcp.SecurityCenter.Inputs.SourceIamMemberConditionArgs
        {
            Expression = "string",
            Title = "string",
            Description = "string",
        },
    });
    
    example, err := securitycenter.NewSourceIamMember(ctx, "sourceIamMemberResource", &securitycenter.SourceIamMemberArgs{
    	Member:       pulumi.String("string"),
    	Organization: pulumi.String("string"),
    	Role:         pulumi.String("string"),
    	Source:       pulumi.String("string"),
    	Condition: &securitycenter.SourceIamMemberConditionArgs{
    		Expression:  pulumi.String("string"),
    		Title:       pulumi.String("string"),
    		Description: pulumi.String("string"),
    	},
    })
    
    var sourceIamMemberResource = new SourceIamMember("sourceIamMemberResource", SourceIamMemberArgs.builder()        
        .member("string")
        .organization("string")
        .role("string")
        .source("string")
        .condition(SourceIamMemberConditionArgs.builder()
            .expression("string")
            .title("string")
            .description("string")
            .build())
        .build());
    
    source_iam_member_resource = gcp.securitycenter.SourceIamMember("sourceIamMemberResource",
        member="string",
        organization="string",
        role="string",
        source="string",
        condition=gcp.securitycenter.SourceIamMemberConditionArgs(
            expression="string",
            title="string",
            description="string",
        ))
    
    const sourceIamMemberResource = new gcp.securitycenter.SourceIamMember("sourceIamMemberResource", {
        member: "string",
        organization: "string",
        role: "string",
        source: "string",
        condition: {
            expression: "string",
            title: "string",
            description: "string",
        },
    });
    
    type: gcp:securitycenter:SourceIamMember
    properties:
        condition:
            description: string
            expression: string
            title: string
        member: string
        organization: string
        role: string
        source: string
    

    SourceIamMember Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The SourceIamMember resource accepts the following input properties:

    Member string
    Organization string
    The organization whose Cloud Security Command Center the Source lives in.


    Role string
    Source string
    Condition SourceIamMemberCondition
    Member string
    Organization string
    The organization whose Cloud Security Command Center the Source lives in.


    Role string
    Source string
    Condition SourceIamMemberConditionArgs
    member String
    organization String
    The organization whose Cloud Security Command Center the Source lives in.


    role String
    source String
    condition SourceIamMemberCondition
    member string
    organization string
    The organization whose Cloud Security Command Center the Source lives in.


    role string
    source string
    condition SourceIamMemberCondition
    member str
    organization str
    The organization whose Cloud Security Command Center the Source lives in.


    role str
    source str
    condition SourceIamMemberConditionArgs
    member String
    organization String
    The organization whose Cloud Security Command Center the Source lives in.


    role String
    source String
    condition Property Map

    Outputs

    All input properties are implicitly available as output properties. Additionally, the SourceIamMember resource produces the following output properties:

    Etag string
    Id string
    The provider-assigned unique ID for this managed resource.
    Etag string
    Id string
    The provider-assigned unique ID for this managed resource.
    etag String
    id String
    The provider-assigned unique ID for this managed resource.
    etag string
    id string
    The provider-assigned unique ID for this managed resource.
    etag str
    id str
    The provider-assigned unique ID for this managed resource.
    etag String
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing SourceIamMember Resource

    Get an existing SourceIamMember resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: SourceIamMemberState, opts?: CustomResourceOptions): SourceIamMember
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            condition: Optional[SourceIamMemberConditionArgs] = None,
            etag: Optional[str] = None,
            member: Optional[str] = None,
            organization: Optional[str] = None,
            role: Optional[str] = None,
            source: Optional[str] = None) -> SourceIamMember
    func GetSourceIamMember(ctx *Context, name string, id IDInput, state *SourceIamMemberState, opts ...ResourceOption) (*SourceIamMember, error)
    public static SourceIamMember Get(string name, Input<string> id, SourceIamMemberState? state, CustomResourceOptions? opts = null)
    public static SourceIamMember get(String name, Output<String> id, SourceIamMemberState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Condition SourceIamMemberCondition
    Etag string
    Member string
    Organization string
    The organization whose Cloud Security Command Center the Source lives in.


    Role string
    Source string
    Condition SourceIamMemberConditionArgs
    Etag string
    Member string
    Organization string
    The organization whose Cloud Security Command Center the Source lives in.


    Role string
    Source string
    condition SourceIamMemberCondition
    etag String
    member String
    organization String
    The organization whose Cloud Security Command Center the Source lives in.


    role String
    source String
    condition SourceIamMemberCondition
    etag string
    member string
    organization string
    The organization whose Cloud Security Command Center the Source lives in.


    role string
    source string
    condition SourceIamMemberConditionArgs
    etag str
    member str
    organization str
    The organization whose Cloud Security Command Center the Source lives in.


    role str
    source str
    condition Property Map
    etag String
    member String
    organization String
    The organization whose Cloud Security Command Center the Source lives in.


    role String
    source String

    Supporting Types

    SourceIamMemberCondition, SourceIamMemberConditionArgs

    Expression string
    Title string
    Description string
    The description of the source (max of 1024 characters).
    Expression string
    Title string
    Description string
    The description of the source (max of 1024 characters).
    expression String
    title String
    description String
    The description of the source (max of 1024 characters).
    expression string
    title string
    description string
    The description of the source (max of 1024 characters).
    expression str
    title str
    description str
    The description of the source (max of 1024 characters).
    expression String
    title String
    description String
    The description of the source (max of 1024 characters).

    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:

    $ pulumi import gcp:securitycenter/sourceIamMember:SourceIamMember default organizations/{{organization}}/sources/{{name}}
    
    $ pulumi import gcp:securitycenter/sourceIamMember:SourceIamMember default {{organization}}/{{name}}
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Google Cloud (GCP) Classic pulumi/pulumi-gcp
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the google-beta Terraform Provider.
    gcp logo
    Google Cloud Classic v7.20.0 published on Wednesday, Apr 24, 2024 by Pulumi