1. Packages
  2. Equinix
  3. API Docs
  4. fabric
  5. Stream
Equinix v0.21.0 published on Friday, Feb 28, 2025 by Equinix

equinix.fabric.Stream

Explore with Pulumi AI

equinix logo
Equinix v0.21.0 published on Friday, Feb 28, 2025 by Equinix

    Fabric V4 API compatible resource allows creation and management of Equinix Fabric Stream

    Additional Documentation:

    • Getting Started: https://docs.equinix.com/en-us/Content/KnowledgeCenter/Fabric/GettingStarted/Integrating-with-Fabric-V4-APIs/IntegrateWithSink.htm
    • API: https://developer.equinix.com/catalog/fabricv4#tag/Streams

    Example Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.equinix.fabric.Stream;
    import com.pulumi.equinix.fabric.StreamArgs;
    import com.pulumi.equinix.fabric.inputs.StreamProjectArgs;
    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 newStream = new Stream("newStream", StreamArgs.builder()
                .type("TELEMETRY_STREAM")
                .description("<description_of_stream_resource>")
                .project(StreamProjectArgs.builder()
                    .project_id("<destination_project_id_for_stream")
                    .build())
                .build());
    
            ctx.export("streamState", newStream.state());
        }
    }
    
    resources:
      newStream:
        type: equinix:fabric:Stream
        properties:
          type: TELEMETRY_STREAM
          description: <description_of_stream_resource>
          project:
            project_id: <destination_project_id_for_stream
    outputs:
      streamState: ${newStream.state}
    

    Create Stream Resource

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

    Constructor syntax

    new Stream(name: string, args: StreamArgs, opts?: CustomResourceOptions);
    @overload
    def Stream(resource_name: str,
               args: StreamArgs,
               opts: Optional[ResourceOptions] = None)
    
    @overload
    def Stream(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               description: Optional[str] = None,
               type: Optional[str] = None,
               name: Optional[str] = None,
               project: Optional[StreamProjectArgs] = None,
               timeouts: Optional[StreamTimeoutsArgs] = None)
    func NewStream(ctx *Context, name string, args StreamArgs, opts ...ResourceOption) (*Stream, error)
    public Stream(string name, StreamArgs args, CustomResourceOptions? opts = null)
    public Stream(String name, StreamArgs args)
    public Stream(String name, StreamArgs args, CustomResourceOptions options)
    
    type: equinix:fabric:Stream
    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 StreamArgs
    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 StreamArgs
    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 StreamArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args StreamArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args StreamArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

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

    var streamResource = new Equinix.Fabric.Stream("streamResource", new()
    {
        Description = "string",
        Type = "string",
        Name = "string",
        Project = new Equinix.Fabric.Inputs.StreamProjectArgs
        {
            ProjectId = "string",
        },
        Timeouts = new Equinix.Fabric.Inputs.StreamTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Read = "string",
            Update = "string",
        },
    });
    
    example, err := fabric.NewStream(ctx, "streamResource", &fabric.StreamArgs{
    	Description: pulumi.String("string"),
    	Type:        pulumi.String("string"),
    	Name:        pulumi.String("string"),
    	Project: &fabric.StreamProjectArgs{
    		ProjectId: pulumi.String("string"),
    	},
    	Timeouts: &fabric.StreamTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Read:   pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    })
    
    var streamResource = new Stream("streamResource", StreamArgs.builder()
        .description("string")
        .type("string")
        .name("string")
        .project(StreamProjectArgs.builder()
            .projectId("string")
            .build())
        .timeouts(StreamTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .read("string")
            .update("string")
            .build())
        .build());
    
    stream_resource = equinix.fabric.Stream("streamResource",
        description="string",
        type="string",
        name="string",
        project={
            "project_id": "string",
        },
        timeouts={
            "create": "string",
            "delete": "string",
            "read": "string",
            "update": "string",
        })
    
    const streamResource = new equinix.fabric.Stream("streamResource", {
        description: "string",
        type: "string",
        name: "string",
        project: {
            projectId: "string",
        },
        timeouts: {
            create: "string",
            "delete": "string",
            read: "string",
            update: "string",
        },
    });
    
    type: equinix:fabric:Stream
    properties:
        description: string
        name: string
        project:
            projectId: string
        timeouts:
            create: string
            delete: string
            read: string
            update: string
        type: string
    

    Stream Resource Properties

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

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The Stream resource accepts the following input properties:

    Description string
    Customer-provided description of the stream resource
    Type string
    Equinix defined Streaming Type
    Name string
    Customer-provided name of the stream resource
    Project StreamProject
    Equinix Project attribute object
    Timeouts StreamTimeouts
    Description string
    Customer-provided description of the stream resource
    Type string
    Equinix defined Streaming Type
    Name string
    Customer-provided name of the stream resource
    Project StreamProjectArgs
    Equinix Project attribute object
    Timeouts StreamTimeoutsArgs
    description String
    Customer-provided description of the stream resource
    type String
    Equinix defined Streaming Type
    name String
    Customer-provided name of the stream resource
    project StreamProject
    Equinix Project attribute object
    timeouts StreamTimeouts
    description string
    Customer-provided description of the stream resource
    type string
    Equinix defined Streaming Type
    name string
    Customer-provided name of the stream resource
    project StreamProject
    Equinix Project attribute object
    timeouts StreamTimeouts
    description str
    Customer-provided description of the stream resource
    type str
    Equinix defined Streaming Type
    name str
    Customer-provided name of the stream resource
    project StreamProjectArgs
    Equinix Project attribute object
    timeouts StreamTimeoutsArgs
    description String
    Customer-provided description of the stream resource
    type String
    Equinix defined Streaming Type
    name String
    Customer-provided name of the stream resource
    project Property Map
    Equinix Project attribute object
    timeouts Property Map

    Outputs

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

    AssetsCount double
    Count of the streaming assets attached to the stream resource
    ChangeLog StreamChangeLog
    Details of the last change on the stream resource
    Href string
    Equinix auto generated URI to the stream resource in Equinix Portal
    Id string
    The provider-assigned unique ID for this managed resource.
    State string
    Value representing provisioning status for the stream resource
    StreamSubscriptionsCount double
    Count of the client subscriptions on the stream resource
    Uuid string
    Equinix-assigned unique id for the stream resource
    AssetsCount float64
    Count of the streaming assets attached to the stream resource
    ChangeLog StreamChangeLog
    Details of the last change on the stream resource
    Href string
    Equinix auto generated URI to the stream resource in Equinix Portal
    Id string
    The provider-assigned unique ID for this managed resource.
    State string
    Value representing provisioning status for the stream resource
    StreamSubscriptionsCount float64
    Count of the client subscriptions on the stream resource
    Uuid string
    Equinix-assigned unique id for the stream resource
    assetsCount Double
    Count of the streaming assets attached to the stream resource
    changeLog StreamChangeLog
    Details of the last change on the stream resource
    href String
    Equinix auto generated URI to the stream resource in Equinix Portal
    id String
    The provider-assigned unique ID for this managed resource.
    state String
    Value representing provisioning status for the stream resource
    streamSubscriptionsCount Double
    Count of the client subscriptions on the stream resource
    uuid String
    Equinix-assigned unique id for the stream resource
    assetsCount number
    Count of the streaming assets attached to the stream resource
    changeLog StreamChangeLog
    Details of the last change on the stream resource
    href string
    Equinix auto generated URI to the stream resource in Equinix Portal
    id string
    The provider-assigned unique ID for this managed resource.
    state string
    Value representing provisioning status for the stream resource
    streamSubscriptionsCount number
    Count of the client subscriptions on the stream resource
    uuid string
    Equinix-assigned unique id for the stream resource
    assets_count float
    Count of the streaming assets attached to the stream resource
    change_log StreamChangeLog
    Details of the last change on the stream resource
    href str
    Equinix auto generated URI to the stream resource in Equinix Portal
    id str
    The provider-assigned unique ID for this managed resource.
    state str
    Value representing provisioning status for the stream resource
    stream_subscriptions_count float
    Count of the client subscriptions on the stream resource
    uuid str
    Equinix-assigned unique id for the stream resource
    assetsCount Number
    Count of the streaming assets attached to the stream resource
    changeLog Property Map
    Details of the last change on the stream resource
    href String
    Equinix auto generated URI to the stream resource in Equinix Portal
    id String
    The provider-assigned unique ID for this managed resource.
    state String
    Value representing provisioning status for the stream resource
    streamSubscriptionsCount Number
    Count of the client subscriptions on the stream resource
    uuid String
    Equinix-assigned unique id for the stream resource

    Look up Existing Stream Resource

    Get an existing Stream 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?: StreamState, opts?: CustomResourceOptions): Stream
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            assets_count: Optional[float] = None,
            change_log: Optional[StreamChangeLogArgs] = None,
            description: Optional[str] = None,
            href: Optional[str] = None,
            name: Optional[str] = None,
            project: Optional[StreamProjectArgs] = None,
            state: Optional[str] = None,
            stream_subscriptions_count: Optional[float] = None,
            timeouts: Optional[StreamTimeoutsArgs] = None,
            type: Optional[str] = None,
            uuid: Optional[str] = None) -> Stream
    func GetStream(ctx *Context, name string, id IDInput, state *StreamState, opts ...ResourceOption) (*Stream, error)
    public static Stream Get(string name, Input<string> id, StreamState? state, CustomResourceOptions? opts = null)
    public static Stream get(String name, Output<String> id, StreamState state, CustomResourceOptions options)
    resources:  _:    type: equinix:fabric:Stream    get:      id: ${id}
    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:
    AssetsCount double
    Count of the streaming assets attached to the stream resource
    ChangeLog StreamChangeLog
    Details of the last change on the stream resource
    Description string
    Customer-provided description of the stream resource
    Href string
    Equinix auto generated URI to the stream resource in Equinix Portal
    Name string
    Customer-provided name of the stream resource
    Project StreamProject
    Equinix Project attribute object
    State string
    Value representing provisioning status for the stream resource
    StreamSubscriptionsCount double
    Count of the client subscriptions on the stream resource
    Timeouts StreamTimeouts
    Type string
    Equinix defined Streaming Type
    Uuid string
    Equinix-assigned unique id for the stream resource
    AssetsCount float64
    Count of the streaming assets attached to the stream resource
    ChangeLog StreamChangeLogArgs
    Details of the last change on the stream resource
    Description string
    Customer-provided description of the stream resource
    Href string
    Equinix auto generated URI to the stream resource in Equinix Portal
    Name string
    Customer-provided name of the stream resource
    Project StreamProjectArgs
    Equinix Project attribute object
    State string
    Value representing provisioning status for the stream resource
    StreamSubscriptionsCount float64
    Count of the client subscriptions on the stream resource
    Timeouts StreamTimeoutsArgs
    Type string
    Equinix defined Streaming Type
    Uuid string
    Equinix-assigned unique id for the stream resource
    assetsCount Double
    Count of the streaming assets attached to the stream resource
    changeLog StreamChangeLog
    Details of the last change on the stream resource
    description String
    Customer-provided description of the stream resource
    href String
    Equinix auto generated URI to the stream resource in Equinix Portal
    name String
    Customer-provided name of the stream resource
    project StreamProject
    Equinix Project attribute object
    state String
    Value representing provisioning status for the stream resource
    streamSubscriptionsCount Double
    Count of the client subscriptions on the stream resource
    timeouts StreamTimeouts
    type String
    Equinix defined Streaming Type
    uuid String
    Equinix-assigned unique id for the stream resource
    assetsCount number
    Count of the streaming assets attached to the stream resource
    changeLog StreamChangeLog
    Details of the last change on the stream resource
    description string
    Customer-provided description of the stream resource
    href string
    Equinix auto generated URI to the stream resource in Equinix Portal
    name string
    Customer-provided name of the stream resource
    project StreamProject
    Equinix Project attribute object
    state string
    Value representing provisioning status for the stream resource
    streamSubscriptionsCount number
    Count of the client subscriptions on the stream resource
    timeouts StreamTimeouts
    type string
    Equinix defined Streaming Type
    uuid string
    Equinix-assigned unique id for the stream resource
    assets_count float
    Count of the streaming assets attached to the stream resource
    change_log StreamChangeLogArgs
    Details of the last change on the stream resource
    description str
    Customer-provided description of the stream resource
    href str
    Equinix auto generated URI to the stream resource in Equinix Portal
    name str
    Customer-provided name of the stream resource
    project StreamProjectArgs
    Equinix Project attribute object
    state str
    Value representing provisioning status for the stream resource
    stream_subscriptions_count float
    Count of the client subscriptions on the stream resource
    timeouts StreamTimeoutsArgs
    type str
    Equinix defined Streaming Type
    uuid str
    Equinix-assigned unique id for the stream resource
    assetsCount Number
    Count of the streaming assets attached to the stream resource
    changeLog Property Map
    Details of the last change on the stream resource
    description String
    Customer-provided description of the stream resource
    href String
    Equinix auto generated URI to the stream resource in Equinix Portal
    name String
    Customer-provided name of the stream resource
    project Property Map
    Equinix Project attribute object
    state String
    Value representing provisioning status for the stream resource
    streamSubscriptionsCount Number
    Count of the client subscriptions on the stream resource
    timeouts Property Map
    type String
    Equinix defined Streaming Type
    uuid String
    Equinix-assigned unique id for the stream resource

    Supporting Types

    StreamChangeLog, StreamChangeLogArgs

    CreatedBy string
    User name of creator of the stream resource
    CreatedByEmail string
    Email of creator of the stream resource
    CreatedByFullName string
    Legal name of creator of the stream resource
    CreatedDateTime string
    Creation time of the stream resource
    DeletedBy string
    User name of deleter of the stream resource
    DeletedByEmail string
    Email of deleter of the stream resource
    DeletedByFullName string
    Legal name of deleter of the stream resource
    DeletedDateTime string
    Deletion time of the stream resource
    UpdatedBy string
    User name of last updater of the stream resource
    UpdatedByEmail string
    Email of last updater of the stream resource
    UpdatedByFullName string
    Legal name of last updater of the stream resource
    UpdatedDateTime string
    Last update time of the stream resource
    CreatedBy string
    User name of creator of the stream resource
    CreatedByEmail string
    Email of creator of the stream resource
    CreatedByFullName string
    Legal name of creator of the stream resource
    CreatedDateTime string
    Creation time of the stream resource
    DeletedBy string
    User name of deleter of the stream resource
    DeletedByEmail string
    Email of deleter of the stream resource
    DeletedByFullName string
    Legal name of deleter of the stream resource
    DeletedDateTime string
    Deletion time of the stream resource
    UpdatedBy string
    User name of last updater of the stream resource
    UpdatedByEmail string
    Email of last updater of the stream resource
    UpdatedByFullName string
    Legal name of last updater of the stream resource
    UpdatedDateTime string
    Last update time of the stream resource
    createdBy String
    User name of creator of the stream resource
    createdByEmail String
    Email of creator of the stream resource
    createdByFullName String
    Legal name of creator of the stream resource
    createdDateTime String
    Creation time of the stream resource
    deletedBy String
    User name of deleter of the stream resource
    deletedByEmail String
    Email of deleter of the stream resource
    deletedByFullName String
    Legal name of deleter of the stream resource
    deletedDateTime String
    Deletion time of the stream resource
    updatedBy String
    User name of last updater of the stream resource
    updatedByEmail String
    Email of last updater of the stream resource
    updatedByFullName String
    Legal name of last updater of the stream resource
    updatedDateTime String
    Last update time of the stream resource
    createdBy string
    User name of creator of the stream resource
    createdByEmail string
    Email of creator of the stream resource
    createdByFullName string
    Legal name of creator of the stream resource
    createdDateTime string
    Creation time of the stream resource
    deletedBy string
    User name of deleter of the stream resource
    deletedByEmail string
    Email of deleter of the stream resource
    deletedByFullName string
    Legal name of deleter of the stream resource
    deletedDateTime string
    Deletion time of the stream resource
    updatedBy string
    User name of last updater of the stream resource
    updatedByEmail string
    Email of last updater of the stream resource
    updatedByFullName string
    Legal name of last updater of the stream resource
    updatedDateTime string
    Last update time of the stream resource
    created_by str
    User name of creator of the stream resource
    created_by_email str
    Email of creator of the stream resource
    created_by_full_name str
    Legal name of creator of the stream resource
    created_date_time str
    Creation time of the stream resource
    deleted_by str
    User name of deleter of the stream resource
    deleted_by_email str
    Email of deleter of the stream resource
    deleted_by_full_name str
    Legal name of deleter of the stream resource
    deleted_date_time str
    Deletion time of the stream resource
    updated_by str
    User name of last updater of the stream resource
    updated_by_email str
    Email of last updater of the stream resource
    updated_by_full_name str
    Legal name of last updater of the stream resource
    updated_date_time str
    Last update time of the stream resource
    createdBy String
    User name of creator of the stream resource
    createdByEmail String
    Email of creator of the stream resource
    createdByFullName String
    Legal name of creator of the stream resource
    createdDateTime String
    Creation time of the stream resource
    deletedBy String
    User name of deleter of the stream resource
    deletedByEmail String
    Email of deleter of the stream resource
    deletedByFullName String
    Legal name of deleter of the stream resource
    deletedDateTime String
    Deletion time of the stream resource
    updatedBy String
    User name of last updater of the stream resource
    updatedByEmail String
    Email of last updater of the stream resource
    updatedByFullName String
    Legal name of last updater of the stream resource
    updatedDateTime String
    Last update time of the stream resource

    StreamProject, StreamProjectArgs

    ProjectId string
    Equinix Subscriber-assigned project ID
    ProjectId string
    Equinix Subscriber-assigned project ID
    projectId String
    Equinix Subscriber-assigned project ID
    projectId string
    Equinix Subscriber-assigned project ID
    project_id str
    Equinix Subscriber-assigned project ID
    projectId String
    Equinix Subscriber-assigned project ID

    StreamTimeouts, StreamTimeoutsArgs

    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Read string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Read string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    read String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    read string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    read str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    update str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    read String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

    Package Details

    Repository
    equinix equinix/pulumi-equinix
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the equinix Terraform Provider.
    equinix logo
    Equinix v0.21.0 published on Friday, Feb 28, 2025 by Equinix