1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. ApiGateway
  5. getSubscribers
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

oci.ApiGateway.getSubscribers

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

    This data source provides the list of Subscribers in Oracle Cloud Infrastructure API Gateway service.

    Returns a list of subscribers.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testSubscribers = oci.ApiGateway.getSubscribers({
        compartmentId: _var.compartment_id,
        displayName: _var.subscriber_display_name,
        state: _var.subscriber_state,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_subscribers = oci.ApiGateway.get_subscribers(compartment_id=var["compartment_id"],
        display_name=var["subscriber_display_name"],
        state=var["subscriber_state"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/ApiGateway"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ApiGateway.GetSubscribers(ctx, &apigateway.GetSubscribersArgs{
    			CompartmentId: _var.Compartment_id,
    			DisplayName:   pulumi.StringRef(_var.Subscriber_display_name),
    			State:         pulumi.StringRef(_var.Subscriber_state),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testSubscribers = Oci.ApiGateway.GetSubscribers.Invoke(new()
        {
            CompartmentId = @var.Compartment_id,
            DisplayName = @var.Subscriber_display_name,
            State = @var.Subscriber_state,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.ApiGateway.ApiGatewayFunctions;
    import com.pulumi.oci.ApiGateway.inputs.GetSubscribersArgs;
    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 testSubscribers = ApiGatewayFunctions.getSubscribers(GetSubscribersArgs.builder()
                .compartmentId(var_.compartment_id())
                .displayName(var_.subscriber_display_name())
                .state(var_.subscriber_state())
                .build());
    
        }
    }
    
    variables:
      testSubscribers:
        fn::invoke:
          Function: oci:ApiGateway:getSubscribers
          Arguments:
            compartmentId: ${var.compartment_id}
            displayName: ${var.subscriber_display_name}
            state: ${var.subscriber_state}
    

    Using getSubscribers

    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 getSubscribers(args: GetSubscribersArgs, opts?: InvokeOptions): Promise<GetSubscribersResult>
    function getSubscribersOutput(args: GetSubscribersOutputArgs, opts?: InvokeOptions): Output<GetSubscribersResult>
    def get_subscribers(compartment_id: Optional[str] = None,
                        display_name: Optional[str] = None,
                        filters: Optional[Sequence[_apigateway.GetSubscribersFilter]] = None,
                        state: Optional[str] = None,
                        opts: Optional[InvokeOptions] = None) -> GetSubscribersResult
    def get_subscribers_output(compartment_id: Optional[pulumi.Input[str]] = None,
                        display_name: Optional[pulumi.Input[str]] = None,
                        filters: Optional[pulumi.Input[Sequence[pulumi.Input[_apigateway.GetSubscribersFilterArgs]]]] = None,
                        state: Optional[pulumi.Input[str]] = None,
                        opts: Optional[InvokeOptions] = None) -> Output[GetSubscribersResult]
    func GetSubscribers(ctx *Context, args *GetSubscribersArgs, opts ...InvokeOption) (*GetSubscribersResult, error)
    func GetSubscribersOutput(ctx *Context, args *GetSubscribersOutputArgs, opts ...InvokeOption) GetSubscribersResultOutput

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

    public static class GetSubscribers 
    {
        public static Task<GetSubscribersResult> InvokeAsync(GetSubscribersArgs args, InvokeOptions? opts = null)
        public static Output<GetSubscribersResult> Invoke(GetSubscribersInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetSubscribersResult> getSubscribers(GetSubscribersArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:ApiGateway/getSubscribers:getSubscribers
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The ocid of the compartment in which to list resources.
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Example: My new resource
    Filters List<GetSubscribersFilter>
    State string
    A filter to return only resources that match the given lifecycle state. Example: ACTIVE
    CompartmentId string
    The ocid of the compartment in which to list resources.
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Example: My new resource
    Filters []GetSubscribersFilter
    State string
    A filter to return only resources that match the given lifecycle state. Example: ACTIVE
    compartmentId String
    The ocid of the compartment in which to list resources.
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Example: My new resource
    filters List<GetSubscribersFilter>
    state String
    A filter to return only resources that match the given lifecycle state. Example: ACTIVE
    compartmentId string
    The ocid of the compartment in which to list resources.
    displayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Example: My new resource
    filters GetSubscribersFilter[]
    state string
    A filter to return only resources that match the given lifecycle state. Example: ACTIVE
    compartment_id str
    The ocid of the compartment in which to list resources.
    display_name str
    A user-friendly name. Does not have to be unique, and it's changeable. Example: My new resource
    filters Sequence[apigateway.GetSubscribersFilter]
    state str
    A filter to return only resources that match the given lifecycle state. Example: ACTIVE
    compartmentId String
    The ocid of the compartment in which to list resources.
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Example: My new resource
    filters List<Property Map>
    state String
    A filter to return only resources that match the given lifecycle state. Example: ACTIVE

    getSubscribers Result

    The following output properties are available:

    CompartmentId string
    The OCID of the compartment in which the resource is created.
    Id string
    The provider-assigned unique ID for this managed resource.
    SubscriberCollections List<GetSubscribersSubscriberCollection>
    The list of subscriber_collection.
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
    Filters List<GetSubscribersFilter>
    State string
    The current state of the subscriber.
    CompartmentId string
    The OCID of the compartment in which the resource is created.
    Id string
    The provider-assigned unique ID for this managed resource.
    SubscriberCollections []GetSubscribersSubscriberCollection
    The list of subscriber_collection.
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
    Filters []GetSubscribersFilter
    State string
    The current state of the subscriber.
    compartmentId String
    The OCID of the compartment in which the resource is created.
    id String
    The provider-assigned unique ID for this managed resource.
    subscriberCollections List<GetSubscribersSubscriberCollection>
    The list of subscriber_collection.
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
    filters List<GetSubscribersFilter>
    state String
    The current state of the subscriber.
    compartmentId string
    The OCID of the compartment in which the resource is created.
    id string
    The provider-assigned unique ID for this managed resource.
    subscriberCollections GetSubscribersSubscriberCollection[]
    The list of subscriber_collection.
    displayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
    filters GetSubscribersFilter[]
    state string
    The current state of the subscriber.
    compartment_id str
    The OCID of the compartment in which the resource is created.
    id str
    The provider-assigned unique ID for this managed resource.
    subscriber_collections Sequence[apigateway.GetSubscribersSubscriberCollection]
    The list of subscriber_collection.
    display_name str
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
    filters Sequence[apigateway.GetSubscribersFilter]
    state str
    The current state of the subscriber.
    compartmentId String
    The OCID of the compartment in which the resource is created.
    id String
    The provider-assigned unique ID for this managed resource.
    subscriberCollections List<Property Map>
    The list of subscriber_collection.
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
    filters List<Property Map>
    state String
    The current state of the subscriber.

    Supporting Types

    GetSubscribersFilter

    Name string
    The name of the client. Must be unique within a subscriber.
    Values List<string>
    Regex bool
    Name string
    The name of the client. Must be unique within a subscriber.
    Values []string
    Regex bool
    name String
    The name of the client. Must be unique within a subscriber.
    values List<String>
    regex Boolean
    name string
    The name of the client. Must be unique within a subscriber.
    values string[]
    regex boolean
    name str
    The name of the client. Must be unique within a subscriber.
    values Sequence[str]
    regex bool
    name String
    The name of the client. Must be unique within a subscriber.
    values List<String>
    regex Boolean

    GetSubscribersSubscriberCollection

    GetSubscribersSubscriberCollectionItem

    Clients List<GetSubscribersSubscriberCollectionItemClient>
    The clients belonging to this subscriber.
    CompartmentId string
    The ocid of the compartment in which to list resources.
    DefinedTags Dictionary<string, object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Example: My new resource
    FreeformTags Dictionary<string, object>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    Id string
    The OCID of the resource.
    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
    State string
    A filter to return only resources that match the given lifecycle state. Example: ACTIVE
    TimeCreated string
    The time this resource was created. An RFC3339 formatted datetime string.
    TimeUpdated string
    The time this resource was last updated. An RFC3339 formatted datetime string.
    UsagePlans List<string>
    An array of OCIDs of usage plan resources.
    Clients []GetSubscribersSubscriberCollectionItemClient
    The clients belonging to this subscriber.
    CompartmentId string
    The ocid of the compartment in which to list resources.
    DefinedTags map[string]interface{}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Example: My new resource
    FreeformTags map[string]interface{}
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    Id string
    The OCID of the resource.
    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
    State string
    A filter to return only resources that match the given lifecycle state. Example: ACTIVE
    TimeCreated string
    The time this resource was created. An RFC3339 formatted datetime string.
    TimeUpdated string
    The time this resource was last updated. An RFC3339 formatted datetime string.
    UsagePlans []string
    An array of OCIDs of usage plan resources.
    clients List<GetSubscribersSubscriberCollectionItemClient>
    The clients belonging to this subscriber.
    compartmentId String
    The ocid of the compartment in which to list resources.
    definedTags Map<String,Object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Example: My new resource
    freeformTags Map<String,Object>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id String
    The OCID of the resource.
    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
    state String
    A filter to return only resources that match the given lifecycle state. Example: ACTIVE
    timeCreated String
    The time this resource was created. An RFC3339 formatted datetime string.
    timeUpdated String
    The time this resource was last updated. An RFC3339 formatted datetime string.
    usagePlans List<String>
    An array of OCIDs of usage plan resources.
    clients GetSubscribersSubscriberCollectionItemClient[]
    The clients belonging to this subscriber.
    compartmentId string
    The ocid of the compartment in which to list resources.
    definedTags {[key: string]: any}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Example: My new resource
    freeformTags {[key: string]: any}
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id string
    The OCID of the resource.
    lifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
    state string
    A filter to return only resources that match the given lifecycle state. Example: ACTIVE
    timeCreated string
    The time this resource was created. An RFC3339 formatted datetime string.
    timeUpdated string
    The time this resource was last updated. An RFC3339 formatted datetime string.
    usagePlans string[]
    An array of OCIDs of usage plan resources.
    clients Sequence[apigateway.GetSubscribersSubscriberCollectionItemClient]
    The clients belonging to this subscriber.
    compartment_id str
    The ocid of the compartment in which to list resources.
    defined_tags Mapping[str, Any]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    display_name str
    A user-friendly name. Does not have to be unique, and it's changeable. Example: My new resource
    freeform_tags Mapping[str, Any]
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id str
    The OCID of the resource.
    lifecycle_details str
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
    state str
    A filter to return only resources that match the given lifecycle state. Example: ACTIVE
    time_created str
    The time this resource was created. An RFC3339 formatted datetime string.
    time_updated str
    The time this resource was last updated. An RFC3339 formatted datetime string.
    usage_plans Sequence[str]
    An array of OCIDs of usage plan resources.
    clients List<Property Map>
    The clients belonging to this subscriber.
    compartmentId String
    The ocid of the compartment in which to list resources.
    definedTags Map<Any>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Example: My new resource
    freeformTags Map<Any>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id String
    The OCID of the resource.
    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
    state String
    A filter to return only resources that match the given lifecycle state. Example: ACTIVE
    timeCreated String
    The time this resource was created. An RFC3339 formatted datetime string.
    timeUpdated String
    The time this resource was last updated. An RFC3339 formatted datetime string.
    usagePlans List<String>
    An array of OCIDs of usage plan resources.

    GetSubscribersSubscriberCollectionItemClient

    Name string
    The name of the client. Must be unique within a subscriber.
    Token string
    The token for the client. Must be unique within a tenancy.
    Name string
    The name of the client. Must be unique within a subscriber.
    Token string
    The token for the client. Must be unique within a tenancy.
    name String
    The name of the client. Must be unique within a subscriber.
    token String
    The token for the client. Must be unique within a tenancy.
    name string
    The name of the client. Must be unique within a subscriber.
    token string
    The token for the client. Must be unique within a tenancy.
    name str
    The name of the client. Must be unique within a subscriber.
    token str
    The token for the client. Must be unique within a tenancy.
    name String
    The name of the client. Must be unique within a subscriber.
    token String
    The token for the client. Must be unique within a tenancy.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi