1. Packages
  2. NS1
  3. API Docs
  4. Dataset
NS1 v3.2.1 published on Thursday, Apr 4, 2024 by Pulumi

ns1.Dataset

Explore with Pulumi AI

ns1 logo
NS1 v3.2.1 published on Thursday, Apr 4, 2024 by Pulumi

    Create Dataset Resource

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

    Constructor syntax

    new Dataset(name: string, args: DatasetArgs, opts?: CustomResourceOptions);
    @overload
    def Dataset(resource_name: str,
                args: DatasetArgs,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def Dataset(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                datatype: Optional[DatasetDatatypeArgs] = None,
                export_type: Optional[str] = None,
                timeframe: Optional[DatasetTimeframeArgs] = None,
                name: Optional[str] = None,
                recipient_emails: Optional[Sequence[str]] = None,
                repeat: Optional[DatasetRepeatArgs] = None)
    func NewDataset(ctx *Context, name string, args DatasetArgs, opts ...ResourceOption) (*Dataset, error)
    public Dataset(string name, DatasetArgs args, CustomResourceOptions? opts = null)
    public Dataset(String name, DatasetArgs args)
    public Dataset(String name, DatasetArgs args, CustomResourceOptions options)
    
    type: ns1:Dataset
    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 DatasetArgs
    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 DatasetArgs
    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 DatasetArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DatasetArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DatasetArgs
    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 datasetResource = new Ns1.Dataset("datasetResource", new()
    {
        Datatype = new Ns1.Inputs.DatasetDatatypeArgs
        {
            Data = 
            {
                { "string", "any" },
            },
            Scope = "string",
            Type = "string",
        },
        ExportType = "string",
        Timeframe = new Ns1.Inputs.DatasetTimeframeArgs
        {
            Aggregation = "string",
            Cycles = 0,
            From = 0,
            To = 0,
        },
        Name = "string",
        RecipientEmails = new[]
        {
            "string",
        },
        Repeat = new Ns1.Inputs.DatasetRepeatArgs
        {
            EndAfterN = 0,
            RepeatsEvery = "string",
            Start = 0,
        },
    });
    
    example, err := ns1.NewDataset(ctx, "datasetResource", &ns1.DatasetArgs{
    	Datatype: &ns1.DatasetDatatypeArgs{
    		Data: pulumi.Map{
    			"string": pulumi.Any("any"),
    		},
    		Scope: pulumi.String("string"),
    		Type:  pulumi.String("string"),
    	},
    	ExportType: pulumi.String("string"),
    	Timeframe: &ns1.DatasetTimeframeArgs{
    		Aggregation: pulumi.String("string"),
    		Cycles:      pulumi.Int(0),
    		From:        pulumi.Int(0),
    		To:          pulumi.Int(0),
    	},
    	Name: pulumi.String("string"),
    	RecipientEmails: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Repeat: &ns1.DatasetRepeatArgs{
    		EndAfterN:    pulumi.Int(0),
    		RepeatsEvery: pulumi.String("string"),
    		Start:        pulumi.Int(0),
    	},
    })
    
    var datasetResource = new Dataset("datasetResource", DatasetArgs.builder()        
        .datatype(DatasetDatatypeArgs.builder()
            .data(Map.of("string", "any"))
            .scope("string")
            .type("string")
            .build())
        .exportType("string")
        .timeframe(DatasetTimeframeArgs.builder()
            .aggregation("string")
            .cycles(0)
            .from(0)
            .to(0)
            .build())
        .name("string")
        .recipientEmails("string")
        .repeat(DatasetRepeatArgs.builder()
            .endAfterN(0)
            .repeatsEvery("string")
            .start(0)
            .build())
        .build());
    
    dataset_resource = ns1.Dataset("datasetResource",
        datatype=ns1.DatasetDatatypeArgs(
            data={
                "string": "any",
            },
            scope="string",
            type="string",
        ),
        export_type="string",
        timeframe=ns1.DatasetTimeframeArgs(
            aggregation="string",
            cycles=0,
            from_=0,
            to=0,
        ),
        name="string",
        recipient_emails=["string"],
        repeat=ns1.DatasetRepeatArgs(
            end_after_n=0,
            repeats_every="string",
            start=0,
        ))
    
    const datasetResource = new ns1.Dataset("datasetResource", {
        datatype: {
            data: {
                string: "any",
            },
            scope: "string",
            type: "string",
        },
        exportType: "string",
        timeframe: {
            aggregation: "string",
            cycles: 0,
            from: 0,
            to: 0,
        },
        name: "string",
        recipientEmails: ["string"],
        repeat: {
            endAfterN: 0,
            repeatsEvery: "string",
            start: 0,
        },
    });
    
    type: ns1:Dataset
    properties:
        datatype:
            data:
                string: any
            scope: string
            type: string
        exportType: string
        name: string
        recipientEmails:
            - string
        repeat:
            endAfterN: 0
            repeatsEvery: string
            start: 0
        timeframe:
            aggregation: string
            cycles: 0
            from: 0
            to: 0
    

    Dataset 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 Dataset resource accepts the following input properties:

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Reports List<DatasetReport>
    Id string
    The provider-assigned unique ID for this managed resource.
    Reports []DatasetReport
    id String
    The provider-assigned unique ID for this managed resource.
    reports List<DatasetReport>
    id string
    The provider-assigned unique ID for this managed resource.
    reports DatasetReport[]
    id str
    The provider-assigned unique ID for this managed resource.
    reports Sequence[DatasetReport]
    id String
    The provider-assigned unique ID for this managed resource.
    reports List<Property Map>

    Look up Existing Dataset Resource

    Get an existing Dataset 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?: DatasetState, opts?: CustomResourceOptions): Dataset
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            datatype: Optional[DatasetDatatypeArgs] = None,
            export_type: Optional[str] = None,
            name: Optional[str] = None,
            recipient_emails: Optional[Sequence[str]] = None,
            repeat: Optional[DatasetRepeatArgs] = None,
            reports: Optional[Sequence[DatasetReportArgs]] = None,
            timeframe: Optional[DatasetTimeframeArgs] = None) -> Dataset
    func GetDataset(ctx *Context, name string, id IDInput, state *DatasetState, opts ...ResourceOption) (*Dataset, error)
    public static Dataset Get(string name, Input<string> id, DatasetState? state, CustomResourceOptions? opts = null)
    public static Dataset get(String name, Output<String> id, DatasetState 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:

    Supporting Types

    DatasetDatatype, DatasetDatatypeArgs

    Data Dictionary<string, object>
    Scope string
    Type string
    Data map[string]interface{}
    Scope string
    Type string
    data Map<String,Object>
    scope String
    type String
    data {[key: string]: any}
    scope string
    type string
    data Mapping[str, Any]
    scope str
    type str
    data Map<Any>
    scope String
    type String

    DatasetRepeat, DatasetRepeatArgs

    endAfterN Integer
    repeatsEvery String
    start Integer
    endAfterN number
    repeatsEvery string
    start number
    endAfterN Number
    repeatsEvery String
    start Number

    DatasetReport, DatasetReportArgs

    CreatedAt int
    End int
    Id string
    Start int
    Status string
    CreatedAt int
    End int
    Id string
    Start int
    Status string
    createdAt Integer
    end Integer
    id String
    start Integer
    status String
    createdAt number
    end number
    id string
    start number
    status string
    created_at int
    end int
    id str
    start int
    status str
    createdAt Number
    end Number
    id String
    start Number
    status String

    DatasetTimeframe, DatasetTimeframeArgs

    Aggregation string
    Cycles int
    From int
    To int
    Aggregation string
    Cycles int
    From int
    To int
    aggregation String
    cycles Integer
    from Integer
    to Integer
    aggregation string
    cycles number
    from number
    to number
    aggregation str
    cycles int
    from_ int
    to int
    aggregation String
    cycles Number
    from Number
    to Number

    Package Details

    Repository
    NS1 pulumi/pulumi-ns1
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the ns1 Terraform Provider.
    ns1 logo
    NS1 v3.2.1 published on Thursday, Apr 4, 2024 by Pulumi