Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.Core.getImageShape
Explore with Pulumi AI
This data source provides details about a specific Image Shape resource in Oracle Cloud Infrastructure Core service.
Retrieves an image shape compatibility entry.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testImageShape = oci.Core.getImageShape({
    imageId: testImage.id,
    shapeName: testShape.name,
});
import pulumi
import pulumi_oci as oci
test_image_shape = oci.Core.get_image_shape(image_id=test_image["id"],
    shape_name=test_shape["name"])
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/core"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := core.GetImageShape(ctx, &core.GetImageShapeArgs{
			ImageId:   testImage.Id,
			ShapeName: testShape.Name,
		}, 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 testImageShape = Oci.Core.GetImageShape.Invoke(new()
    {
        ImageId = testImage.Id,
        ShapeName = testShape.Name,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Core.CoreFunctions;
import com.pulumi.oci.Core.inputs.GetImageShapeArgs;
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 testImageShape = CoreFunctions.getImageShape(GetImageShapeArgs.builder()
            .imageId(testImage.id())
            .shapeName(testShape.name())
            .build());
    }
}
variables:
  testImageShape:
    fn::invoke:
      function: oci:Core:getImageShape
      arguments:
        imageId: ${testImage.id}
        shapeName: ${testShape.name}
Using getImageShape
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 getImageShape(args: GetImageShapeArgs, opts?: InvokeOptions): Promise<GetImageShapeResult>
function getImageShapeOutput(args: GetImageShapeOutputArgs, opts?: InvokeOptions): Output<GetImageShapeResult>def get_image_shape(image_id: Optional[str] = None,
                    shape_name: Optional[str] = None,
                    opts: Optional[InvokeOptions] = None) -> GetImageShapeResult
def get_image_shape_output(image_id: Optional[pulumi.Input[str]] = None,
                    shape_name: Optional[pulumi.Input[str]] = None,
                    opts: Optional[InvokeOptions] = None) -> Output[GetImageShapeResult]func GetImageShape(ctx *Context, args *GetImageShapeArgs, opts ...InvokeOption) (*GetImageShapeResult, error)
func GetImageShapeOutput(ctx *Context, args *GetImageShapeOutputArgs, opts ...InvokeOption) GetImageShapeResultOutput> Note: This function is named GetImageShape in the Go SDK.
public static class GetImageShape 
{
    public static Task<GetImageShapeResult> InvokeAsync(GetImageShapeArgs args, InvokeOptions? opts = null)
    public static Output<GetImageShapeResult> Invoke(GetImageShapeInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetImageShapeResult> getImageShape(GetImageShapeArgs args, InvokeOptions options)
public static Output<GetImageShapeResult> getImageShape(GetImageShapeArgs args, InvokeOptions options)
fn::invoke:
  function: oci:Core/getImageShape:getImageShape
  arguments:
    # arguments dictionaryThe following arguments are supported:
- image_id str
- The OCID of the image.
- shape_name str
- Shape name.
getImageShape Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- ImageId string
- The image OCID.
- MemoryConstraints List<GetImage Shape Memory Constraint> 
- For a flexible image and shape, the amount of memory supported for instances that use this image.
- OcpuConstraints List<GetImage Shape Ocpu Constraint> 
- OCPU options for an image and shape.
- Shape string
- The shape name.
- ShapeName string
- Id string
- The provider-assigned unique ID for this managed resource.
- ImageId string
- The image OCID.
- MemoryConstraints []GetImage Shape Memory Constraint 
- For a flexible image and shape, the amount of memory supported for instances that use this image.
- OcpuConstraints []GetImage Shape Ocpu Constraint 
- OCPU options for an image and shape.
- Shape string
- The shape name.
- ShapeName string
- id String
- The provider-assigned unique ID for this managed resource.
- imageId String
- The image OCID.
- memoryConstraints List<GetImage Shape Memory Constraint> 
- For a flexible image and shape, the amount of memory supported for instances that use this image.
- ocpuConstraints List<GetImage Shape Ocpu Constraint> 
- OCPU options for an image and shape.
- shape String
- The shape name.
- shapeName String
- id string
- The provider-assigned unique ID for this managed resource.
- imageId string
- The image OCID.
- memoryConstraints GetImage Shape Memory Constraint[] 
- For a flexible image and shape, the amount of memory supported for instances that use this image.
- ocpuConstraints GetImage Shape Ocpu Constraint[] 
- OCPU options for an image and shape.
- shape string
- The shape name.
- shapeName string
- id str
- The provider-assigned unique ID for this managed resource.
- image_id str
- The image OCID.
- memory_constraints Sequence[GetImage Shape Memory Constraint] 
- For a flexible image and shape, the amount of memory supported for instances that use this image.
- ocpu_constraints Sequence[GetImage Shape Ocpu Constraint] 
- OCPU options for an image and shape.
- shape str
- The shape name.
- shape_name str
- id String
- The provider-assigned unique ID for this managed resource.
- imageId String
- The image OCID.
- memoryConstraints List<Property Map>
- For a flexible image and shape, the amount of memory supported for instances that use this image.
- ocpuConstraints List<Property Map>
- OCPU options for an image and shape.
- shape String
- The shape name.
- shapeName String
Supporting Types
GetImageShapeMemoryConstraint    
- max_in_ intgbs 
- The maximum amount of memory, in gigabytes.
- min_in_ intgbs 
- The minimum amount of memory, in gigabytes.
GetImageShapeOcpuConstraint    
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.