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

oci.ContainerInstances.getContainerInstanceShapes

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 Container Instance Shapes in Oracle Cloud Infrastructure Container Instances service.

    Lists the shapes that can be used to create container instances.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testContainerInstanceShapes = oci.ContainerInstances.getContainerInstanceShapes({
        compartmentId: _var.compartment_id,
        availabilityDomain: _var.container_instance_shape_availability_domain,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_container_instance_shapes = oci.ContainerInstances.get_container_instance_shapes(compartment_id=var["compartment_id"],
        availability_domain=var["container_instance_shape_availability_domain"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/ContainerInstances"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ContainerInstances.GetContainerInstanceShapes(ctx, &containerinstances.GetContainerInstanceShapesArgs{
    			CompartmentId:      _var.Compartment_id,
    			AvailabilityDomain: pulumi.StringRef(_var.Container_instance_shape_availability_domain),
    		}, 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 testContainerInstanceShapes = Oci.ContainerInstances.GetContainerInstanceShapes.Invoke(new()
        {
            CompartmentId = @var.Compartment_id,
            AvailabilityDomain = @var.Container_instance_shape_availability_domain,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.ContainerInstances.ContainerInstancesFunctions;
    import com.pulumi.oci.ContainerInstances.inputs.GetContainerInstanceShapesArgs;
    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 testContainerInstanceShapes = ContainerInstancesFunctions.getContainerInstanceShapes(GetContainerInstanceShapesArgs.builder()
                .compartmentId(var_.compartment_id())
                .availabilityDomain(var_.container_instance_shape_availability_domain())
                .build());
    
        }
    }
    
    variables:
      testContainerInstanceShapes:
        fn::invoke:
          Function: oci:ContainerInstances:getContainerInstanceShapes
          Arguments:
            compartmentId: ${var.compartment_id}
            availabilityDomain: ${var.container_instance_shape_availability_domain}
    

    Using getContainerInstanceShapes

    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 getContainerInstanceShapes(args: GetContainerInstanceShapesArgs, opts?: InvokeOptions): Promise<GetContainerInstanceShapesResult>
    function getContainerInstanceShapesOutput(args: GetContainerInstanceShapesOutputArgs, opts?: InvokeOptions): Output<GetContainerInstanceShapesResult>
    def get_container_instance_shapes(availability_domain: Optional[str] = None,
                                      compartment_id: Optional[str] = None,
                                      filters: Optional[Sequence[_containerinstances.GetContainerInstanceShapesFilter]] = None,
                                      opts: Optional[InvokeOptions] = None) -> GetContainerInstanceShapesResult
    def get_container_instance_shapes_output(availability_domain: Optional[pulumi.Input[str]] = None,
                                      compartment_id: Optional[pulumi.Input[str]] = None,
                                      filters: Optional[pulumi.Input[Sequence[pulumi.Input[_containerinstances.GetContainerInstanceShapesFilterArgs]]]] = None,
                                      opts: Optional[InvokeOptions] = None) -> Output[GetContainerInstanceShapesResult]
    func GetContainerInstanceShapes(ctx *Context, args *GetContainerInstanceShapesArgs, opts ...InvokeOption) (*GetContainerInstanceShapesResult, error)
    func GetContainerInstanceShapesOutput(ctx *Context, args *GetContainerInstanceShapesOutputArgs, opts ...InvokeOption) GetContainerInstanceShapesResultOutput

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

    public static class GetContainerInstanceShapes 
    {
        public static Task<GetContainerInstanceShapesResult> InvokeAsync(GetContainerInstanceShapesArgs args, InvokeOptions? opts = null)
        public static Output<GetContainerInstanceShapesResult> Invoke(GetContainerInstanceShapesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetContainerInstanceShapesResult> getContainerInstanceShapes(GetContainerInstanceShapesArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:ContainerInstances/getContainerInstanceShapes:getContainerInstanceShapes
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The OCID of the compartment in which to list resources.
    AvailabilityDomain string
    The name of the availability domain. Example: Uocm:PHX-AD-1
    Filters List<GetContainerInstanceShapesFilter>
    CompartmentId string
    The OCID of the compartment in which to list resources.
    AvailabilityDomain string
    The name of the availability domain. Example: Uocm:PHX-AD-1
    Filters []GetContainerInstanceShapesFilter
    compartmentId String
    The OCID of the compartment in which to list resources.
    availabilityDomain String
    The name of the availability domain. Example: Uocm:PHX-AD-1
    filters List<GetContainerInstanceShapesFilter>
    compartmentId string
    The OCID of the compartment in which to list resources.
    availabilityDomain string
    The name of the availability domain. Example: Uocm:PHX-AD-1
    filters GetContainerInstanceShapesFilter[]
    compartment_id str
    The OCID of the compartment in which to list resources.
    availability_domain str
    The name of the availability domain. Example: Uocm:PHX-AD-1
    filters Sequence[containerinstances.GetContainerInstanceShapesFilter]
    compartmentId String
    The OCID of the compartment in which to list resources.
    availabilityDomain String
    The name of the availability domain. Example: Uocm:PHX-AD-1
    filters List<Property Map>

    getContainerInstanceShapes Result

    The following output properties are available:

    CompartmentId string
    ContainerInstanceShapeCollections List<GetContainerInstanceShapesContainerInstanceShapeCollection>
    The list of container_instance_shape_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    AvailabilityDomain string
    Filters List<GetContainerInstanceShapesFilter>
    CompartmentId string
    ContainerInstanceShapeCollections []GetContainerInstanceShapesContainerInstanceShapeCollection
    The list of container_instance_shape_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    AvailabilityDomain string
    Filters []GetContainerInstanceShapesFilter
    compartmentId String
    containerInstanceShapeCollections List<GetContainerInstanceShapesContainerInstanceShapeCollection>
    The list of container_instance_shape_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    availabilityDomain String
    filters List<GetContainerInstanceShapesFilter>
    compartmentId string
    containerInstanceShapeCollections GetContainerInstanceShapesContainerInstanceShapeCollection[]
    The list of container_instance_shape_collection.
    id string
    The provider-assigned unique ID for this managed resource.
    availabilityDomain string
    filters GetContainerInstanceShapesFilter[]
    compartmentId String
    containerInstanceShapeCollections List<Property Map>
    The list of container_instance_shape_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    availabilityDomain String
    filters List<Property Map>

    Supporting Types

    GetContainerInstanceShapesContainerInstanceShapeCollection

    items List<Property Map>
    A list of shapes.

    GetContainerInstanceShapesContainerInstanceShapeCollectionItem

    MemoryOptions List<GetContainerInstanceShapesContainerInstanceShapeCollectionItemMemoryOption>
    For a flexible shape, the amount of memory available for container instances that use this shape.
    Name string
    The name identifying the shape.
    NetworkingBandwidthOptions List<GetContainerInstanceShapesContainerInstanceShapeCollectionItemNetworkingBandwidthOption>
    For a flexible shape, the amount of networking bandwidth available for container instances that use this shape.
    OcpuOptions List<GetContainerInstanceShapesContainerInstanceShapeCollectionItemOcpuOption>
    For a flexible shape, the number of OCPUs available for container instances that use this shape.
    ProcessorDescription string
    A short description of the container instance's processor (CPU).
    MemoryOptions []GetContainerInstanceShapesContainerInstanceShapeCollectionItemMemoryOption
    For a flexible shape, the amount of memory available for container instances that use this shape.
    Name string
    The name identifying the shape.
    NetworkingBandwidthOptions []GetContainerInstanceShapesContainerInstanceShapeCollectionItemNetworkingBandwidthOption
    For a flexible shape, the amount of networking bandwidth available for container instances that use this shape.
    OcpuOptions []GetContainerInstanceShapesContainerInstanceShapeCollectionItemOcpuOption
    For a flexible shape, the number of OCPUs available for container instances that use this shape.
    ProcessorDescription string
    A short description of the container instance's processor (CPU).
    memoryOptions List<GetContainerInstanceShapesContainerInstanceShapeCollectionItemMemoryOption>
    For a flexible shape, the amount of memory available for container instances that use this shape.
    name String
    The name identifying the shape.
    networkingBandwidthOptions List<GetContainerInstanceShapesContainerInstanceShapeCollectionItemNetworkingBandwidthOption>
    For a flexible shape, the amount of networking bandwidth available for container instances that use this shape.
    ocpuOptions List<GetContainerInstanceShapesContainerInstanceShapeCollectionItemOcpuOption>
    For a flexible shape, the number of OCPUs available for container instances that use this shape.
    processorDescription String
    A short description of the container instance's processor (CPU).
    memoryOptions GetContainerInstanceShapesContainerInstanceShapeCollectionItemMemoryOption[]
    For a flexible shape, the amount of memory available for container instances that use this shape.
    name string
    The name identifying the shape.
    networkingBandwidthOptions GetContainerInstanceShapesContainerInstanceShapeCollectionItemNetworkingBandwidthOption[]
    For a flexible shape, the amount of networking bandwidth available for container instances that use this shape.
    ocpuOptions GetContainerInstanceShapesContainerInstanceShapeCollectionItemOcpuOption[]
    For a flexible shape, the number of OCPUs available for container instances that use this shape.
    processorDescription string
    A short description of the container instance's processor (CPU).
    memory_options Sequence[containerinstances.GetContainerInstanceShapesContainerInstanceShapeCollectionItemMemoryOption]
    For a flexible shape, the amount of memory available for container instances that use this shape.
    name str
    The name identifying the shape.
    networking_bandwidth_options Sequence[containerinstances.GetContainerInstanceShapesContainerInstanceShapeCollectionItemNetworkingBandwidthOption]
    For a flexible shape, the amount of networking bandwidth available for container instances that use this shape.
    ocpu_options Sequence[containerinstances.GetContainerInstanceShapesContainerInstanceShapeCollectionItemOcpuOption]
    For a flexible shape, the number of OCPUs available for container instances that use this shape.
    processor_description str
    A short description of the container instance's processor (CPU).
    memoryOptions List<Property Map>
    For a flexible shape, the amount of memory available for container instances that use this shape.
    name String
    The name identifying the shape.
    networkingBandwidthOptions List<Property Map>
    For a flexible shape, the amount of networking bandwidth available for container instances that use this shape.
    ocpuOptions List<Property Map>
    For a flexible shape, the number of OCPUs available for container instances that use this shape.
    processorDescription String
    A short description of the container instance's processor (CPU).

    GetContainerInstanceShapesContainerInstanceShapeCollectionItemMemoryOption

    DefaultPerOcpuInGbs double
    The default amount of memory per OCPU available for this shape (GB).
    MaxInGbs double
    The maximum amount of memory (GB).
    MaxPerOcpuInGbs double
    The maximum amount of memory per OCPU available for this shape (GB).
    MinInGbs double
    The minimum amount of memory (GB).
    MinPerOcpuInGbs double
    The minimum amount of memory per OCPU available for this shape (GB).
    DefaultPerOcpuInGbs float64
    The default amount of memory per OCPU available for this shape (GB).
    MaxInGbs float64
    The maximum amount of memory (GB).
    MaxPerOcpuInGbs float64
    The maximum amount of memory per OCPU available for this shape (GB).
    MinInGbs float64
    The minimum amount of memory (GB).
    MinPerOcpuInGbs float64
    The minimum amount of memory per OCPU available for this shape (GB).
    defaultPerOcpuInGbs Double
    The default amount of memory per OCPU available for this shape (GB).
    maxInGbs Double
    The maximum amount of memory (GB).
    maxPerOcpuInGbs Double
    The maximum amount of memory per OCPU available for this shape (GB).
    minInGbs Double
    The minimum amount of memory (GB).
    minPerOcpuInGbs Double
    The minimum amount of memory per OCPU available for this shape (GB).
    defaultPerOcpuInGbs number
    The default amount of memory per OCPU available for this shape (GB).
    maxInGbs number
    The maximum amount of memory (GB).
    maxPerOcpuInGbs number
    The maximum amount of memory per OCPU available for this shape (GB).
    minInGbs number
    The minimum amount of memory (GB).
    minPerOcpuInGbs number
    The minimum amount of memory per OCPU available for this shape (GB).
    default_per_ocpu_in_gbs float
    The default amount of memory per OCPU available for this shape (GB).
    max_in_gbs float
    The maximum amount of memory (GB).
    max_per_ocpu_in_gbs float
    The maximum amount of memory per OCPU available for this shape (GB).
    min_in_gbs float
    The minimum amount of memory (GB).
    min_per_ocpu_in_gbs float
    The minimum amount of memory per OCPU available for this shape (GB).
    defaultPerOcpuInGbs Number
    The default amount of memory per OCPU available for this shape (GB).
    maxInGbs Number
    The maximum amount of memory (GB).
    maxPerOcpuInGbs Number
    The maximum amount of memory per OCPU available for this shape (GB).
    minInGbs Number
    The minimum amount of memory (GB).
    minPerOcpuInGbs Number
    The minimum amount of memory per OCPU available for this shape (GB).

    GetContainerInstanceShapesContainerInstanceShapeCollectionItemNetworkingBandwidthOption

    DefaultPerOcpuInGbps double
    The default amount of networking bandwidth per OCPU, in gigabits per second.
    MaxInGbps double
    The maximum amount of networking bandwidth, in gigabits per second.
    MinInGbps double
    The minimum amount of networking bandwidth, in gigabits per second.
    DefaultPerOcpuInGbps float64
    The default amount of networking bandwidth per OCPU, in gigabits per second.
    MaxInGbps float64
    The maximum amount of networking bandwidth, in gigabits per second.
    MinInGbps float64
    The minimum amount of networking bandwidth, in gigabits per second.
    defaultPerOcpuInGbps Double
    The default amount of networking bandwidth per OCPU, in gigabits per second.
    maxInGbps Double
    The maximum amount of networking bandwidth, in gigabits per second.
    minInGbps Double
    The minimum amount of networking bandwidth, in gigabits per second.
    defaultPerOcpuInGbps number
    The default amount of networking bandwidth per OCPU, in gigabits per second.
    maxInGbps number
    The maximum amount of networking bandwidth, in gigabits per second.
    minInGbps number
    The minimum amount of networking bandwidth, in gigabits per second.
    default_per_ocpu_in_gbps float
    The default amount of networking bandwidth per OCPU, in gigabits per second.
    max_in_gbps float
    The maximum amount of networking bandwidth, in gigabits per second.
    min_in_gbps float
    The minimum amount of networking bandwidth, in gigabits per second.
    defaultPerOcpuInGbps Number
    The default amount of networking bandwidth per OCPU, in gigabits per second.
    maxInGbps Number
    The maximum amount of networking bandwidth, in gigabits per second.
    minInGbps Number
    The minimum amount of networking bandwidth, in gigabits per second.

    GetContainerInstanceShapesContainerInstanceShapeCollectionItemOcpuOption

    Max double
    The maximum number of OCPUs.
    Min double
    The minimum number of OCPUs.
    Max float64
    The maximum number of OCPUs.
    Min float64
    The minimum number of OCPUs.
    max Double
    The maximum number of OCPUs.
    min Double
    The minimum number of OCPUs.
    max number
    The maximum number of OCPUs.
    min number
    The minimum number of OCPUs.
    max float
    The maximum number of OCPUs.
    min float
    The minimum number of OCPUs.
    max Number
    The maximum number of OCPUs.
    min Number
    The minimum number of OCPUs.

    GetContainerInstanceShapesFilter

    Name string
    The name identifying the shape.
    Values List<string>
    Regex bool
    Name string
    The name identifying the shape.
    Values []string
    Regex bool
    name String
    The name identifying the shape.
    values List<String>
    regex Boolean
    name string
    The name identifying the shape.
    values string[]
    regex boolean
    name str
    The name identifying the shape.
    values Sequence[str]
    regex bool
    name String
    The name identifying the shape.
    values List<String>
    regex Boolean

    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