1. Packages
  2. Equinix
  3. API Docs
  4. fabric
  5. getStreamSubscriptions
Equinix v0.22.0 published on Wednesday, Apr 23, 2025 by Equinix

equinix.fabric.getStreamSubscriptions

Explore with Pulumi AI

equinix logo
Equinix v0.22.0 published on Wednesday, Apr 23, 2025 by Equinix

    Fabric V4 API compatible data source that allows user to fetch Equinix Fabric Stream Subscriptions with pagination

    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/Stream-Subscriptions

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as equinix from "@pulumi/equinix";
    
    const all = equinix.fabric.getStreamSubscriptions({
        pagination: {
            limit: 10,
            offset: 0,
        },
        streamId: "<stream_id>",
    });
    
    import pulumi
    import pulumi_equinix as equinix
    
    all = equinix.fabric.get_stream_subscriptions(pagination={
            "limit": 10,
            "offset": 0,
        },
        stream_id="<stream_id>")
    
    package main
    
    import (
    	"github.com/equinix/pulumi-equinix/sdk/go/equinix/fabric"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := fabric.GetStreamSubscriptions(ctx, &fabric.GetStreamSubscriptionsArgs{
    			Pagination: fabric.GetStreamSubscriptionsPagination{
    				Limit:  10,
    				Offset: 0,
    			},
    			StreamId: "<stream_id>",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Equinix = Pulumi.Equinix;
    
    return await Deployment.RunAsync(() => 
    {
        var all = Equinix.Fabric.GetStreamSubscriptions.Invoke(new()
        {
            Pagination = new Equinix.Fabric.Inputs.GetStreamSubscriptionsPaginationInputArgs
            {
                Limit = 10,
                Offset = 0,
            },
            StreamId = "<stream_id>",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.equinix.fabric.FabricFunctions;
    import com.pulumi.equinix.fabric.inputs.GetStreamSubscriptionsArgs;
    import com.pulumi.equinix.fabric.inputs.GetStreamSubscriptionsPaginationArgs;
    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) {
            final var all = FabricFunctions.getStreamSubscriptions(GetStreamSubscriptionsArgs.builder()
                .pagination(GetStreamSubscriptionsPaginationArgs.builder()
                    .limit(10)
                    .offset(0)
                    .build())
                .streamId("<stream_id>")
                .build());
    
        }
    }
    
    variables:
      all:
        fn::invoke:
          function: equinix:fabric:getStreamSubscriptions
          arguments:
            pagination:
              limit: 10
              offset: 0
            streamId: <stream_id>
    

    Using getStreamSubscriptions

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getStreamSubscriptions(args: GetStreamSubscriptionsArgs, opts?: InvokeOptions): Promise<GetStreamSubscriptionsResult>
    function getStreamSubscriptionsOutput(args: GetStreamSubscriptionsOutputArgs, opts?: InvokeOptions): Output<GetStreamSubscriptionsResult>
    def get_stream_subscriptions(pagination: Optional[GetStreamSubscriptionsPagination] = None,
                                 stream_id: Optional[str] = None,
                                 opts: Optional[InvokeOptions] = None) -> GetStreamSubscriptionsResult
    def get_stream_subscriptions_output(pagination: Optional[pulumi.Input[GetStreamSubscriptionsPaginationArgs]] = None,
                                 stream_id: Optional[pulumi.Input[str]] = None,
                                 opts: Optional[InvokeOptions] = None) -> Output[GetStreamSubscriptionsResult]
    func GetStreamSubscriptions(ctx *Context, args *GetStreamSubscriptionsArgs, opts ...InvokeOption) (*GetStreamSubscriptionsResult, error)
    func GetStreamSubscriptionsOutput(ctx *Context, args *GetStreamSubscriptionsOutputArgs, opts ...InvokeOption) GetStreamSubscriptionsResultOutput

    > Note: This function is named GetStreamSubscriptions in the Go SDK.

    public static class GetStreamSubscriptions 
    {
        public static Task<GetStreamSubscriptionsResult> InvokeAsync(GetStreamSubscriptionsArgs args, InvokeOptions? opts = null)
        public static Output<GetStreamSubscriptionsResult> Invoke(GetStreamSubscriptionsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetStreamSubscriptionsResult> getStreamSubscriptions(GetStreamSubscriptionsArgs args, InvokeOptions options)
    public static Output<GetStreamSubscriptionsResult> getStreamSubscriptions(GetStreamSubscriptionsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: equinix:fabric/getStreamSubscriptions:getStreamSubscriptions
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Pagination GetStreamSubscriptionsPagination
    Pagination details for the returned streams list
    StreamId string
    The uuid of the stream that is the target of the stream subscription
    Pagination GetStreamSubscriptionsPagination
    Pagination details for the returned streams list
    StreamId string
    The uuid of the stream that is the target of the stream subscription
    pagination GetStreamSubscriptionsPagination
    Pagination details for the returned streams list
    streamId String
    The uuid of the stream that is the target of the stream subscription
    pagination GetStreamSubscriptionsPagination
    Pagination details for the returned streams list
    streamId string
    The uuid of the stream that is the target of the stream subscription
    pagination GetStreamSubscriptionsPagination
    Pagination details for the returned streams list
    stream_id str
    The uuid of the stream that is the target of the stream subscription
    pagination Property Map
    Pagination details for the returned streams list
    streamId String
    The uuid of the stream that is the target of the stream subscription

    getStreamSubscriptions Result

    The following output properties are available:

    Datas List<GetStreamSubscriptionsData>
    Returned list of stream objects
    Id string
    The unique identifier of the resource
    Pagination GetStreamSubscriptionsPagination
    Pagination details for the returned streams list
    StreamId string
    The uuid of the stream that is the target of the stream subscription
    Datas []GetStreamSubscriptionsData
    Returned list of stream objects
    Id string
    The unique identifier of the resource
    Pagination GetStreamSubscriptionsPagination
    Pagination details for the returned streams list
    StreamId string
    The uuid of the stream that is the target of the stream subscription
    datas List<GetStreamSubscriptionsData>
    Returned list of stream objects
    id String
    The unique identifier of the resource
    pagination GetStreamSubscriptionsPagination
    Pagination details for the returned streams list
    streamId String
    The uuid of the stream that is the target of the stream subscription
    datas GetStreamSubscriptionsData[]
    Returned list of stream objects
    id string
    The unique identifier of the resource
    pagination GetStreamSubscriptionsPagination
    Pagination details for the returned streams list
    streamId string
    The uuid of the stream that is the target of the stream subscription
    datas Sequence[GetStreamSubscriptionsData]
    Returned list of stream objects
    id str
    The unique identifier of the resource
    pagination GetStreamSubscriptionsPagination
    Pagination details for the returned streams list
    stream_id str
    The uuid of the stream that is the target of the stream subscription
    datas List<Property Map>
    Returned list of stream objects
    id String
    The unique identifier of the resource
    pagination Property Map
    Pagination details for the returned streams list
    streamId String
    The uuid of the stream that is the target of the stream subscription

    Supporting Types

    GetStreamSubscriptionsData

    ChangeLog GetStreamSubscriptionsDataChangeLog
    Details of the last change on the stream resource
    Description string
    Customer-provided stream subscription description
    Enabled bool
    Stream subscription enabled status
    EventSelector GetStreamSubscriptionsDataEventSelector
    Lists of events to be included/excluded on the stream subscription
    Href string
    Equinix assigned URI of the stream subscription resource
    MetricSelector GetStreamSubscriptionsDataMetricSelector
    Lists of metrics to be included/excluded on the stream subscription
    Name string
    Customer-provided stream subscription name
    Sink GetStreamSubscriptionsDataSink
    The details of the subscriber to the Equinix Stream
    State string
    Value representing provisioning status for the stream resource
    Type string
    Type of the stream subscription request
    Uuid string
    Equinix assigned unique identifier of the stream subscription resource
    ChangeLog GetStreamSubscriptionsDataChangeLog
    Details of the last change on the stream resource
    Description string
    Customer-provided stream subscription description
    Enabled bool
    Stream subscription enabled status
    EventSelector GetStreamSubscriptionsDataEventSelector
    Lists of events to be included/excluded on the stream subscription
    Href string
    Equinix assigned URI of the stream subscription resource
    MetricSelector GetStreamSubscriptionsDataMetricSelector
    Lists of metrics to be included/excluded on the stream subscription
    Name string
    Customer-provided stream subscription name
    Sink GetStreamSubscriptionsDataSink
    The details of the subscriber to the Equinix Stream
    State string
    Value representing provisioning status for the stream resource
    Type string
    Type of the stream subscription request
    Uuid string
    Equinix assigned unique identifier of the stream subscription resource
    changeLog GetStreamSubscriptionsDataChangeLog
    Details of the last change on the stream resource
    description String
    Customer-provided stream subscription description
    enabled Boolean
    Stream subscription enabled status
    eventSelector GetStreamSubscriptionsDataEventSelector
    Lists of events to be included/excluded on the stream subscription
    href String
    Equinix assigned URI of the stream subscription resource
    metricSelector GetStreamSubscriptionsDataMetricSelector
    Lists of metrics to be included/excluded on the stream subscription
    name String
    Customer-provided stream subscription name
    sink GetStreamSubscriptionsDataSink
    The details of the subscriber to the Equinix Stream
    state String
    Value representing provisioning status for the stream resource
    type String
    Type of the stream subscription request
    uuid String
    Equinix assigned unique identifier of the stream subscription resource
    changeLog GetStreamSubscriptionsDataChangeLog
    Details of the last change on the stream resource
    description string
    Customer-provided stream subscription description
    enabled boolean
    Stream subscription enabled status
    eventSelector GetStreamSubscriptionsDataEventSelector
    Lists of events to be included/excluded on the stream subscription
    href string
    Equinix assigned URI of the stream subscription resource
    metricSelector GetStreamSubscriptionsDataMetricSelector
    Lists of metrics to be included/excluded on the stream subscription
    name string
    Customer-provided stream subscription name
    sink GetStreamSubscriptionsDataSink
    The details of the subscriber to the Equinix Stream
    state string
    Value representing provisioning status for the stream resource
    type string
    Type of the stream subscription request
    uuid string
    Equinix assigned unique identifier of the stream subscription resource
    change_log GetStreamSubscriptionsDataChangeLog
    Details of the last change on the stream resource
    description str
    Customer-provided stream subscription description
    enabled bool
    Stream subscription enabled status
    event_selector GetStreamSubscriptionsDataEventSelector
    Lists of events to be included/excluded on the stream subscription
    href str
    Equinix assigned URI of the stream subscription resource
    metric_selector GetStreamSubscriptionsDataMetricSelector
    Lists of metrics to be included/excluded on the stream subscription
    name str
    Customer-provided stream subscription name
    sink GetStreamSubscriptionsDataSink
    The details of the subscriber to the Equinix Stream
    state str
    Value representing provisioning status for the stream resource
    type str
    Type of the stream subscription request
    uuid str
    Equinix assigned unique identifier of the stream subscription resource
    changeLog Property Map
    Details of the last change on the stream resource
    description String
    Customer-provided stream subscription description
    enabled Boolean
    Stream subscription enabled status
    eventSelector Property Map
    Lists of events to be included/excluded on the stream subscription
    href String
    Equinix assigned URI of the stream subscription resource
    metricSelector Property Map
    Lists of metrics to be included/excluded on the stream subscription
    name String
    Customer-provided stream subscription name
    sink Property Map
    The details of the subscriber to the Equinix Stream
    state String
    Value representing provisioning status for the stream resource
    type String
    Type of the stream subscription request
    uuid String
    Equinix assigned unique identifier of the stream subscription resource

    GetStreamSubscriptionsDataChangeLog

    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

    GetStreamSubscriptionsDataEventSelector

    Excepts List<string>
    List of events to exclude
    Includes List<string>
    List of events to include
    Excepts []string
    List of events to exclude
    Includes []string
    List of events to include
    excepts List<String>
    List of events to exclude
    includes List<String>
    List of events to include
    excepts string[]
    List of events to exclude
    includes string[]
    List of events to include
    excepts Sequence[str]
    List of events to exclude
    includes Sequence[str]
    List of events to include
    excepts List<String>
    List of events to exclude
    includes List<String>
    List of events to include

    GetStreamSubscriptionsDataMetricSelector

    Excepts List<string>
    List of metrics to exclude
    Includes List<string>
    List of metrics to include
    Excepts []string
    List of metrics to exclude
    Includes []string
    List of metrics to include
    excepts List<String>
    List of metrics to exclude
    includes List<String>
    List of metrics to include
    excepts string[]
    List of metrics to exclude
    includes string[]
    List of metrics to include
    excepts Sequence[str]
    List of metrics to exclude
    includes Sequence[str]
    List of metrics to include
    excepts List<String>
    List of metrics to exclude
    includes List<String>
    List of metrics to include

    GetStreamSubscriptionsDataSink

    BatchEnabled bool
    Boolean switch enabling batch delivery of data
    BatchSizeMax int
    Maximum size of the batch delivery if enabled
    BatchWaitTimeMax int
    Maximum time to wait for batch delivery if enabled
    Credential GetStreamSubscriptionsDataSinkCredential
    Access details for the specified sink type
    Host string
    Known hostname of certain data stream subscription products. Not to be confused with a variable URI
    Settings GetStreamSubscriptionsDataSinkSettings
    Stream subscription sink settings
    Type string
    Type of the subscriber
    Uri string
    Publicly reachable http endpoint destination for data stream
    BatchEnabled bool
    Boolean switch enabling batch delivery of data
    BatchSizeMax int
    Maximum size of the batch delivery if enabled
    BatchWaitTimeMax int
    Maximum time to wait for batch delivery if enabled
    Credential GetStreamSubscriptionsDataSinkCredential
    Access details for the specified sink type
    Host string
    Known hostname of certain data stream subscription products. Not to be confused with a variable URI
    Settings GetStreamSubscriptionsDataSinkSettings
    Stream subscription sink settings
    Type string
    Type of the subscriber
    Uri string
    Publicly reachable http endpoint destination for data stream
    batchEnabled Boolean
    Boolean switch enabling batch delivery of data
    batchSizeMax Integer
    Maximum size of the batch delivery if enabled
    batchWaitTimeMax Integer
    Maximum time to wait for batch delivery if enabled
    credential GetStreamSubscriptionsDataSinkCredential
    Access details for the specified sink type
    host String
    Known hostname of certain data stream subscription products. Not to be confused with a variable URI
    settings GetStreamSubscriptionsDataSinkSettings
    Stream subscription sink settings
    type String
    Type of the subscriber
    uri String
    Publicly reachable http endpoint destination for data stream
    batchEnabled boolean
    Boolean switch enabling batch delivery of data
    batchSizeMax number
    Maximum size of the batch delivery if enabled
    batchWaitTimeMax number
    Maximum time to wait for batch delivery if enabled
    credential GetStreamSubscriptionsDataSinkCredential
    Access details for the specified sink type
    host string
    Known hostname of certain data stream subscription products. Not to be confused with a variable URI
    settings GetStreamSubscriptionsDataSinkSettings
    Stream subscription sink settings
    type string
    Type of the subscriber
    uri string
    Publicly reachable http endpoint destination for data stream
    batch_enabled bool
    Boolean switch enabling batch delivery of data
    batch_size_max int
    Maximum size of the batch delivery if enabled
    batch_wait_time_max int
    Maximum time to wait for batch delivery if enabled
    credential GetStreamSubscriptionsDataSinkCredential
    Access details for the specified sink type
    host str
    Known hostname of certain data stream subscription products. Not to be confused with a variable URI
    settings GetStreamSubscriptionsDataSinkSettings
    Stream subscription sink settings
    type str
    Type of the subscriber
    uri str
    Publicly reachable http endpoint destination for data stream
    batchEnabled Boolean
    Boolean switch enabling batch delivery of data
    batchSizeMax Number
    Maximum size of the batch delivery if enabled
    batchWaitTimeMax Number
    Maximum time to wait for batch delivery if enabled
    credential Property Map
    Access details for the specified sink type
    host String
    Known hostname of certain data stream subscription products. Not to be confused with a variable URI
    settings Property Map
    Stream subscription sink settings
    type String
    Type of the subscriber
    uri String
    Publicly reachable http endpoint destination for data stream

    GetStreamSubscriptionsDataSinkCredential

    AccessToken string
    Passed as Authorization header value
    ApiKey string
    Passed as Authorization header value
    IntegrationKey string
    Passed as Authorization header value
    Password string
    Passed as Authorization header value
    Type string
    Type of the credential being passed
    Username string
    Passed as Authorization header value
    AccessToken string
    Passed as Authorization header value
    ApiKey string
    Passed as Authorization header value
    IntegrationKey string
    Passed as Authorization header value
    Password string
    Passed as Authorization header value
    Type string
    Type of the credential being passed
    Username string
    Passed as Authorization header value
    accessToken String
    Passed as Authorization header value
    apiKey String
    Passed as Authorization header value
    integrationKey String
    Passed as Authorization header value
    password String
    Passed as Authorization header value
    type String
    Type of the credential being passed
    username String
    Passed as Authorization header value
    accessToken string
    Passed as Authorization header value
    apiKey string
    Passed as Authorization header value
    integrationKey string
    Passed as Authorization header value
    password string
    Passed as Authorization header value
    type string
    Type of the credential being passed
    username string
    Passed as Authorization header value
    access_token str
    Passed as Authorization header value
    api_key str
    Passed as Authorization header value
    integration_key str
    Passed as Authorization header value
    password str
    Passed as Authorization header value
    type str
    Type of the credential being passed
    username str
    Passed as Authorization header value
    accessToken String
    Passed as Authorization header value
    apiKey String
    Passed as Authorization header value
    integrationKey String
    Passed as Authorization header value
    password String
    Passed as Authorization header value
    type String
    Type of the credential being passed
    username String
    Passed as Authorization header value

    GetStreamSubscriptionsDataSinkSettings

    AccessToken string
    Passed as Authorization header value
    ApiKey string
    Passed as Authorization header value
    IntegrationKey string
    Passed as Authorization header value
    Password string
    Passed as Authorization header value
    Type string
    Username string
    Passed as Authorization header value
    AccessToken string
    Passed as Authorization header value
    ApiKey string
    Passed as Authorization header value
    IntegrationKey string
    Passed as Authorization header value
    Password string
    Passed as Authorization header value
    Type string
    Username string
    Passed as Authorization header value
    accessToken String
    Passed as Authorization header value
    apiKey String
    Passed as Authorization header value
    integrationKey String
    Passed as Authorization header value
    password String
    Passed as Authorization header value
    type String
    username String
    Passed as Authorization header value
    accessToken string
    Passed as Authorization header value
    apiKey string
    Passed as Authorization header value
    integrationKey string
    Passed as Authorization header value
    password string
    Passed as Authorization header value
    type string
    username string
    Passed as Authorization header value
    access_token str
    Passed as Authorization header value
    api_key str
    Passed as Authorization header value
    integration_key str
    Passed as Authorization header value
    password str
    Passed as Authorization header value
    type str
    username str
    Passed as Authorization header value
    accessToken String
    Passed as Authorization header value
    apiKey String
    Passed as Authorization header value
    integrationKey String
    Passed as Authorization header value
    password String
    Passed as Authorization header value
    type String
    username String
    Passed as Authorization header value

    GetStreamSubscriptionsPagination

    Limit int
    Maximum number of search results returned per page. Number must be between 1 and 100, and the default is 20
    Next string
    The URL relative to the next item in the response
    Offset int
    Index of the first item returned in the response. The default is 0
    Previous string
    The URL relative to the previous item in the response
    Total int
    The total number of streams available to the user making the request
    Limit int
    Maximum number of search results returned per page. Number must be between 1 and 100, and the default is 20
    Next string
    The URL relative to the next item in the response
    Offset int
    Index of the first item returned in the response. The default is 0
    Previous string
    The URL relative to the previous item in the response
    Total int
    The total number of streams available to the user making the request
    limit Integer
    Maximum number of search results returned per page. Number must be between 1 and 100, and the default is 20
    next String
    The URL relative to the next item in the response
    offset Integer
    Index of the first item returned in the response. The default is 0
    previous String
    The URL relative to the previous item in the response
    total Integer
    The total number of streams available to the user making the request
    limit number
    Maximum number of search results returned per page. Number must be between 1 and 100, and the default is 20
    next string
    The URL relative to the next item in the response
    offset number
    Index of the first item returned in the response. The default is 0
    previous string
    The URL relative to the previous item in the response
    total number
    The total number of streams available to the user making the request
    limit int
    Maximum number of search results returned per page. Number must be between 1 and 100, and the default is 20
    next str
    The URL relative to the next item in the response
    offset int
    Index of the first item returned in the response. The default is 0
    previous str
    The URL relative to the previous item in the response
    total int
    The total number of streams available to the user making the request
    limit Number
    Maximum number of search results returned per page. Number must be between 1 and 100, and the default is 20
    next String
    The URL relative to the next item in the response
    offset Number
    Index of the first item returned in the response. The default is 0
    previous String
    The URL relative to the previous item in the response
    total Number
    The total number of streams available to the user making the request

    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.22.0 published on Wednesday, Apr 23, 2025 by Equinix