ibm.PiImage
Explore with Pulumi AI
Create, update, or delete for a Power Systems Virtual Server image. For more information, about IBM power virtual server cloud, see getting started with IBM Power Systems Virtual Servers.
Notes
- Please find supported Regions for endpoints.
- If a Power cloud instance is provisioned at
lon04
, The provider level attributes should be as follows:region
-lon
zone
-lon04
Example usage:
import * as pulumi from "@pulumi/pulumi";
import pulumi
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
return await Deployment.RunAsync(() =>
{
});
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) {
}
}
{}
Create PiImage Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PiImage(name: string, args: PiImageArgs, opts?: CustomResourceOptions);
@overload
def PiImage(resource_name: str,
args: PiImageArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PiImage(resource_name: str,
opts: Optional[ResourceOptions] = None,
pi_cloud_instance_id: Optional[str] = None,
pi_image_bucket_name: Optional[str] = None,
pi_image_bucket_region: Optional[str] = None,
pi_affinity_volume: Optional[str] = None,
ibm_pi_image_id: Optional[str] = None,
pi_anti_affinity_volumes: Optional[Sequence[str]] = None,
pi_affinity_instance: Optional[str] = None,
pi_image_access_key: Optional[str] = None,
pi_image_bucket_access: Optional[str] = None,
pi_affinity_policy: Optional[str] = None,
pi_image_bucket_file_name: Optional[str] = None,
pi_anti_affinity_instances: Optional[Sequence[str]] = None,
pi_image_id: Optional[str] = None,
pi_image_import_details: Optional[PiImagePiImageImportDetailsArgs] = None,
pi_image_name: Optional[str] = None,
pi_image_secret_key: Optional[str] = None,
pi_image_storage_pool: Optional[str] = None,
pi_image_storage_type: Optional[str] = None,
pi_user_tags: Optional[Sequence[str]] = None,
timeouts: Optional[PiImageTimeoutsArgs] = None)
func NewPiImage(ctx *Context, name string, args PiImageArgs, opts ...ResourceOption) (*PiImage, error)
public PiImage(string name, PiImageArgs args, CustomResourceOptions? opts = null)
public PiImage(String name, PiImageArgs args)
public PiImage(String name, PiImageArgs args, CustomResourceOptions options)
type: ibm:PiImage
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args PiImageArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args PiImageArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args PiImageArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PiImageArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PiImageArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var piImageResource = new Ibm.PiImage("piImageResource", new()
{
PiCloudInstanceId = "string",
PiImageBucketName = "string",
PiImageBucketRegion = "string",
PiAffinityVolume = "string",
IbmPiImageId = "string",
PiAntiAffinityVolumes = new[]
{
"string",
},
PiAffinityInstance = "string",
PiImageAccessKey = "string",
PiImageBucketAccess = "string",
PiAffinityPolicy = "string",
PiImageBucketFileName = "string",
PiAntiAffinityInstances = new[]
{
"string",
},
PiImageId = "string",
PiImageImportDetails = new Ibm.Inputs.PiImagePiImageImportDetailsArgs
{
LicenseType = "string",
Product = "string",
Vendor = "string",
},
PiImageName = "string",
PiImageSecretKey = "string",
PiImageStoragePool = "string",
PiImageStorageType = "string",
PiUserTags = new[]
{
"string",
},
Timeouts = new Ibm.Inputs.PiImageTimeoutsArgs
{
Create = "string",
Delete = "string",
Update = "string",
},
});
example, err := ibm.NewPiImage(ctx, "piImageResource", &ibm.PiImageArgs{
PiCloudInstanceId: pulumi.String("string"),
PiImageBucketName: pulumi.String("string"),
PiImageBucketRegion: pulumi.String("string"),
PiAffinityVolume: pulumi.String("string"),
IbmPiImageId: pulumi.String("string"),
PiAntiAffinityVolumes: pulumi.StringArray{
pulumi.String("string"),
},
PiAffinityInstance: pulumi.String("string"),
PiImageAccessKey: pulumi.String("string"),
PiImageBucketAccess: pulumi.String("string"),
PiAffinityPolicy: pulumi.String("string"),
PiImageBucketFileName: pulumi.String("string"),
PiAntiAffinityInstances: pulumi.StringArray{
pulumi.String("string"),
},
PiImageId: pulumi.String("string"),
PiImageImportDetails: &ibm.PiImagePiImageImportDetailsArgs{
LicenseType: pulumi.String("string"),
Product: pulumi.String("string"),
Vendor: pulumi.String("string"),
},
PiImageName: pulumi.String("string"),
PiImageSecretKey: pulumi.String("string"),
PiImageStoragePool: pulumi.String("string"),
PiImageStorageType: pulumi.String("string"),
PiUserTags: pulumi.StringArray{
pulumi.String("string"),
},
Timeouts: &ibm.PiImageTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
var piImageResource = new PiImage("piImageResource", PiImageArgs.builder()
.piCloudInstanceId("string")
.piImageBucketName("string")
.piImageBucketRegion("string")
.piAffinityVolume("string")
.ibmPiImageId("string")
.piAntiAffinityVolumes("string")
.piAffinityInstance("string")
.piImageAccessKey("string")
.piImageBucketAccess("string")
.piAffinityPolicy("string")
.piImageBucketFileName("string")
.piAntiAffinityInstances("string")
.piImageId("string")
.piImageImportDetails(PiImagePiImageImportDetailsArgs.builder()
.licenseType("string")
.product("string")
.vendor("string")
.build())
.piImageName("string")
.piImageSecretKey("string")
.piImageStoragePool("string")
.piImageStorageType("string")
.piUserTags("string")
.timeouts(PiImageTimeoutsArgs.builder()
.create("string")
.delete("string")
.update("string")
.build())
.build());
pi_image_resource = ibm.PiImage("piImageResource",
pi_cloud_instance_id="string",
pi_image_bucket_name="string",
pi_image_bucket_region="string",
pi_affinity_volume="string",
ibm_pi_image_id="string",
pi_anti_affinity_volumes=["string"],
pi_affinity_instance="string",
pi_image_access_key="string",
pi_image_bucket_access="string",
pi_affinity_policy="string",
pi_image_bucket_file_name="string",
pi_anti_affinity_instances=["string"],
pi_image_id="string",
pi_image_import_details={
"license_type": "string",
"product": "string",
"vendor": "string",
},
pi_image_name="string",
pi_image_secret_key="string",
pi_image_storage_pool="string",
pi_image_storage_type="string",
pi_user_tags=["string"],
timeouts={
"create": "string",
"delete": "string",
"update": "string",
})
const piImageResource = new ibm.PiImage("piImageResource", {
piCloudInstanceId: "string",
piImageBucketName: "string",
piImageBucketRegion: "string",
piAffinityVolume: "string",
ibmPiImageId: "string",
piAntiAffinityVolumes: ["string"],
piAffinityInstance: "string",
piImageAccessKey: "string",
piImageBucketAccess: "string",
piAffinityPolicy: "string",
piImageBucketFileName: "string",
piAntiAffinityInstances: ["string"],
piImageId: "string",
piImageImportDetails: {
licenseType: "string",
product: "string",
vendor: "string",
},
piImageName: "string",
piImageSecretKey: "string",
piImageStoragePool: "string",
piImageStorageType: "string",
piUserTags: ["string"],
timeouts: {
create: "string",
"delete": "string",
update: "string",
},
});
type: ibm:PiImage
properties:
ibmPiImageId: string
piAffinityInstance: string
piAffinityPolicy: string
piAffinityVolume: string
piAntiAffinityInstances:
- string
piAntiAffinityVolumes:
- string
piCloudInstanceId: string
piImageAccessKey: string
piImageBucketAccess: string
piImageBucketFileName: string
piImageBucketName: string
piImageBucketRegion: string
piImageId: string
piImageImportDetails:
licenseType: string
product: string
vendor: string
piImageName: string
piImageSecretKey: string
piImageStoragePool: string
piImageStorageType: string
piUserTags:
- string
timeouts:
create: string
delete: string
update: string
PiImage Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The PiImage resource accepts the following input properties:
- Pi
Cloud stringInstance Id - The GUID of the service instance associated with an account.
- Ibm
Pi stringImage Id - (String) The unique identifier of an image. The ID is composed of
<pi_cloud_instance_id>/<image_id>
. - Pi
Affinity stringInstance - PVM Instance (ID or Name) to base storage affinity policy against; required if requesting
affinity
andpi_affinity_volume
is not provided. - Pi
Affinity stringPolicy - Affinity policy for image; ignored if
pi_image_storage_pool
provided; for policy affinity requires one ofpi_affinity_instance
orpi_affinity_volume
to be specified; for policy anti-affinity requires one ofpi_anti_affinity_instances
orpi_anti_affinity_volumes
to be specified; Allowable values:affinity
,anti-affinity
- Pi
Affinity stringVolume - Volume (ID or Name) to base storage affinity policy against; required if requesting
affinity
andpi_affinity_instance
is not provided. - Pi
Anti List<string>Affinity Instances - List of pvmInstances to base storage anti-affinity policy against; required if requesting
anti-affinity
andpi_anti_affinity_volumes
is not provided. - Pi
Anti List<string>Affinity Volumes - List of volumes to base storage anti-affinity policy against; required if requesting
anti-affinity
andpi_anti_affinity_instances
is not provided. - Pi
Image stringAccess Key - Cloud Object Storage access key; required for buckets with private access.
- Pi
Image stringBucket Access - Indicates if the bucket has public or private access. The default value is
public
. - Pi
Image stringBucket File Name - Cloud Object Storage image filename
- Pi
Image stringBucket Name - Cloud Object Storage bucket name;
bucket-name[/optional/folder]
- Either
pi_image_bucket_name
orpi_image_id
is required.
- Either
- Pi
Image stringBucket Region - Cloud Object Storage region. Supported COS regions are:
au-syd
,br-sao
,ca-tor
,che01
,eu-de
,eu-es
,eu-gb
,jp-osa
,jp-tok
,us-east
,us-south
. - Pi
Image stringId - Image ID of existing source image; required for copy image.
- Either
pi_image_id
orpi_image_bucket_name
is required. - You can retrieve this value from pi_catalog_images as
image_id
from the stock image you intend to use.
- Either
- Pi
Image PiImport Details Image Pi Image Import Details - Import details for SAP images Nested schema for pi_image_import_details:
- Pi
Image stringName - The name of an image for importing only. Required if importing from bucket. Conflicts with
pi_image_id
. - Pi
Image stringSecret Key - Cloud Object Storage secret key; required for buckets with private access.
- Pi
Image stringStorage Pool - Storage pool where the image will be loaded, if provided then
pi_affinity_policy
will be ignored. Used only when importing an image from cloud storage. - Pi
Image stringStorage Type - Type of storage; If not provided the storage type will default to 'tier3'. Used only when importing an image from cloud storage. To get a list of available storage types, please use the ibm.getPiStorageTypesCapacity data source.
- List<string>
- The user tags attached to this resource.
- Timeouts
Pi
Image Timeouts
- Pi
Cloud stringInstance Id - The GUID of the service instance associated with an account.
- Ibm
Pi stringImage Id - (String) The unique identifier of an image. The ID is composed of
<pi_cloud_instance_id>/<image_id>
. - Pi
Affinity stringInstance - PVM Instance (ID or Name) to base storage affinity policy against; required if requesting
affinity
andpi_affinity_volume
is not provided. - Pi
Affinity stringPolicy - Affinity policy for image; ignored if
pi_image_storage_pool
provided; for policy affinity requires one ofpi_affinity_instance
orpi_affinity_volume
to be specified; for policy anti-affinity requires one ofpi_anti_affinity_instances
orpi_anti_affinity_volumes
to be specified; Allowable values:affinity
,anti-affinity
- Pi
Affinity stringVolume - Volume (ID or Name) to base storage affinity policy against; required if requesting
affinity
andpi_affinity_instance
is not provided. - Pi
Anti []stringAffinity Instances - List of pvmInstances to base storage anti-affinity policy against; required if requesting
anti-affinity
andpi_anti_affinity_volumes
is not provided. - Pi
Anti []stringAffinity Volumes - List of volumes to base storage anti-affinity policy against; required if requesting
anti-affinity
andpi_anti_affinity_instances
is not provided. - Pi
Image stringAccess Key - Cloud Object Storage access key; required for buckets with private access.
- Pi
Image stringBucket Access - Indicates if the bucket has public or private access. The default value is
public
. - Pi
Image stringBucket File Name - Cloud Object Storage image filename
- Pi
Image stringBucket Name - Cloud Object Storage bucket name;
bucket-name[/optional/folder]
- Either
pi_image_bucket_name
orpi_image_id
is required.
- Either
- Pi
Image stringBucket Region - Cloud Object Storage region. Supported COS regions are:
au-syd
,br-sao
,ca-tor
,che01
,eu-de
,eu-es
,eu-gb
,jp-osa
,jp-tok
,us-east
,us-south
. - Pi
Image stringId - Image ID of existing source image; required for copy image.
- Either
pi_image_id
orpi_image_bucket_name
is required. - You can retrieve this value from pi_catalog_images as
image_id
from the stock image you intend to use.
- Either
- Pi
Image PiImport Details Image Pi Image Import Details Args - Import details for SAP images Nested schema for pi_image_import_details:
- Pi
Image stringName - The name of an image for importing only. Required if importing from bucket. Conflicts with
pi_image_id
. - Pi
Image stringSecret Key - Cloud Object Storage secret key; required for buckets with private access.
- Pi
Image stringStorage Pool - Storage pool where the image will be loaded, if provided then
pi_affinity_policy
will be ignored. Used only when importing an image from cloud storage. - Pi
Image stringStorage Type - Type of storage; If not provided the storage type will default to 'tier3'. Used only when importing an image from cloud storage. To get a list of available storage types, please use the ibm.getPiStorageTypesCapacity data source.
- []string
- The user tags attached to this resource.
- Timeouts
Pi
Image Timeouts Args
- pi
Cloud StringInstance Id - The GUID of the service instance associated with an account.
- ibm
Pi StringImage Id - (String) The unique identifier of an image. The ID is composed of
<pi_cloud_instance_id>/<image_id>
. - pi
Affinity StringInstance - PVM Instance (ID or Name) to base storage affinity policy against; required if requesting
affinity
andpi_affinity_volume
is not provided. - pi
Affinity StringPolicy - Affinity policy for image; ignored if
pi_image_storage_pool
provided; for policy affinity requires one ofpi_affinity_instance
orpi_affinity_volume
to be specified; for policy anti-affinity requires one ofpi_anti_affinity_instances
orpi_anti_affinity_volumes
to be specified; Allowable values:affinity
,anti-affinity
- pi
Affinity StringVolume - Volume (ID or Name) to base storage affinity policy against; required if requesting
affinity
andpi_affinity_instance
is not provided. - pi
Anti List<String>Affinity Instances - List of pvmInstances to base storage anti-affinity policy against; required if requesting
anti-affinity
andpi_anti_affinity_volumes
is not provided. - pi
Anti List<String>Affinity Volumes - List of volumes to base storage anti-affinity policy against; required if requesting
anti-affinity
andpi_anti_affinity_instances
is not provided. - pi
Image StringAccess Key - Cloud Object Storage access key; required for buckets with private access.
- pi
Image StringBucket Access - Indicates if the bucket has public or private access. The default value is
public
. - pi
Image StringBucket File Name - Cloud Object Storage image filename
- pi
Image StringBucket Name - Cloud Object Storage bucket name;
bucket-name[/optional/folder]
- Either
pi_image_bucket_name
orpi_image_id
is required.
- Either
- pi
Image StringBucket Region - Cloud Object Storage region. Supported COS regions are:
au-syd
,br-sao
,ca-tor
,che01
,eu-de
,eu-es
,eu-gb
,jp-osa
,jp-tok
,us-east
,us-south
. - pi
Image StringId - Image ID of existing source image; required for copy image.
- Either
pi_image_id
orpi_image_bucket_name
is required. - You can retrieve this value from pi_catalog_images as
image_id
from the stock image you intend to use.
- Either
- pi
Image PiImport Details Image Pi Image Import Details - Import details for SAP images Nested schema for pi_image_import_details:
- pi
Image StringName - The name of an image for importing only. Required if importing from bucket. Conflicts with
pi_image_id
. - pi
Image StringSecret Key - Cloud Object Storage secret key; required for buckets with private access.
- pi
Image StringStorage Pool - Storage pool where the image will be loaded, if provided then
pi_affinity_policy
will be ignored. Used only when importing an image from cloud storage. - pi
Image StringStorage Type - Type of storage; If not provided the storage type will default to 'tier3'. Used only when importing an image from cloud storage. To get a list of available storage types, please use the ibm.getPiStorageTypesCapacity data source.
- List<String>
- The user tags attached to this resource.
- timeouts
Pi
Image Timeouts
- pi
Cloud stringInstance Id - The GUID of the service instance associated with an account.
- ibm
Pi stringImage Id - (String) The unique identifier of an image. The ID is composed of
<pi_cloud_instance_id>/<image_id>
. - pi
Affinity stringInstance - PVM Instance (ID or Name) to base storage affinity policy against; required if requesting
affinity
andpi_affinity_volume
is not provided. - pi
Affinity stringPolicy - Affinity policy for image; ignored if
pi_image_storage_pool
provided; for policy affinity requires one ofpi_affinity_instance
orpi_affinity_volume
to be specified; for policy anti-affinity requires one ofpi_anti_affinity_instances
orpi_anti_affinity_volumes
to be specified; Allowable values:affinity
,anti-affinity
- pi
Affinity stringVolume - Volume (ID or Name) to base storage affinity policy against; required if requesting
affinity
andpi_affinity_instance
is not provided. - pi
Anti string[]Affinity Instances - List of pvmInstances to base storage anti-affinity policy against; required if requesting
anti-affinity
andpi_anti_affinity_volumes
is not provided. - pi
Anti string[]Affinity Volumes - List of volumes to base storage anti-affinity policy against; required if requesting
anti-affinity
andpi_anti_affinity_instances
is not provided. - pi
Image stringAccess Key - Cloud Object Storage access key; required for buckets with private access.
- pi
Image stringBucket Access - Indicates if the bucket has public or private access. The default value is
public
. - pi
Image stringBucket File Name - Cloud Object Storage image filename
- pi
Image stringBucket Name - Cloud Object Storage bucket name;
bucket-name[/optional/folder]
- Either
pi_image_bucket_name
orpi_image_id
is required.
- Either
- pi
Image stringBucket Region - Cloud Object Storage region. Supported COS regions are:
au-syd
,br-sao
,ca-tor
,che01
,eu-de
,eu-es
,eu-gb
,jp-osa
,jp-tok
,us-east
,us-south
. - pi
Image stringId - Image ID of existing source image; required for copy image.
- Either
pi_image_id
orpi_image_bucket_name
is required. - You can retrieve this value from pi_catalog_images as
image_id
from the stock image you intend to use.
- Either
- pi
Image PiImport Details Image Pi Image Import Details - Import details for SAP images Nested schema for pi_image_import_details:
- pi
Image stringName - The name of an image for importing only. Required if importing from bucket. Conflicts with
pi_image_id
. - pi
Image stringSecret Key - Cloud Object Storage secret key; required for buckets with private access.
- pi
Image stringStorage Pool - Storage pool where the image will be loaded, if provided then
pi_affinity_policy
will be ignored. Used only when importing an image from cloud storage. - pi
Image stringStorage Type - Type of storage; If not provided the storage type will default to 'tier3'. Used only when importing an image from cloud storage. To get a list of available storage types, please use the ibm.getPiStorageTypesCapacity data source.
- string[]
- The user tags attached to this resource.
- timeouts
Pi
Image Timeouts
- pi_
cloud_ strinstance_ id - The GUID of the service instance associated with an account.
- ibm_
pi_ strimage_ id - (String) The unique identifier of an image. The ID is composed of
<pi_cloud_instance_id>/<image_id>
. - pi_
affinity_ strinstance - PVM Instance (ID or Name) to base storage affinity policy against; required if requesting
affinity
andpi_affinity_volume
is not provided. - pi_
affinity_ strpolicy - Affinity policy for image; ignored if
pi_image_storage_pool
provided; for policy affinity requires one ofpi_affinity_instance
orpi_affinity_volume
to be specified; for policy anti-affinity requires one ofpi_anti_affinity_instances
orpi_anti_affinity_volumes
to be specified; Allowable values:affinity
,anti-affinity
- pi_
affinity_ strvolume - Volume (ID or Name) to base storage affinity policy against; required if requesting
affinity
andpi_affinity_instance
is not provided. - pi_
anti_ Sequence[str]affinity_ instances - List of pvmInstances to base storage anti-affinity policy against; required if requesting
anti-affinity
andpi_anti_affinity_volumes
is not provided. - pi_
anti_ Sequence[str]affinity_ volumes - List of volumes to base storage anti-affinity policy against; required if requesting
anti-affinity
andpi_anti_affinity_instances
is not provided. - pi_
image_ straccess_ key - Cloud Object Storage access key; required for buckets with private access.
- pi_
image_ strbucket_ access - Indicates if the bucket has public or private access. The default value is
public
. - pi_
image_ strbucket_ file_ name - Cloud Object Storage image filename
- pi_
image_ strbucket_ name - Cloud Object Storage bucket name;
bucket-name[/optional/folder]
- Either
pi_image_bucket_name
orpi_image_id
is required.
- Either
- pi_
image_ strbucket_ region - Cloud Object Storage region. Supported COS regions are:
au-syd
,br-sao
,ca-tor
,che01
,eu-de
,eu-es
,eu-gb
,jp-osa
,jp-tok
,us-east
,us-south
. - pi_
image_ strid - Image ID of existing source image; required for copy image.
- Either
pi_image_id
orpi_image_bucket_name
is required. - You can retrieve this value from pi_catalog_images as
image_id
from the stock image you intend to use.
- Either
- pi_
image_ Piimport_ details Image Pi Image Import Details Args - Import details for SAP images Nested schema for pi_image_import_details:
- pi_
image_ strname - The name of an image for importing only. Required if importing from bucket. Conflicts with
pi_image_id
. - pi_
image_ strsecret_ key - Cloud Object Storage secret key; required for buckets with private access.
- pi_
image_ strstorage_ pool - Storage pool where the image will be loaded, if provided then
pi_affinity_policy
will be ignored. Used only when importing an image from cloud storage. - pi_
image_ strstorage_ type - Type of storage; If not provided the storage type will default to 'tier3'. Used only when importing an image from cloud storage. To get a list of available storage types, please use the ibm.getPiStorageTypesCapacity data source.
- Sequence[str]
- The user tags attached to this resource.
- timeouts
Pi
Image Timeouts Args
- pi
Cloud StringInstance Id - The GUID of the service instance associated with an account.
- ibm
Pi StringImage Id - (String) The unique identifier of an image. The ID is composed of
<pi_cloud_instance_id>/<image_id>
. - pi
Affinity StringInstance - PVM Instance (ID or Name) to base storage affinity policy against; required if requesting
affinity
andpi_affinity_volume
is not provided. - pi
Affinity StringPolicy - Affinity policy for image; ignored if
pi_image_storage_pool
provided; for policy affinity requires one ofpi_affinity_instance
orpi_affinity_volume
to be specified; for policy anti-affinity requires one ofpi_anti_affinity_instances
orpi_anti_affinity_volumes
to be specified; Allowable values:affinity
,anti-affinity
- pi
Affinity StringVolume - Volume (ID or Name) to base storage affinity policy against; required if requesting
affinity
andpi_affinity_instance
is not provided. - pi
Anti List<String>Affinity Instances - List of pvmInstances to base storage anti-affinity policy against; required if requesting
anti-affinity
andpi_anti_affinity_volumes
is not provided. - pi
Anti List<String>Affinity Volumes - List of volumes to base storage anti-affinity policy against; required if requesting
anti-affinity
andpi_anti_affinity_instances
is not provided. - pi
Image StringAccess Key - Cloud Object Storage access key; required for buckets with private access.
- pi
Image StringBucket Access - Indicates if the bucket has public or private access. The default value is
public
. - pi
Image StringBucket File Name - Cloud Object Storage image filename
- pi
Image StringBucket Name - Cloud Object Storage bucket name;
bucket-name[/optional/folder]
- Either
pi_image_bucket_name
orpi_image_id
is required.
- Either
- pi
Image StringBucket Region - Cloud Object Storage region. Supported COS regions are:
au-syd
,br-sao
,ca-tor
,che01
,eu-de
,eu-es
,eu-gb
,jp-osa
,jp-tok
,us-east
,us-south
. - pi
Image StringId - Image ID of existing source image; required for copy image.
- Either
pi_image_id
orpi_image_bucket_name
is required. - You can retrieve this value from pi_catalog_images as
image_id
from the stock image you intend to use.
- Either
- pi
Image Property MapImport Details - Import details for SAP images Nested schema for pi_image_import_details:
- pi
Image StringName - The name of an image for importing only. Required if importing from bucket. Conflicts with
pi_image_id
. - pi
Image StringSecret Key - Cloud Object Storage secret key; required for buckets with private access.
- pi
Image StringStorage Pool - Storage pool where the image will be loaded, if provided then
pi_affinity_policy
will be ignored. Used only when importing an image from cloud storage. - pi
Image StringStorage Type - Type of storage; If not provided the storage type will default to 'tier3'. Used only when importing an image from cloud storage. To get a list of available storage types, please use the ibm.getPiStorageTypesCapacity data source.
- List<String>
- The user tags attached to this resource.
- timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the PiImage resource produces the following output properties:
Look up Existing PiImage Resource
Get an existing PiImage resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: PiImageState, opts?: CustomResourceOptions): PiImage
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
crn: Optional[str] = None,
ibm_pi_image_id: Optional[str] = None,
image_id: Optional[str] = None,
pi_affinity_instance: Optional[str] = None,
pi_affinity_policy: Optional[str] = None,
pi_affinity_volume: Optional[str] = None,
pi_anti_affinity_instances: Optional[Sequence[str]] = None,
pi_anti_affinity_volumes: Optional[Sequence[str]] = None,
pi_cloud_instance_id: Optional[str] = None,
pi_image_access_key: Optional[str] = None,
pi_image_bucket_access: Optional[str] = None,
pi_image_bucket_file_name: Optional[str] = None,
pi_image_bucket_name: Optional[str] = None,
pi_image_bucket_region: Optional[str] = None,
pi_image_id: Optional[str] = None,
pi_image_import_details: Optional[PiImagePiImageImportDetailsArgs] = None,
pi_image_name: Optional[str] = None,
pi_image_secret_key: Optional[str] = None,
pi_image_storage_pool: Optional[str] = None,
pi_image_storage_type: Optional[str] = None,
pi_user_tags: Optional[Sequence[str]] = None,
timeouts: Optional[PiImageTimeoutsArgs] = None) -> PiImage
func GetPiImage(ctx *Context, name string, id IDInput, state *PiImageState, opts ...ResourceOption) (*PiImage, error)
public static PiImage Get(string name, Input<string> id, PiImageState? state, CustomResourceOptions? opts = null)
public static PiImage get(String name, Output<String> id, PiImageState state, CustomResourceOptions options)
resources: _: type: ibm:PiImage get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Crn string
- (String) The CRN of this resource.
- Ibm
Pi stringImage Id - (String) The unique identifier of an image. The ID is composed of
<pi_cloud_instance_id>/<image_id>
. - Image
Id string - (String) The unique identifier of an image.
- Pi
Affinity stringInstance - PVM Instance (ID or Name) to base storage affinity policy against; required if requesting
affinity
andpi_affinity_volume
is not provided. - Pi
Affinity stringPolicy - Affinity policy for image; ignored if
pi_image_storage_pool
provided; for policy affinity requires one ofpi_affinity_instance
orpi_affinity_volume
to be specified; for policy anti-affinity requires one ofpi_anti_affinity_instances
orpi_anti_affinity_volumes
to be specified; Allowable values:affinity
,anti-affinity
- Pi
Affinity stringVolume - Volume (ID or Name) to base storage affinity policy against; required if requesting
affinity
andpi_affinity_instance
is not provided. - Pi
Anti List<string>Affinity Instances - List of pvmInstances to base storage anti-affinity policy against; required if requesting
anti-affinity
andpi_anti_affinity_volumes
is not provided. - Pi
Anti List<string>Affinity Volumes - List of volumes to base storage anti-affinity policy against; required if requesting
anti-affinity
andpi_anti_affinity_instances
is not provided. - Pi
Cloud stringInstance Id - The GUID of the service instance associated with an account.
- Pi
Image stringAccess Key - Cloud Object Storage access key; required for buckets with private access.
- Pi
Image stringBucket Access - Indicates if the bucket has public or private access. The default value is
public
. - Pi
Image stringBucket File Name - Cloud Object Storage image filename
- Pi
Image stringBucket Name - Cloud Object Storage bucket name;
bucket-name[/optional/folder]
- Either
pi_image_bucket_name
orpi_image_id
is required.
- Either
- Pi
Image stringBucket Region - Cloud Object Storage region. Supported COS regions are:
au-syd
,br-sao
,ca-tor
,che01
,eu-de
,eu-es
,eu-gb
,jp-osa
,jp-tok
,us-east
,us-south
. - Pi
Image stringId - Image ID of existing source image; required for copy image.
- Either
pi_image_id
orpi_image_bucket_name
is required. - You can retrieve this value from pi_catalog_images as
image_id
from the stock image you intend to use.
- Either
- Pi
Image PiImport Details Image Pi Image Import Details - Import details for SAP images Nested schema for pi_image_import_details:
- Pi
Image stringName - The name of an image for importing only. Required if importing from bucket. Conflicts with
pi_image_id
. - Pi
Image stringSecret Key - Cloud Object Storage secret key; required for buckets with private access.
- Pi
Image stringStorage Pool - Storage pool where the image will be loaded, if provided then
pi_affinity_policy
will be ignored. Used only when importing an image from cloud storage. - Pi
Image stringStorage Type - Type of storage; If not provided the storage type will default to 'tier3'. Used only when importing an image from cloud storage. To get a list of available storage types, please use the ibm.getPiStorageTypesCapacity data source.
- List<string>
- The user tags attached to this resource.
- Timeouts
Pi
Image Timeouts
- Crn string
- (String) The CRN of this resource.
- Ibm
Pi stringImage Id - (String) The unique identifier of an image. The ID is composed of
<pi_cloud_instance_id>/<image_id>
. - Image
Id string - (String) The unique identifier of an image.
- Pi
Affinity stringInstance - PVM Instance (ID or Name) to base storage affinity policy against; required if requesting
affinity
andpi_affinity_volume
is not provided. - Pi
Affinity stringPolicy - Affinity policy for image; ignored if
pi_image_storage_pool
provided; for policy affinity requires one ofpi_affinity_instance
orpi_affinity_volume
to be specified; for policy anti-affinity requires one ofpi_anti_affinity_instances
orpi_anti_affinity_volumes
to be specified; Allowable values:affinity
,anti-affinity
- Pi
Affinity stringVolume - Volume (ID or Name) to base storage affinity policy against; required if requesting
affinity
andpi_affinity_instance
is not provided. - Pi
Anti []stringAffinity Instances - List of pvmInstances to base storage anti-affinity policy against; required if requesting
anti-affinity
andpi_anti_affinity_volumes
is not provided. - Pi
Anti []stringAffinity Volumes - List of volumes to base storage anti-affinity policy against; required if requesting
anti-affinity
andpi_anti_affinity_instances
is not provided. - Pi
Cloud stringInstance Id - The GUID of the service instance associated with an account.
- Pi
Image stringAccess Key - Cloud Object Storage access key; required for buckets with private access.
- Pi
Image stringBucket Access - Indicates if the bucket has public or private access. The default value is
public
. - Pi
Image stringBucket File Name - Cloud Object Storage image filename
- Pi
Image stringBucket Name - Cloud Object Storage bucket name;
bucket-name[/optional/folder]
- Either
pi_image_bucket_name
orpi_image_id
is required.
- Either
- Pi
Image stringBucket Region - Cloud Object Storage region. Supported COS regions are:
au-syd
,br-sao
,ca-tor
,che01
,eu-de
,eu-es
,eu-gb
,jp-osa
,jp-tok
,us-east
,us-south
. - Pi
Image stringId - Image ID of existing source image; required for copy image.
- Either
pi_image_id
orpi_image_bucket_name
is required. - You can retrieve this value from pi_catalog_images as
image_id
from the stock image you intend to use.
- Either
- Pi
Image PiImport Details Image Pi Image Import Details Args - Import details for SAP images Nested schema for pi_image_import_details:
- Pi
Image stringName - The name of an image for importing only. Required if importing from bucket. Conflicts with
pi_image_id
. - Pi
Image stringSecret Key - Cloud Object Storage secret key; required for buckets with private access.
- Pi
Image stringStorage Pool - Storage pool where the image will be loaded, if provided then
pi_affinity_policy
will be ignored. Used only when importing an image from cloud storage. - Pi
Image stringStorage Type - Type of storage; If not provided the storage type will default to 'tier3'. Used only when importing an image from cloud storage. To get a list of available storage types, please use the ibm.getPiStorageTypesCapacity data source.
- []string
- The user tags attached to this resource.
- Timeouts
Pi
Image Timeouts Args
- crn String
- (String) The CRN of this resource.
- ibm
Pi StringImage Id - (String) The unique identifier of an image. The ID is composed of
<pi_cloud_instance_id>/<image_id>
. - image
Id String - (String) The unique identifier of an image.
- pi
Affinity StringInstance - PVM Instance (ID or Name) to base storage affinity policy against; required if requesting
affinity
andpi_affinity_volume
is not provided. - pi
Affinity StringPolicy - Affinity policy for image; ignored if
pi_image_storage_pool
provided; for policy affinity requires one ofpi_affinity_instance
orpi_affinity_volume
to be specified; for policy anti-affinity requires one ofpi_anti_affinity_instances
orpi_anti_affinity_volumes
to be specified; Allowable values:affinity
,anti-affinity
- pi
Affinity StringVolume - Volume (ID or Name) to base storage affinity policy against; required if requesting
affinity
andpi_affinity_instance
is not provided. - pi
Anti List<String>Affinity Instances - List of pvmInstances to base storage anti-affinity policy against; required if requesting
anti-affinity
andpi_anti_affinity_volumes
is not provided. - pi
Anti List<String>Affinity Volumes - List of volumes to base storage anti-affinity policy against; required if requesting
anti-affinity
andpi_anti_affinity_instances
is not provided. - pi
Cloud StringInstance Id - The GUID of the service instance associated with an account.
- pi
Image StringAccess Key - Cloud Object Storage access key; required for buckets with private access.
- pi
Image StringBucket Access - Indicates if the bucket has public or private access. The default value is
public
. - pi
Image StringBucket File Name - Cloud Object Storage image filename
- pi
Image StringBucket Name - Cloud Object Storage bucket name;
bucket-name[/optional/folder]
- Either
pi_image_bucket_name
orpi_image_id
is required.
- Either
- pi
Image StringBucket Region - Cloud Object Storage region. Supported COS regions are:
au-syd
,br-sao
,ca-tor
,che01
,eu-de
,eu-es
,eu-gb
,jp-osa
,jp-tok
,us-east
,us-south
. - pi
Image StringId - Image ID of existing source image; required for copy image.
- Either
pi_image_id
orpi_image_bucket_name
is required. - You can retrieve this value from pi_catalog_images as
image_id
from the stock image you intend to use.
- Either
- pi
Image PiImport Details Image Pi Image Import Details - Import details for SAP images Nested schema for pi_image_import_details:
- pi
Image StringName - The name of an image for importing only. Required if importing from bucket. Conflicts with
pi_image_id
. - pi
Image StringSecret Key - Cloud Object Storage secret key; required for buckets with private access.
- pi
Image StringStorage Pool - Storage pool where the image will be loaded, if provided then
pi_affinity_policy
will be ignored. Used only when importing an image from cloud storage. - pi
Image StringStorage Type - Type of storage; If not provided the storage type will default to 'tier3'. Used only when importing an image from cloud storage. To get a list of available storage types, please use the ibm.getPiStorageTypesCapacity data source.
- List<String>
- The user tags attached to this resource.
- timeouts
Pi
Image Timeouts
- crn string
- (String) The CRN of this resource.
- ibm
Pi stringImage Id - (String) The unique identifier of an image. The ID is composed of
<pi_cloud_instance_id>/<image_id>
. - image
Id string - (String) The unique identifier of an image.
- pi
Affinity stringInstance - PVM Instance (ID or Name) to base storage affinity policy against; required if requesting
affinity
andpi_affinity_volume
is not provided. - pi
Affinity stringPolicy - Affinity policy for image; ignored if
pi_image_storage_pool
provided; for policy affinity requires one ofpi_affinity_instance
orpi_affinity_volume
to be specified; for policy anti-affinity requires one ofpi_anti_affinity_instances
orpi_anti_affinity_volumes
to be specified; Allowable values:affinity
,anti-affinity
- pi
Affinity stringVolume - Volume (ID or Name) to base storage affinity policy against; required if requesting
affinity
andpi_affinity_instance
is not provided. - pi
Anti string[]Affinity Instances - List of pvmInstances to base storage anti-affinity policy against; required if requesting
anti-affinity
andpi_anti_affinity_volumes
is not provided. - pi
Anti string[]Affinity Volumes - List of volumes to base storage anti-affinity policy against; required if requesting
anti-affinity
andpi_anti_affinity_instances
is not provided. - pi
Cloud stringInstance Id - The GUID of the service instance associated with an account.
- pi
Image stringAccess Key - Cloud Object Storage access key; required for buckets with private access.
- pi
Image stringBucket Access - Indicates if the bucket has public or private access. The default value is
public
. - pi
Image stringBucket File Name - Cloud Object Storage image filename
- pi
Image stringBucket Name - Cloud Object Storage bucket name;
bucket-name[/optional/folder]
- Either
pi_image_bucket_name
orpi_image_id
is required.
- Either
- pi
Image stringBucket Region - Cloud Object Storage region. Supported COS regions are:
au-syd
,br-sao
,ca-tor
,che01
,eu-de
,eu-es
,eu-gb
,jp-osa
,jp-tok
,us-east
,us-south
. - pi
Image stringId - Image ID of existing source image; required for copy image.
- Either
pi_image_id
orpi_image_bucket_name
is required. - You can retrieve this value from pi_catalog_images as
image_id
from the stock image you intend to use.
- Either
- pi
Image PiImport Details Image Pi Image Import Details - Import details for SAP images Nested schema for pi_image_import_details:
- pi
Image stringName - The name of an image for importing only. Required if importing from bucket. Conflicts with
pi_image_id
. - pi
Image stringSecret Key - Cloud Object Storage secret key; required for buckets with private access.
- pi
Image stringStorage Pool - Storage pool where the image will be loaded, if provided then
pi_affinity_policy
will be ignored. Used only when importing an image from cloud storage. - pi
Image stringStorage Type - Type of storage; If not provided the storage type will default to 'tier3'. Used only when importing an image from cloud storage. To get a list of available storage types, please use the ibm.getPiStorageTypesCapacity data source.
- string[]
- The user tags attached to this resource.
- timeouts
Pi
Image Timeouts
- crn str
- (String) The CRN of this resource.
- ibm_
pi_ strimage_ id - (String) The unique identifier of an image. The ID is composed of
<pi_cloud_instance_id>/<image_id>
. - image_
id str - (String) The unique identifier of an image.
- pi_
affinity_ strinstance - PVM Instance (ID or Name) to base storage affinity policy against; required if requesting
affinity
andpi_affinity_volume
is not provided. - pi_
affinity_ strpolicy - Affinity policy for image; ignored if
pi_image_storage_pool
provided; for policy affinity requires one ofpi_affinity_instance
orpi_affinity_volume
to be specified; for policy anti-affinity requires one ofpi_anti_affinity_instances
orpi_anti_affinity_volumes
to be specified; Allowable values:affinity
,anti-affinity
- pi_
affinity_ strvolume - Volume (ID or Name) to base storage affinity policy against; required if requesting
affinity
andpi_affinity_instance
is not provided. - pi_
anti_ Sequence[str]affinity_ instances - List of pvmInstances to base storage anti-affinity policy against; required if requesting
anti-affinity
andpi_anti_affinity_volumes
is not provided. - pi_
anti_ Sequence[str]affinity_ volumes - List of volumes to base storage anti-affinity policy against; required if requesting
anti-affinity
andpi_anti_affinity_instances
is not provided. - pi_
cloud_ strinstance_ id - The GUID of the service instance associated with an account.
- pi_
image_ straccess_ key - Cloud Object Storage access key; required for buckets with private access.
- pi_
image_ strbucket_ access - Indicates if the bucket has public or private access. The default value is
public
. - pi_
image_ strbucket_ file_ name - Cloud Object Storage image filename
- pi_
image_ strbucket_ name - Cloud Object Storage bucket name;
bucket-name[/optional/folder]
- Either
pi_image_bucket_name
orpi_image_id
is required.
- Either
- pi_
image_ strbucket_ region - Cloud Object Storage region. Supported COS regions are:
au-syd
,br-sao
,ca-tor
,che01
,eu-de
,eu-es
,eu-gb
,jp-osa
,jp-tok
,us-east
,us-south
. - pi_
image_ strid - Image ID of existing source image; required for copy image.
- Either
pi_image_id
orpi_image_bucket_name
is required. - You can retrieve this value from pi_catalog_images as
image_id
from the stock image you intend to use.
- Either
- pi_
image_ Piimport_ details Image Pi Image Import Details Args - Import details for SAP images Nested schema for pi_image_import_details:
- pi_
image_ strname - The name of an image for importing only. Required if importing from bucket. Conflicts with
pi_image_id
. - pi_
image_ strsecret_ key - Cloud Object Storage secret key; required for buckets with private access.
- pi_
image_ strstorage_ pool - Storage pool where the image will be loaded, if provided then
pi_affinity_policy
will be ignored. Used only when importing an image from cloud storage. - pi_
image_ strstorage_ type - Type of storage; If not provided the storage type will default to 'tier3'. Used only when importing an image from cloud storage. To get a list of available storage types, please use the ibm.getPiStorageTypesCapacity data source.
- Sequence[str]
- The user tags attached to this resource.
- timeouts
Pi
Image Timeouts Args
- crn String
- (String) The CRN of this resource.
- ibm
Pi StringImage Id - (String) The unique identifier of an image. The ID is composed of
<pi_cloud_instance_id>/<image_id>
. - image
Id String - (String) The unique identifier of an image.
- pi
Affinity StringInstance - PVM Instance (ID or Name) to base storage affinity policy against; required if requesting
affinity
andpi_affinity_volume
is not provided. - pi
Affinity StringPolicy - Affinity policy for image; ignored if
pi_image_storage_pool
provided; for policy affinity requires one ofpi_affinity_instance
orpi_affinity_volume
to be specified; for policy anti-affinity requires one ofpi_anti_affinity_instances
orpi_anti_affinity_volumes
to be specified; Allowable values:affinity
,anti-affinity
- pi
Affinity StringVolume - Volume (ID or Name) to base storage affinity policy against; required if requesting
affinity
andpi_affinity_instance
is not provided. - pi
Anti List<String>Affinity Instances - List of pvmInstances to base storage anti-affinity policy against; required if requesting
anti-affinity
andpi_anti_affinity_volumes
is not provided. - pi
Anti List<String>Affinity Volumes - List of volumes to base storage anti-affinity policy against; required if requesting
anti-affinity
andpi_anti_affinity_instances
is not provided. - pi
Cloud StringInstance Id - The GUID of the service instance associated with an account.
- pi
Image StringAccess Key - Cloud Object Storage access key; required for buckets with private access.
- pi
Image StringBucket Access - Indicates if the bucket has public or private access. The default value is
public
. - pi
Image StringBucket File Name - Cloud Object Storage image filename
- pi
Image StringBucket Name - Cloud Object Storage bucket name;
bucket-name[/optional/folder]
- Either
pi_image_bucket_name
orpi_image_id
is required.
- Either
- pi
Image StringBucket Region - Cloud Object Storage region. Supported COS regions are:
au-syd
,br-sao
,ca-tor
,che01
,eu-de
,eu-es
,eu-gb
,jp-osa
,jp-tok
,us-east
,us-south
. - pi
Image StringId - Image ID of existing source image; required for copy image.
- Either
pi_image_id
orpi_image_bucket_name
is required. - You can retrieve this value from pi_catalog_images as
image_id
from the stock image you intend to use.
- Either
- pi
Image Property MapImport Details - Import details for SAP images Nested schema for pi_image_import_details:
- pi
Image StringName - The name of an image for importing only. Required if importing from bucket. Conflicts with
pi_image_id
. - pi
Image StringSecret Key - Cloud Object Storage secret key; required for buckets with private access.
- pi
Image StringStorage Pool - Storage pool where the image will be loaded, if provided then
pi_affinity_policy
will be ignored. Used only when importing an image from cloud storage. - pi
Image StringStorage Type - Type of storage; If not provided the storage type will default to 'tier3'. Used only when importing an image from cloud storage. To get a list of available storage types, please use the ibm.getPiStorageTypesCapacity data source.
- List<String>
- The user tags attached to this resource.
- timeouts Property Map
Supporting Types
PiImagePiImageImportDetails, PiImagePiImageImportDetailsArgs
- License
Type string - Origin of the license of the product. Allowable value is:
byol
. - Product string
- Product within the image.Allowable values are:
Hana
,Netweaver
. - Vendor string
- Vendor supporting the product. Allowable value is:
SAP
.
- License
Type string - Origin of the license of the product. Allowable value is:
byol
. - Product string
- Product within the image.Allowable values are:
Hana
,Netweaver
. - Vendor string
- Vendor supporting the product. Allowable value is:
SAP
.
- license
Type String - Origin of the license of the product. Allowable value is:
byol
. - product String
- Product within the image.Allowable values are:
Hana
,Netweaver
. - vendor String
- Vendor supporting the product. Allowable value is:
SAP
.
- license
Type string - Origin of the license of the product. Allowable value is:
byol
. - product string
- Product within the image.Allowable values are:
Hana
,Netweaver
. - vendor string
- Vendor supporting the product. Allowable value is:
SAP
.
- license_
type str - Origin of the license of the product. Allowable value is:
byol
. - product str
- Product within the image.Allowable values are:
Hana
,Netweaver
. - vendor str
- Vendor supporting the product. Allowable value is:
SAP
.
- license
Type String - Origin of the license of the product. Allowable value is:
byol
. - product String
- Product within the image.Allowable values are:
Hana
,Netweaver
. - vendor String
- Vendor supporting the product. Allowable value is:
SAP
.
PiImageTimeouts, PiImageTimeoutsArgs
Import
Example
bash
$ pulumi import ibm:index/piImage:PiImage example d7bec597-4726-451f-8a63-e62e6f19c32c/cea6651a-bc0a-4438-9f8a-a0770bbf3ebb
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- ibm ibm-cloud/terraform-provider-ibm
- License
- Notes
- This Pulumi package is based on the
ibm
Terraform Provider.