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

ibm.getIsImage

Explore with Pulumi AI

Retrieve information of an existing IBM Cloud Infrastructure image as a read-only data source. For more information, about VPC custom images, see IBM Cloud Importing and managing custom 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 example = ibm.getIsImage({
    name: "ibm-centos-7-9-minimal-amd64-12",
});
Copy
import pulumi
import pulumi_ibm as ibm

example = ibm.get_is_image(name="ibm-centos-7-9-minimal-amd64-12")
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.LookupIsImage(ctx, &ibm.LookupIsImageArgs{
			Name: pulumi.StringRef("ibm-centos-7-9-minimal-amd64-12"),
		}, 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 example = Ibm.GetIsImage.Invoke(new()
    {
        Name = "ibm-centos-7-9-minimal-amd64-12",
    });

});
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.GetIsImageArgs;
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 example = IbmFunctions.getIsImage(GetIsImageArgs.builder()
            .name("ibm-centos-7-9-minimal-amd64-12")
            .build());

    }
}
Copy
variables:
  example:
    fn::invoke:
      function: ibm:getIsImage
      arguments:
        name: ibm-centos-7-9-minimal-amd64-12
Copy
import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";

const example = ibm.getIsImage({
    identifier: ibm_is_image.example.id,
});
Copy
import pulumi
import pulumi_ibm as ibm

example = ibm.get_is_image(identifier=ibm_is_image["example"]["id"])
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.LookupIsImage(ctx, &ibm.LookupIsImageArgs{
			Identifier: pulumi.StringRef(ibm_is_image.Example.Id),
		}, 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 example = Ibm.GetIsImage.Invoke(new()
    {
        Identifier = ibm_is_image.Example.Id,
    });

});
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.GetIsImageArgs;
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 example = IbmFunctions.getIsImage(GetIsImageArgs.builder()
            .identifier(ibm_is_image.example().id())
            .build());

    }
}
Copy
variables:
  example:
    fn::invoke:
      function: ibm:getIsImage
      arguments:
        identifier: ${ibm_is_image.example.id}
Copy

Using getIsImage

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 getIsImage(args: GetIsImageArgs, opts?: InvokeOptions): Promise<GetIsImageResult>
function getIsImageOutput(args: GetIsImageOutputArgs, opts?: InvokeOptions): Output<GetIsImageResult>
Copy
def get_is_image(id: Optional[str] = None,
                 identifier: Optional[str] = None,
                 name: Optional[str] = None,
                 visibility: Optional[str] = None,
                 opts: Optional[InvokeOptions] = None) -> GetIsImageResult
def get_is_image_output(id: Optional[pulumi.Input[str]] = None,
                 identifier: Optional[pulumi.Input[str]] = None,
                 name: Optional[pulumi.Input[str]] = None,
                 visibility: Optional[pulumi.Input[str]] = None,
                 opts: Optional[InvokeOptions] = None) -> Output[GetIsImageResult]
Copy
func LookupIsImage(ctx *Context, args *LookupIsImageArgs, opts ...InvokeOption) (*LookupIsImageResult, error)
func LookupIsImageOutput(ctx *Context, args *LookupIsImageOutputArgs, opts ...InvokeOption) LookupIsImageResultOutput
Copy

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

public static class GetIsImage 
{
    public static Task<GetIsImageResult> InvokeAsync(GetIsImageArgs args, InvokeOptions? opts = null)
    public static Output<GetIsImageResult> Invoke(GetIsImageInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetIsImageResult> getIsImage(GetIsImageArgs args, InvokeOptions options)
public static Output<GetIsImageResult> getIsImage(GetIsImageArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: ibm:index/getIsImage:getIsImage
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

Id string
(String) The unique identifier for this resource group.
Identifier string

The id of the image.

Note: name and identifier are mutually exclusive.

Name string

The name of the image.

Note: name and identifier are mutually exclusive.

Visibility string
The visibility of the image. Accepted values are public or private.
Id string
(String) The unique identifier for this resource group.
Identifier string

The id of the image.

Note: name and identifier are mutually exclusive.

Name string

The name of the image.

Note: name and identifier are mutually exclusive.

Visibility string
The visibility of the image. Accepted values are public or private.
id String
(String) The unique identifier for this resource group.
identifier String

The id of the image.

Note: name and identifier are mutually exclusive.

name String

The name of the image.

Note: name and identifier are mutually exclusive.

visibility String
The visibility of the image. Accepted values are public or private.
id string
(String) The unique identifier for this resource group.
identifier string

The id of the image.

Note: name and identifier are mutually exclusive.

name string

The name of the image.

Note: name and identifier are mutually exclusive.

visibility string
The visibility of the image. Accepted values are public or private.
id str
(String) The unique identifier for this resource group.
identifier str

The id of the image.

Note: name and identifier are mutually exclusive.

name str

The name of the image.

Note: name and identifier are mutually exclusive.

visibility str
The visibility of the image. Accepted values are public or private.
id String
(String) The unique identifier for this resource group.
identifier String

The id of the image.

Note: name and identifier are mutually exclusive.

name String

The name of the image.

Note: name and identifier are mutually exclusive.

visibility String
The visibility of the image. Accepted values are public or private.

getIsImage Result

The following output properties are available:

AccessTags List<string>
(List) Access management tags associated for image.
Architecture string
(String) The operating system architecture.
CatalogOfferings List<GetIsImageCatalogOffering>
(List) The catalog offering for this image.
Checksum string
(String) The SHA256 checksum of the image.
CreatedAt string
(String) The date and time that the image was created
Crn string
(String) The CRN for this image.
DeprecationAt string
(String) The deprecation date and time (UTC) for this image. If absent, no deprecation date and time has been set.
Encryption string
(String) The type of encryption used of the image.
EncryptionKey string
(String) The CRN of the Key Protect or Hyper Protect Crypto Service root key for this resource.
Id string
(String) The unique identifier for this resource group.
ObsolescenceAt string
(String) The obsolescence date and time (UTC) for this image. If absent, no obsolescence date and time has been set.
OperatingSystems List<GetIsImageOperatingSystem>
(List) The operating system details.
Os string
(String) The name of the operating system.
ResourceGroups List<GetIsImageResourceGroup>
(List) The resource group object, for this image.
SourceVolume string
The source volume id of the image.
Status string
(String) The status of this image.
StatusReasons List<GetIsImageStatusReason>
(List) The reasons for the current status (if any).
UserDataFormat string
(String) The user data format for this image.
Identifier string
Name string
(String) The user-defined name for this resource group.
Visibility string
AccessTags []string
(List) Access management tags associated for image.
Architecture string
(String) The operating system architecture.
CatalogOfferings []GetIsImageCatalogOffering
(List) The catalog offering for this image.
Checksum string
(String) The SHA256 checksum of the image.
CreatedAt string
(String) The date and time that the image was created
Crn string
(String) The CRN for this image.
DeprecationAt string
(String) The deprecation date and time (UTC) for this image. If absent, no deprecation date and time has been set.
Encryption string
(String) The type of encryption used of the image.
EncryptionKey string
(String) The CRN of the Key Protect or Hyper Protect Crypto Service root key for this resource.
Id string
(String) The unique identifier for this resource group.
ObsolescenceAt string
(String) The obsolescence date and time (UTC) for this image. If absent, no obsolescence date and time has been set.
OperatingSystems []GetIsImageOperatingSystem
(List) The operating system details.
Os string
(String) The name of the operating system.
ResourceGroups []GetIsImageResourceGroup
(List) The resource group object, for this image.
SourceVolume string
The source volume id of the image.
Status string
(String) The status of this image.
StatusReasons []GetIsImageStatusReason
(List) The reasons for the current status (if any).
UserDataFormat string
(String) The user data format for this image.
Identifier string
Name string
(String) The user-defined name for this resource group.
Visibility string
accessTags List<String>
(List) Access management tags associated for image.
architecture String
(String) The operating system architecture.
catalogOfferings List<GetIsImageCatalogOffering>
(List) The catalog offering for this image.
checksum String
(String) The SHA256 checksum of the image.
createdAt String
(String) The date and time that the image was created
crn String
(String) The CRN for this image.
deprecationAt String
(String) The deprecation date and time (UTC) for this image. If absent, no deprecation date and time has been set.
encryption String
(String) The type of encryption used of the image.
encryptionKey String
(String) The CRN of the Key Protect or Hyper Protect Crypto Service root key for this resource.
id String
(String) The unique identifier for this resource group.
obsolescenceAt String
(String) The obsolescence date and time (UTC) for this image. If absent, no obsolescence date and time has been set.
operatingSystems List<GetIsImageOperatingSystem>
(List) The operating system details.
os String
(String) The name of the operating system.
resourceGroups List<GetIsImageResourceGroup>
(List) The resource group object, for this image.
sourceVolume String
The source volume id of the image.
status String
(String) The status of this image.
statusReasons List<GetIsImageStatusReason>
(List) The reasons for the current status (if any).
userDataFormat String
(String) The user data format for this image.
identifier String
name String
(String) The user-defined name for this resource group.
visibility String
accessTags string[]
(List) Access management tags associated for image.
architecture string
(String) The operating system architecture.
catalogOfferings GetIsImageCatalogOffering[]
(List) The catalog offering for this image.
checksum string
(String) The SHA256 checksum of the image.
createdAt string
(String) The date and time that the image was created
crn string
(String) The CRN for this image.
deprecationAt string
(String) The deprecation date and time (UTC) for this image. If absent, no deprecation date and time has been set.
encryption string
(String) The type of encryption used of the image.
encryptionKey string
(String) The CRN of the Key Protect or Hyper Protect Crypto Service root key for this resource.
id string
(String) The unique identifier for this resource group.
obsolescenceAt string
(String) The obsolescence date and time (UTC) for this image. If absent, no obsolescence date and time has been set.
operatingSystems GetIsImageOperatingSystem[]
(List) The operating system details.
os string
(String) The name of the operating system.
resourceGroups GetIsImageResourceGroup[]
(List) The resource group object, for this image.
sourceVolume string
The source volume id of the image.
status string
(String) The status of this image.
statusReasons GetIsImageStatusReason[]
(List) The reasons for the current status (if any).
userDataFormat string
(String) The user data format for this image.
identifier string
name string
(String) The user-defined name for this resource group.
visibility string
access_tags Sequence[str]
(List) Access management tags associated for image.
architecture str
(String) The operating system architecture.
catalog_offerings Sequence[GetIsImageCatalogOffering]
(List) The catalog offering for this image.
checksum str
(String) The SHA256 checksum of the image.
created_at str
(String) The date and time that the image was created
crn str
(String) The CRN for this image.
deprecation_at str
(String) The deprecation date and time (UTC) for this image. If absent, no deprecation date and time has been set.
encryption str
(String) The type of encryption used of the image.
encryption_key str
(String) The CRN of the Key Protect or Hyper Protect Crypto Service root key for this resource.
id str
(String) The unique identifier for this resource group.
obsolescence_at str
(String) The obsolescence date and time (UTC) for this image. If absent, no obsolescence date and time has been set.
operating_systems Sequence[GetIsImageOperatingSystem]
(List) The operating system details.
os str
(String) The name of the operating system.
resource_groups Sequence[GetIsImageResourceGroup]
(List) The resource group object, for this image.
source_volume str
The source volume id of the image.
status str
(String) The status of this image.
status_reasons Sequence[GetIsImageStatusReason]
(List) The reasons for the current status (if any).
user_data_format str
(String) The user data format for this image.
identifier str
name str
(String) The user-defined name for this resource group.
visibility str
accessTags List<String>
(List) Access management tags associated for image.
architecture String
(String) The operating system architecture.
catalogOfferings List<Property Map>
(List) The catalog offering for this image.
checksum String
(String) The SHA256 checksum of the image.
createdAt String
(String) The date and time that the image was created
crn String
(String) The CRN for this image.
deprecationAt String
(String) The deprecation date and time (UTC) for this image. If absent, no deprecation date and time has been set.
encryption String
(String) The type of encryption used of the image.
encryptionKey String
(String) The CRN of the Key Protect or Hyper Protect Crypto Service root key for this resource.
id String
(String) The unique identifier for this resource group.
obsolescenceAt String
(String) The obsolescence date and time (UTC) for this image. If absent, no obsolescence date and time has been set.
operatingSystems List<Property Map>
(List) The operating system details.
os String
(String) The name of the operating system.
resourceGroups List<Property Map>
(List) The resource group object, for this image.
sourceVolume String
The source volume id of the image.
status String
(String) The status of this image.
statusReasons List<Property Map>
(List) The reasons for the current status (if any).
userDataFormat String
(String) The user data format for this image.
identifier String
name String
(String) The user-defined name for this resource group.
visibility String

Supporting Types

GetIsImageCatalogOffering

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<GetIsImageCatalogOfferingVersion>
(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. []GetIsImageCatalogOfferingVersion
(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<GetIsImageCatalogOfferingVersion>
(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. GetIsImageCatalogOfferingVersion[]
(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[GetIsImageCatalogOfferingVersion]
(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.

GetIsImageCatalogOfferingVersion

Crn This property is required. string
(String) The CRN for this image.
Crn This property is required. string
(String) The CRN for this image.
crn This property is required. String
(String) The CRN for this image.
crn This property is required. string
(String) The CRN for this image.
crn This property is required. str
(String) The CRN for this image.
crn This property is required. String
(String) The CRN for this image.

GetIsImageOperatingSystem

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.

Note: name and identifier are mutually exclusive.

UserDataFormat This property is required. string
(String) The user data format for this image.
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.

Note: name and identifier are mutually exclusive.

UserDataFormat This property is required. string
(String) The user data format for this image.
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.

Note: name and identifier are mutually exclusive.

userDataFormat This property is required. String
(String) The user data format for this image.
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.

Note: name and identifier are mutually exclusive.

userDataFormat This property is required. string
(String) The user data format for this image.
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.

Note: name and identifier are mutually exclusive.

user_data_format This property is required. str
(String) The user data format for this image.
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.

Note: name and identifier are mutually exclusive.

userDataFormat This property is required. String
(String) The user data format for this image.
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.

GetIsImageResourceGroup

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.

Note: name and identifier are mutually exclusive.

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.

Note: name and identifier are mutually exclusive.

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.

Note: name and identifier are mutually exclusive.

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.

Note: name and identifier are mutually exclusive.

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.

Note: name and identifier are mutually exclusive.

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.

Note: name and identifier are mutually exclusive.

GetIsImageStatusReason

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.