1. Packages
  2. Ibm Provider
  3. API Docs
  4. getIsImages
ibm 1.77.1 published on Monday, Apr 14, 2025 by ibm-cloud

ibm.getIsImages

Explore with Pulumi AI

Retrieve information of an existing IBM Cloud Infrastructure images as a read-only data source. For more information, about IBM Cloud infrastructure images, see Images.

Note: VPC infrastructure services are a regional specific based endpoint, by default targets to us-south. Please make sure to target right region in the provider block as shown in the provider.tf file, if VPC service is created in region other than us-south.

provider.tf

import * as pulumi from "@pulumi/pulumi";
Copy
import pulumi
Copy
package main

import (
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;

return await Deployment.RunAsync(() => 
{
});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
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) {
    }
}
Copy
{}
Copy

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";

const dsImages = ibm.getIsImages({
    visibility: "public",
});
Copy
import pulumi
import pulumi_ibm as ibm

ds_images = ibm.get_is_images(visibility="public")
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := ibm.GetIsImages(ctx, &ibm.GetIsImagesArgs{
			Visibility: pulumi.StringRef("public"),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ibm = Pulumi.Ibm;

return await Deployment.RunAsync(() => 
{
    var dsImages = Ibm.GetIsImages.Invoke(new()
    {
        Visibility = "public",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ibm.IbmFunctions;
import com.pulumi.ibm.inputs.GetIsImagesArgs;
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 dsImages = IbmFunctions.getIsImages(GetIsImagesArgs.builder()
            .visibility("public")
            .build());

    }
}
Copy
variables:
  dsImages:
    fn::invoke:
      function: ibm:getIsImages
      arguments:
        visibility: public
Copy

Using getIsImages

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 getIsImages(args: GetIsImagesArgs, opts?: InvokeOptions): Promise<GetIsImagesResult>
function getIsImagesOutput(args: GetIsImagesOutputArgs, opts?: InvokeOptions): Output<GetIsImagesResult>
Copy
def get_is_images(catalog_managed: Optional[bool] = None,
                  id: Optional[str] = None,
                  name: Optional[str] = None,
                  resource_group: Optional[str] = None,
                  status: Optional[str] = None,
                  user_data_formats: Optional[Sequence[str]] = None,
                  visibility: Optional[str] = None,
                  opts: Optional[InvokeOptions] = None) -> GetIsImagesResult
def get_is_images_output(catalog_managed: Optional[pulumi.Input[bool]] = None,
                  id: Optional[pulumi.Input[str]] = None,
                  name: Optional[pulumi.Input[str]] = None,
                  resource_group: Optional[pulumi.Input[str]] = None,
                  status: Optional[pulumi.Input[str]] = None,
                  user_data_formats: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                  visibility: Optional[pulumi.Input[str]] = None,
                  opts: Optional[InvokeOptions] = None) -> Output[GetIsImagesResult]
Copy
func GetIsImages(ctx *Context, args *GetIsImagesArgs, opts ...InvokeOption) (*GetIsImagesResult, error)
func GetIsImagesOutput(ctx *Context, args *GetIsImagesOutputArgs, opts ...InvokeOption) GetIsImagesResultOutput
Copy

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

public static class GetIsImages 
{
    public static Task<GetIsImagesResult> InvokeAsync(GetIsImagesArgs args, InvokeOptions? opts = null)
    public static Output<GetIsImagesResult> Invoke(GetIsImagesInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetIsImagesResult> getIsImages(GetIsImagesArgs args, InvokeOptions options)
public static Output<GetIsImagesResult> getIsImages(GetIsImagesArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: ibm:index/getIsImages:getIsImages
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

CatalogManaged bool
Lists only those images which are managed as part of a catalog offering.
Id string
(String) The unique identifier for this resource group.
Name string
The name of the image.
ResourceGroup string
The id of the resource group.
Status string
Status of the image. Accepted value : available, deleting, deprecated, failed, obsolete, pending, unusable
UserDataFormats List<string>

The user data format for this image.

Note: Allowed values are : cloud_init: user_data will be interpreted according to the cloud-init standard. esxi_kickstart: user_data will be interpreted as a VMware ESXi installation script. ipxe: user_data will be interpreted as a single URL to an iPXE script or as the text of an iPXE script.

Visibility string
Visibility of the image. Accepted values : private, public
CatalogManaged bool
Lists only those images which are managed as part of a catalog offering.
Id string
(String) The unique identifier for this resource group.
Name string
The name of the image.
ResourceGroup string
The id of the resource group.
Status string
Status of the image. Accepted value : available, deleting, deprecated, failed, obsolete, pending, unusable
UserDataFormats []string

The user data format for this image.

Note: Allowed values are : cloud_init: user_data will be interpreted according to the cloud-init standard. esxi_kickstart: user_data will be interpreted as a VMware ESXi installation script. ipxe: user_data will be interpreted as a single URL to an iPXE script or as the text of an iPXE script.

Visibility string
Visibility of the image. Accepted values : private, public
catalogManaged Boolean
Lists only those images which are managed as part of a catalog offering.
id String
(String) The unique identifier for this resource group.
name String
The name of the image.
resourceGroup String
The id of the resource group.
status String
Status of the image. Accepted value : available, deleting, deprecated, failed, obsolete, pending, unusable
userDataFormats List<String>

The user data format for this image.

Note: Allowed values are : cloud_init: user_data will be interpreted according to the cloud-init standard. esxi_kickstart: user_data will be interpreted as a VMware ESXi installation script. ipxe: user_data will be interpreted as a single URL to an iPXE script or as the text of an iPXE script.

visibility String
Visibility of the image. Accepted values : private, public
catalogManaged boolean
Lists only those images which are managed as part of a catalog offering.
id string
(String) The unique identifier for this resource group.
name string
The name of the image.
resourceGroup string
The id of the resource group.
status string
Status of the image. Accepted value : available, deleting, deprecated, failed, obsolete, pending, unusable
userDataFormats string[]

The user data format for this image.

Note: Allowed values are : cloud_init: user_data will be interpreted according to the cloud-init standard. esxi_kickstart: user_data will be interpreted as a VMware ESXi installation script. ipxe: user_data will be interpreted as a single URL to an iPXE script or as the text of an iPXE script.

visibility string
Visibility of the image. Accepted values : private, public
catalog_managed bool
Lists only those images which are managed as part of a catalog offering.
id str
(String) The unique identifier for this resource group.
name str
The name of the image.
resource_group str
The id of the resource group.
status str
Status of the image. Accepted value : available, deleting, deprecated, failed, obsolete, pending, unusable
user_data_formats Sequence[str]

The user data format for this image.

Note: Allowed values are : cloud_init: user_data will be interpreted according to the cloud-init standard. esxi_kickstart: user_data will be interpreted as a VMware ESXi installation script. ipxe: user_data will be interpreted as a single URL to an iPXE script or as the text of an iPXE script.

visibility str
Visibility of the image. Accepted values : private, public
catalogManaged Boolean
Lists only those images which are managed as part of a catalog offering.
id String
(String) The unique identifier for this resource group.
name String
The name of the image.
resourceGroup String
The id of the resource group.
status String
Status of the image. Accepted value : available, deleting, deprecated, failed, obsolete, pending, unusable
userDataFormats List<String>

The user data format for this image.

Note: Allowed values are : cloud_init: user_data will be interpreted according to the cloud-init standard. esxi_kickstart: user_data will be interpreted as a VMware ESXi installation script. ipxe: user_data will be interpreted as a single URL to an iPXE script or as the text of an iPXE script.

visibility String
Visibility of the image. Accepted values : private, public

getIsImages Result

The following output properties are available:

Id string
(String) The unique identifier for this resource group.
Images List<GetIsImagesImage>
(List) List of all images in the IBM Cloud Infrastructure.
CatalogManaged bool
Name string
(String) The user-defined name for this resource group.
ResourceGroup string
(List) The resource group object, for this image. Nested scheme for resource_group:
Status string
(String) The status of this image.
UserDataFormats List<string>
(String) The user data format for this image.
Visibility string
(String) The visibility of the image public or private.
Id string
(String) The unique identifier for this resource group.
Images []GetIsImagesImage
(List) List of all images in the IBM Cloud Infrastructure.
CatalogManaged bool
Name string
(String) The user-defined name for this resource group.
ResourceGroup string
(List) The resource group object, for this image. Nested scheme for resource_group:
Status string
(String) The status of this image.
UserDataFormats []string
(String) The user data format for this image.
Visibility string
(String) The visibility of the image public or private.
id String
(String) The unique identifier for this resource group.
images List<GetIsImagesImage>
(List) List of all images in the IBM Cloud Infrastructure.
catalogManaged Boolean
name String
(String) The user-defined name for this resource group.
resourceGroup String
(List) The resource group object, for this image. Nested scheme for resource_group:
status String
(String) The status of this image.
userDataFormats List<String>
(String) The user data format for this image.
visibility String
(String) The visibility of the image public or private.
id string
(String) The unique identifier for this resource group.
images GetIsImagesImage[]
(List) List of all images in the IBM Cloud Infrastructure.
catalogManaged boolean
name string
(String) The user-defined name for this resource group.
resourceGroup string
(List) The resource group object, for this image. Nested scheme for resource_group:
status string
(String) The status of this image.
userDataFormats string[]
(String) The user data format for this image.
visibility string
(String) The visibility of the image public or private.
id str
(String) The unique identifier for this resource group.
images Sequence[GetIsImagesImage]
(List) List of all images in the IBM Cloud Infrastructure.
catalog_managed bool
name str
(String) The user-defined name for this resource group.
resource_group str
(List) The resource group object, for this image. Nested scheme for resource_group:
status str
(String) The status of this image.
user_data_formats Sequence[str]
(String) The user data format for this image.
visibility str
(String) The visibility of the image public or private.
id String
(String) The unique identifier for this resource group.
images List<Property Map>
(List) List of all images in the IBM Cloud Infrastructure.
catalogManaged Boolean
name String
(String) The user-defined name for this resource group.
resourceGroup String
(List) The resource group object, for this image. Nested scheme for resource_group:
status String
(String) The status of this image.
userDataFormats List<String>
(String) The user data format for this image.
visibility String
(String) The visibility of the image public or private.

Supporting Types

GetIsImagesImage

AccessTags This property is required. List<string>
(List) Access management tags associated for image.
Architecture This property is required. string
(String) The operating system architecture.
CatalogOfferings This property is required. List<GetIsImagesImageCatalogOffering>
(List) The catalog offering for this image.
Checksum This property is required. string
(String) TThe SHA256 checksum for this image.
Crn This property is required. string
(String) The CRN for this version of a catalog offering
Encryption This property is required. string
(String) The type of encryption used on the image.
EncryptionKey This property is required. string
(String) The CRN of the Key Protect Root Key or Hyper Protect Crypto Service Root Key for this resource.
Id This property is required. string
(String) The unique identifier for this resource group.
Name This property is required. string
The name of the image.
OperatingSystems This property is required. List<GetIsImagesImageOperatingSystem>
(List) The operating system details.
Os This property is required. string
(String) The name of the Operating System.
ResourceGroups This property is required. List<GetIsImagesImageResourceGroup>
The id of the resource group.
SourceVolume This property is required. string
The source volume id of the image.
Status This property is required. string
Status of the image. Accepted value : available, deleting, deprecated, failed, obsolete, pending, unusable
StatusReasons This property is required. List<GetIsImagesImageStatusReason>
(List) The reasons for the current status (if any).
UserDataFormat This property is required. string

The user data format for this image.

Note: Allowed values are : cloud_init: user_data will be interpreted according to the cloud-init standard. esxi_kickstart: user_data will be interpreted as a VMware ESXi installation script. ipxe: user_data will be interpreted as a single URL to an iPXE script or as the text of an iPXE script.

Visibility This property is required. string
Visibility of the image. Accepted values : private, public
AccessTags This property is required. []string
(List) Access management tags associated for image.
Architecture This property is required. string
(String) The operating system architecture.
CatalogOfferings This property is required. []GetIsImagesImageCatalogOffering
(List) The catalog offering for this image.
Checksum This property is required. string
(String) TThe SHA256 checksum for this image.
Crn This property is required. string
(String) The CRN for this version of a catalog offering
Encryption This property is required. string
(String) The type of encryption used on the image.
EncryptionKey This property is required. string
(String) The CRN of the Key Protect Root Key or Hyper Protect Crypto Service Root Key for this resource.
Id This property is required. string
(String) The unique identifier for this resource group.
Name This property is required. string
The name of the image.
OperatingSystems This property is required. []GetIsImagesImageOperatingSystem
(List) The operating system details.
Os This property is required. string
(String) The name of the Operating System.
ResourceGroups This property is required. []GetIsImagesImageResourceGroup
The id of the resource group.
SourceVolume This property is required. string
The source volume id of the image.
Status This property is required. string
Status of the image. Accepted value : available, deleting, deprecated, failed, obsolete, pending, unusable
StatusReasons This property is required. []GetIsImagesImageStatusReason
(List) The reasons for the current status (if any).
UserDataFormat This property is required. string

The user data format for this image.

Note: Allowed values are : cloud_init: user_data will be interpreted according to the cloud-init standard. esxi_kickstart: user_data will be interpreted as a VMware ESXi installation script. ipxe: user_data will be interpreted as a single URL to an iPXE script or as the text of an iPXE script.

Visibility This property is required. string
Visibility of the image. Accepted values : private, public
accessTags This property is required. List<String>
(List) Access management tags associated for image.
architecture This property is required. String
(String) The operating system architecture.
catalogOfferings This property is required. List<GetIsImagesImageCatalogOffering>
(List) The catalog offering for this image.
checksum This property is required. String
(String) TThe SHA256 checksum for this image.
crn This property is required. String
(String) The CRN for this version of a catalog offering
encryption This property is required. String
(String) The type of encryption used on the image.
encryptionKey This property is required. String
(String) The CRN of the Key Protect Root Key or Hyper Protect Crypto Service Root Key for this resource.
id This property is required. String
(String) The unique identifier for this resource group.
name This property is required. String
The name of the image.
operatingSystems This property is required. List<GetIsImagesImageOperatingSystem>
(List) The operating system details.
os This property is required. String
(String) The name of the Operating System.
resourceGroups This property is required. List<GetIsImagesImageResourceGroup>
The id of the resource group.
sourceVolume This property is required. String
The source volume id of the image.
status This property is required. String
Status of the image. Accepted value : available, deleting, deprecated, failed, obsolete, pending, unusable
statusReasons This property is required. List<GetIsImagesImageStatusReason>
(List) The reasons for the current status (if any).
userDataFormat This property is required. String

The user data format for this image.

Note: Allowed values are : cloud_init: user_data will be interpreted according to the cloud-init standard. esxi_kickstart: user_data will be interpreted as a VMware ESXi installation script. ipxe: user_data will be interpreted as a single URL to an iPXE script or as the text of an iPXE script.

visibility This property is required. String
Visibility of the image. Accepted values : private, public
accessTags This property is required. string[]
(List) Access management tags associated for image.
architecture This property is required. string
(String) The operating system architecture.
catalogOfferings This property is required. GetIsImagesImageCatalogOffering[]
(List) The catalog offering for this image.
checksum This property is required. string
(String) TThe SHA256 checksum for this image.
crn This property is required. string
(String) The CRN for this version of a catalog offering
encryption This property is required. string
(String) The type of encryption used on the image.
encryptionKey This property is required. string
(String) The CRN of the Key Protect Root Key or Hyper Protect Crypto Service Root Key for this resource.
id This property is required. string
(String) The unique identifier for this resource group.
name This property is required. string
The name of the image.
operatingSystems This property is required. GetIsImagesImageOperatingSystem[]
(List) The operating system details.
os This property is required. string
(String) The name of the Operating System.
resourceGroups This property is required. GetIsImagesImageResourceGroup[]
The id of the resource group.
sourceVolume This property is required. string
The source volume id of the image.
status This property is required. string
Status of the image. Accepted value : available, deleting, deprecated, failed, obsolete, pending, unusable
statusReasons This property is required. GetIsImagesImageStatusReason[]
(List) The reasons for the current status (if any).
userDataFormat This property is required. string

The user data format for this image.

Note: Allowed values are : cloud_init: user_data will be interpreted according to the cloud-init standard. esxi_kickstart: user_data will be interpreted as a VMware ESXi installation script. ipxe: user_data will be interpreted as a single URL to an iPXE script or as the text of an iPXE script.

visibility This property is required. string
Visibility of the image. Accepted values : private, public
access_tags This property is required. Sequence[str]
(List) Access management tags associated for image.
architecture This property is required. str
(String) The operating system architecture.
catalog_offerings This property is required. Sequence[GetIsImagesImageCatalogOffering]
(List) The catalog offering for this image.
checksum This property is required. str
(String) TThe SHA256 checksum for this image.
crn This property is required. str
(String) The CRN for this version of a catalog offering
encryption This property is required. str
(String) The type of encryption used on the image.
encryption_key This property is required. str
(String) The CRN of the Key Protect Root Key or Hyper Protect Crypto Service Root Key for this resource.
id This property is required. str
(String) The unique identifier for this resource group.
name This property is required. str
The name of the image.
operating_systems This property is required. Sequence[GetIsImagesImageOperatingSystem]
(List) The operating system details.
os This property is required. str
(String) The name of the Operating System.
resource_groups This property is required. Sequence[GetIsImagesImageResourceGroup]
The id of the resource group.
source_volume This property is required. str
The source volume id of the image.
status This property is required. str
Status of the image. Accepted value : available, deleting, deprecated, failed, obsolete, pending, unusable
status_reasons This property is required. Sequence[GetIsImagesImageStatusReason]
(List) The reasons for the current status (if any).
user_data_format This property is required. str

The user data format for this image.

Note: Allowed values are : cloud_init: user_data will be interpreted according to the cloud-init standard. esxi_kickstart: user_data will be interpreted as a VMware ESXi installation script. ipxe: user_data will be interpreted as a single URL to an iPXE script or as the text of an iPXE script.

visibility This property is required. str
Visibility of the image. Accepted values : private, public
accessTags This property is required. List<String>
(List) Access management tags associated for image.
architecture This property is required. String
(String) The operating system architecture.
catalogOfferings This property is required. List<Property Map>
(List) The catalog offering for this image.
checksum This property is required. String
(String) TThe SHA256 checksum for this image.
crn This property is required. String
(String) The CRN for this version of a catalog offering
encryption This property is required. String
(String) The type of encryption used on the image.
encryptionKey This property is required. String
(String) The CRN of the Key Protect Root Key or Hyper Protect Crypto Service Root Key for this resource.
id This property is required. String
(String) The unique identifier for this resource group.
name This property is required. String
The name of the image.
operatingSystems This property is required. List<Property Map>
(List) The operating system details.
os This property is required. String
(String) The name of the Operating System.
resourceGroups This property is required. List<Property Map>
The id of the resource group.
sourceVolume This property is required. String
The source volume id of the image.
status This property is required. String
Status of the image. Accepted value : available, deleting, deprecated, failed, obsolete, pending, unusable
statusReasons This property is required. List<Property Map>
(List) The reasons for the current status (if any).
userDataFormat This property is required. String

The user data format for this image.

Note: Allowed values are : cloud_init: user_data will be interpreted according to the cloud-init standard. esxi_kickstart: user_data will be interpreted as a VMware ESXi installation script. ipxe: user_data will be interpreted as a single URL to an iPXE script or as the text of an iPXE script.

visibility This property is required. String
Visibility of the image. Accepted values : private, public

GetIsImagesImageCatalogOffering

Managed This property is required. bool
(Bool) Indicates whether this image is managed as part of a catalog offering. If an image is managed, accounts in the same enterprise with access to that catalog can specify the image's catalog offering version CRN to provision virtual server instances using the image.
Versions This property is required. List<GetIsImagesImageCatalogOfferingVersion>
(String) The major release version of this operating system.
Managed This property is required. bool
(Bool) Indicates whether this image is managed as part of a catalog offering. If an image is managed, accounts in the same enterprise with access to that catalog can specify the image's catalog offering version CRN to provision virtual server instances using the image.
Versions This property is required. []GetIsImagesImageCatalogOfferingVersion
(String) The major release version of this operating system.
managed This property is required. Boolean
(Bool) Indicates whether this image is managed as part of a catalog offering. If an image is managed, accounts in the same enterprise with access to that catalog can specify the image's catalog offering version CRN to provision virtual server instances using the image.
versions This property is required. List<GetIsImagesImageCatalogOfferingVersion>
(String) The major release version of this operating system.
managed This property is required. boolean
(Bool) Indicates whether this image is managed as part of a catalog offering. If an image is managed, accounts in the same enterprise with access to that catalog can specify the image's catalog offering version CRN to provision virtual server instances using the image.
versions This property is required. GetIsImagesImageCatalogOfferingVersion[]
(String) The major release version of this operating system.
managed This property is required. bool
(Bool) Indicates whether this image is managed as part of a catalog offering. If an image is managed, accounts in the same enterprise with access to that catalog can specify the image's catalog offering version CRN to provision virtual server instances using the image.
versions This property is required. Sequence[GetIsImagesImageCatalogOfferingVersion]
(String) The major release version of this operating system.
managed This property is required. Boolean
(Bool) Indicates whether this image is managed as part of a catalog offering. If an image is managed, accounts in the same enterprise with access to that catalog can specify the image's catalog offering version CRN to provision virtual server instances using the image.
versions This property is required. List<Property Map>
(String) The major release version of this operating system.

GetIsImagesImageCatalogOfferingVersion

Crn This property is required. string
(String) The CRN for this version of a catalog offering
Deleteds This property is required. List<GetIsImagesImageCatalogOfferingVersionDeleted>
Crn This property is required. string
(String) The CRN for this version of a catalog offering
Deleteds This property is required. []GetIsImagesImageCatalogOfferingVersionDeleted
crn This property is required. String
(String) The CRN for this version of a catalog offering
deleteds This property is required. List<GetIsImagesImageCatalogOfferingVersionDeleted>
crn This property is required. string
(String) The CRN for this version of a catalog offering
deleteds This property is required. GetIsImagesImageCatalogOfferingVersionDeleted[]
crn This property is required. str
(String) The CRN for this version of a catalog offering
deleteds This property is required. Sequence[GetIsImagesImageCatalogOfferingVersionDeleted]
crn This property is required. String
(String) The CRN for this version of a catalog offering
deleteds This property is required. List<Property Map>

GetIsImagesImageCatalogOfferingVersionDeleted

MoreInfo This property is required. string
(String) Link to documentation about this status reason
MoreInfo This property is required. string
(String) Link to documentation about this status reason
moreInfo This property is required. String
(String) Link to documentation about this status reason
moreInfo This property is required. string
(String) Link to documentation about this status reason
more_info This property is required. str
(String) Link to documentation about this status reason
moreInfo This property is required. String
(String) Link to documentation about this status reason

GetIsImagesImageOperatingSystem

AllowUserImageCreation This property is required. bool
(String) Users may create new images with this operating system.
Architecture This property is required. string
(String) The operating system architecture.
DedicatedHostOnly This property is required. bool
(Bool) Images with this operating system can only be used on dedicated hosts or dedicated host groups.
DisplayName This property is required. string
(String) A unique, display-friendly name for the operating system.
Family This property is required. string
(String) The software family for this operating system.
Href This property is required. string
(String) The URL for this resource group.
Name This property is required. string
The name of the image.
UserDataFormat This property is required. string

The user data format for this image.

Note: Allowed values are : cloud_init: user_data will be interpreted according to the cloud-init standard. esxi_kickstart: user_data will be interpreted as a VMware ESXi installation script. ipxe: user_data will be interpreted as a single URL to an iPXE script or as the text of an iPXE script.

Vendor This property is required. string
(String) The vendor of the operating system.
Version This property is required. string
(String) The major release version of this operating system.
AllowUserImageCreation This property is required. bool
(String) Users may create new images with this operating system.
Architecture This property is required. string
(String) The operating system architecture.
DedicatedHostOnly This property is required. bool
(Bool) Images with this operating system can only be used on dedicated hosts or dedicated host groups.
DisplayName This property is required. string
(String) A unique, display-friendly name for the operating system.
Family This property is required. string
(String) The software family for this operating system.
Href This property is required. string
(String) The URL for this resource group.
Name This property is required. string
The name of the image.
UserDataFormat This property is required. string

The user data format for this image.

Note: Allowed values are : cloud_init: user_data will be interpreted according to the cloud-init standard. esxi_kickstart: user_data will be interpreted as a VMware ESXi installation script. ipxe: user_data will be interpreted as a single URL to an iPXE script or as the text of an iPXE script.

Vendor This property is required. string
(String) The vendor of the operating system.
Version This property is required. string
(String) The major release version of this operating system.
allowUserImageCreation This property is required. Boolean
(String) Users may create new images with this operating system.
architecture This property is required. String
(String) The operating system architecture.
dedicatedHostOnly This property is required. Boolean
(Bool) Images with this operating system can only be used on dedicated hosts or dedicated host groups.
displayName This property is required. String
(String) A unique, display-friendly name for the operating system.
family This property is required. String
(String) The software family for this operating system.
href This property is required. String
(String) The URL for this resource group.
name This property is required. String
The name of the image.
userDataFormat This property is required. String

The user data format for this image.

Note: Allowed values are : cloud_init: user_data will be interpreted according to the cloud-init standard. esxi_kickstart: user_data will be interpreted as a VMware ESXi installation script. ipxe: user_data will be interpreted as a single URL to an iPXE script or as the text of an iPXE script.

vendor This property is required. String
(String) The vendor of the operating system.
version This property is required. String
(String) The major release version of this operating system.
allowUserImageCreation This property is required. boolean
(String) Users may create new images with this operating system.
architecture This property is required. string
(String) The operating system architecture.
dedicatedHostOnly This property is required. boolean
(Bool) Images with this operating system can only be used on dedicated hosts or dedicated host groups.
displayName This property is required. string
(String) A unique, display-friendly name for the operating system.
family This property is required. string
(String) The software family for this operating system.
href This property is required. string
(String) The URL for this resource group.
name This property is required. string
The name of the image.
userDataFormat This property is required. string

The user data format for this image.

Note: Allowed values are : cloud_init: user_data will be interpreted according to the cloud-init standard. esxi_kickstart: user_data will be interpreted as a VMware ESXi installation script. ipxe: user_data will be interpreted as a single URL to an iPXE script or as the text of an iPXE script.

vendor This property is required. string
(String) The vendor of the operating system.
version This property is required. string
(String) The major release version of this operating system.
allow_user_image_creation This property is required. bool
(String) Users may create new images with this operating system.
architecture This property is required. str
(String) The operating system architecture.
dedicated_host_only This property is required. bool
(Bool) Images with this operating system can only be used on dedicated hosts or dedicated host groups.
display_name This property is required. str
(String) A unique, display-friendly name for the operating system.
family This property is required. str
(String) The software family for this operating system.
href This property is required. str
(String) The URL for this resource group.
name This property is required. str
The name of the image.
user_data_format This property is required. str

The user data format for this image.

Note: Allowed values are : cloud_init: user_data will be interpreted according to the cloud-init standard. esxi_kickstart: user_data will be interpreted as a VMware ESXi installation script. ipxe: user_data will be interpreted as a single URL to an iPXE script or as the text of an iPXE script.

vendor This property is required. str
(String) The vendor of the operating system.
version This property is required. str
(String) The major release version of this operating system.
allowUserImageCreation This property is required. Boolean
(String) Users may create new images with this operating system.
architecture This property is required. String
(String) The operating system architecture.
dedicatedHostOnly This property is required. Boolean
(Bool) Images with this operating system can only be used on dedicated hosts or dedicated host groups.
displayName This property is required. String
(String) A unique, display-friendly name for the operating system.
family This property is required. String
(String) The software family for this operating system.
href This property is required. String
(String) The URL for this resource group.
name This property is required. String
The name of the image.
userDataFormat This property is required. String

The user data format for this image.

Note: Allowed values are : cloud_init: user_data will be interpreted according to the cloud-init standard. esxi_kickstart: user_data will be interpreted as a VMware ESXi installation script. ipxe: user_data will be interpreted as a single URL to an iPXE script or as the text of an iPXE script.

vendor This property is required. String
(String) The vendor of the operating system.
version This property is required. String
(String) The major release version of this operating system.

GetIsImagesImageResourceGroup

Href This property is required. string
(String) The URL for this resource group.
Id This property is required. string
(String) The unique identifier for this resource group.
Name This property is required. string
The name of the image.
Href This property is required. string
(String) The URL for this resource group.
Id This property is required. string
(String) The unique identifier for this resource group.
Name This property is required. string
The name of the image.
href This property is required. String
(String) The URL for this resource group.
id This property is required. String
(String) The unique identifier for this resource group.
name This property is required. String
The name of the image.
href This property is required. string
(String) The URL for this resource group.
id This property is required. string
(String) The unique identifier for this resource group.
name This property is required. string
The name of the image.
href This property is required. str
(String) The URL for this resource group.
id This property is required. str
(String) The unique identifier for this resource group.
name This property is required. str
The name of the image.
href This property is required. String
(String) The URL for this resource group.
id This property is required. String
(String) The unique identifier for this resource group.
name This property is required. String
The name of the image.

GetIsImagesImageStatusReason

Code This property is required. string
(String) The status reason code
Message This property is required. string
(String) An explanation of the status reason
MoreInfo This property is required. string
(String) Link to documentation about this status reason
Code This property is required. string
(String) The status reason code
Message This property is required. string
(String) An explanation of the status reason
MoreInfo This property is required. string
(String) Link to documentation about this status reason
code This property is required. String
(String) The status reason code
message This property is required. String
(String) An explanation of the status reason
moreInfo This property is required. String
(String) Link to documentation about this status reason
code This property is required. string
(String) The status reason code
message This property is required. string
(String) An explanation of the status reason
moreInfo This property is required. string
(String) Link to documentation about this status reason
code This property is required. str
(String) The status reason code
message This property is required. str
(String) An explanation of the status reason
more_info This property is required. str
(String) Link to documentation about this status reason
code This property is required. String
(String) The status reason code
message This property is required. String
(String) An explanation of the status reason
moreInfo This property is required. String
(String) Link to documentation about this status reason

Package Details

Repository
ibm ibm-cloud/terraform-provider-ibm
License
Notes
This Pulumi package is based on the ibm Terraform Provider.