1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. ContainerEngine
  5. getPodShapes
Oracle Cloud Infrastructure v1.34.0 published on Friday, May 3, 2024 by Pulumi

oci.ContainerEngine.getPodShapes

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.34.0 published on Friday, May 3, 2024 by Pulumi

    This data source provides the list of Pod Shapes in Oracle Cloud Infrastructure Container Engine service.

    List all the Pod Shapes in a compartment.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testPodShapes = oci.ContainerEngine.getPodShapes({
        compartmentId: compartmentId,
        availabilityDomain: podShapeAvailabilityDomain,
        name: podShapeName,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_pod_shapes = oci.ContainerEngine.get_pod_shapes(compartment_id=compartment_id,
        availability_domain=pod_shape_availability_domain,
        name=pod_shape_name)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/ContainerEngine"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ContainerEngine.GetPodShapes(ctx, &containerengine.GetPodShapesArgs{
    			CompartmentId:      compartmentId,
    			AvailabilityDomain: pulumi.StringRef(podShapeAvailabilityDomain),
    			Name:               pulumi.StringRef(podShapeName),
    		}, 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 testPodShapes = Oci.ContainerEngine.GetPodShapes.Invoke(new()
        {
            CompartmentId = compartmentId,
            AvailabilityDomain = podShapeAvailabilityDomain,
            Name = podShapeName,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.ContainerEngine.ContainerEngineFunctions;
    import com.pulumi.oci.ContainerEngine.inputs.GetPodShapesArgs;
    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 testPodShapes = ContainerEngineFunctions.getPodShapes(GetPodShapesArgs.builder()
                .compartmentId(compartmentId)
                .availabilityDomain(podShapeAvailabilityDomain)
                .name(podShapeName)
                .build());
    
        }
    }
    
    variables:
      testPodShapes:
        fn::invoke:
          Function: oci:ContainerEngine:getPodShapes
          Arguments:
            compartmentId: ${compartmentId}
            availabilityDomain: ${podShapeAvailabilityDomain}
            name: ${podShapeName}
    

    Using getPodShapes

    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 getPodShapes(args: GetPodShapesArgs, opts?: InvokeOptions): Promise<GetPodShapesResult>
    function getPodShapesOutput(args: GetPodShapesOutputArgs, opts?: InvokeOptions): Output<GetPodShapesResult>
    def get_pod_shapes(availability_domain: Optional[str] = None,
                       compartment_id: Optional[str] = None,
                       filters: Optional[Sequence[_containerengine.GetPodShapesFilter]] = None,
                       name: Optional[str] = None,
                       opts: Optional[InvokeOptions] = None) -> GetPodShapesResult
    def get_pod_shapes_output(availability_domain: Optional[pulumi.Input[str]] = None,
                       compartment_id: Optional[pulumi.Input[str]] = None,
                       filters: Optional[pulumi.Input[Sequence[pulumi.Input[_containerengine.GetPodShapesFilterArgs]]]] = None,
                       name: Optional[pulumi.Input[str]] = None,
                       opts: Optional[InvokeOptions] = None) -> Output[GetPodShapesResult]
    func GetPodShapes(ctx *Context, args *GetPodShapesArgs, opts ...InvokeOption) (*GetPodShapesResult, error)
    func GetPodShapesOutput(ctx *Context, args *GetPodShapesOutputArgs, opts ...InvokeOption) GetPodShapesResultOutput

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

    public static class GetPodShapes 
    {
        public static Task<GetPodShapesResult> InvokeAsync(GetPodShapesArgs args, InvokeOptions? opts = null)
        public static Output<GetPodShapesResult> Invoke(GetPodShapesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetPodShapesResult> getPodShapes(GetPodShapesArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:ContainerEngine/getPodShapes:getPodShapes
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The OCID of the compartment.
    AvailabilityDomain string
    The availability domain of the pod shape.
    Filters List<GetPodShapesFilter>
    Name string
    The name to filter on.
    CompartmentId string
    The OCID of the compartment.
    AvailabilityDomain string
    The availability domain of the pod shape.
    Filters []GetPodShapesFilter
    Name string
    The name to filter on.
    compartmentId String
    The OCID of the compartment.
    availabilityDomain String
    The availability domain of the pod shape.
    filters List<GetPodShapesFilter>
    name String
    The name to filter on.
    compartmentId string
    The OCID of the compartment.
    availabilityDomain string
    The availability domain of the pod shape.
    filters GetPodShapesFilter[]
    name string
    The name to filter on.
    compartment_id str
    The OCID of the compartment.
    availability_domain str
    The availability domain of the pod shape.
    filters Sequence[containerengine.GetPodShapesFilter]
    name str
    The name to filter on.
    compartmentId String
    The OCID of the compartment.
    availabilityDomain String
    The availability domain of the pod shape.
    filters List<Property Map>
    name String
    The name to filter on.

    getPodShapes Result

    The following output properties are available:

    CompartmentId string
    Id string
    The provider-assigned unique ID for this managed resource.
    PodShapes List<GetPodShapesPodShape>
    The list of pod_shapes.
    AvailabilityDomain string
    Filters List<GetPodShapesFilter>
    Name string
    The name of the identifying shape.
    CompartmentId string
    Id string
    The provider-assigned unique ID for this managed resource.
    PodShapes []GetPodShapesPodShape
    The list of pod_shapes.
    AvailabilityDomain string
    Filters []GetPodShapesFilter
    Name string
    The name of the identifying shape.
    compartmentId String
    id String
    The provider-assigned unique ID for this managed resource.
    podShapes List<GetPodShapesPodShape>
    The list of pod_shapes.
    availabilityDomain String
    filters List<GetPodShapesFilter>
    name String
    The name of the identifying shape.
    compartmentId string
    id string
    The provider-assigned unique ID for this managed resource.
    podShapes GetPodShapesPodShape[]
    The list of pod_shapes.
    availabilityDomain string
    filters GetPodShapesFilter[]
    name string
    The name of the identifying shape.
    compartment_id str
    id str
    The provider-assigned unique ID for this managed resource.
    pod_shapes Sequence[containerengine.GetPodShapesPodShape]
    The list of pod_shapes.
    availability_domain str
    filters Sequence[containerengine.GetPodShapesFilter]
    name str
    The name of the identifying shape.
    compartmentId String
    id String
    The provider-assigned unique ID for this managed resource.
    podShapes List<Property Map>
    The list of pod_shapes.
    availabilityDomain String
    filters List<Property Map>
    name String
    The name of the identifying shape.

    Supporting Types

    GetPodShapesFilter

    Name string
    The name to filter on.
    Values List<string>
    Regex bool
    Name string
    The name to filter on.
    Values []string
    Regex bool
    name String
    The name to filter on.
    values List<String>
    regex Boolean
    name string
    The name to filter on.
    values string[]
    regex boolean
    name str
    The name to filter on.
    values Sequence[str]
    regex bool
    name String
    The name to filter on.
    values List<String>
    regex Boolean

    GetPodShapesPodShape

    MemoryOptions List<GetPodShapesPodShapeMemoryOption>
    ShapeMemoryOptions.
    Name string
    The name to filter on.
    NetworkBandwidthOptions List<GetPodShapesPodShapeNetworkBandwidthOption>
    ShapeNetworkBandwidthOptions.
    OcpuOptions List<GetPodShapesPodShapeOcpuOption>
    Options for OCPU shape.
    ProcessorDescription string
    A short description of the VM's processor (CPU).
    MemoryOptions []GetPodShapesPodShapeMemoryOption
    ShapeMemoryOptions.
    Name string
    The name to filter on.
    NetworkBandwidthOptions []GetPodShapesPodShapeNetworkBandwidthOption
    ShapeNetworkBandwidthOptions.
    OcpuOptions []GetPodShapesPodShapeOcpuOption
    Options for OCPU shape.
    ProcessorDescription string
    A short description of the VM's processor (CPU).
    memoryOptions List<GetPodShapesPodShapeMemoryOption>
    ShapeMemoryOptions.
    name String
    The name to filter on.
    networkBandwidthOptions List<GetPodShapesPodShapeNetworkBandwidthOption>
    ShapeNetworkBandwidthOptions.
    ocpuOptions List<GetPodShapesPodShapeOcpuOption>
    Options for OCPU shape.
    processorDescription String
    A short description of the VM's processor (CPU).
    memoryOptions GetPodShapesPodShapeMemoryOption[]
    ShapeMemoryOptions.
    name string
    The name to filter on.
    networkBandwidthOptions GetPodShapesPodShapeNetworkBandwidthOption[]
    ShapeNetworkBandwidthOptions.
    ocpuOptions GetPodShapesPodShapeOcpuOption[]
    Options for OCPU shape.
    processorDescription string
    A short description of the VM's processor (CPU).
    memoryOptions List<Property Map>
    ShapeMemoryOptions.
    name String
    The name to filter on.
    networkBandwidthOptions List<Property Map>
    ShapeNetworkBandwidthOptions.
    ocpuOptions List<Property Map>
    Options for OCPU shape.
    processorDescription String
    A short description of the VM's processor (CPU).

    GetPodShapesPodShapeMemoryOption

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

    GetPodShapesPodShapeNetworkBandwidthOption

    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.

    GetPodShapesPodShapeOcpuOption

    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.

    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.34.0 published on Friday, May 3, 2024 by Pulumi