avi.Image
Explore with Pulumi AI
<!–
Copyright 2021 VMware, Inc.
SPDX-License-Identifier: Mozilla Public License 2.0
–>
layout: “avi”
page_title: “Avi: avi.Image” sidebar_current: “docs-avi-resource-image” description: |- Creates and manages Avi Image.
avi.Image
The Image resource allows the creation and management of Avi Image
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as avi from "@pulumi/avi";
const foo = new avi.Image("foo", {tenantRef: "/api/tenant/?name=admin"});
import pulumi
import pulumi_avi as avi
foo = avi.Image("foo", tenant_ref="/api/tenant/?name=admin")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/avi/v31/avi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := avi.NewImage(ctx, "foo", &avi.ImageArgs{
TenantRef: pulumi.String("/api/tenant/?name=admin"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Avi = Pulumi.Avi;
return await Deployment.RunAsync(() =>
{
var foo = new Avi.Image("foo", new()
{
TenantRef = "/api/tenant/?name=admin",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.avi.Image;
import com.pulumi.avi.ImageArgs;
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) {
var foo = new Image("foo", ImageArgs.builder()
.tenantRef("/api/tenant/?name=admin")
.build());
}
}
resources:
foo:
type: avi:Image
properties:
tenantRef: /api/tenant/?name=admin
Create Image Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Image(name: string, args?: ImageArgs, opts?: CustomResourceOptions);
@overload
def Image(resource_name: str,
args: Optional[ImageArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Image(resource_name: str,
opts: Optional[ResourceOptions] = None,
cloud_info_values: Optional[Sequence[ImageCloudInfoValueArgs]] = None,
controller_infos: Optional[Sequence[ImageControllerInfoArgs]] = None,
controller_patch_name: Optional[str] = None,
controller_patch_ref: Optional[str] = None,
duration: Optional[str] = None,
end_time: Optional[str] = None,
events: Optional[Sequence[ImageEventArgs]] = None,
fips_mode_transition_applicable: Optional[str] = None,
image_id: Optional[str] = None,
img_states: Optional[Sequence[ImageImgStateArgs]] = None,
migrations: Optional[Sequence[ImageMigrationArgs]] = None,
name: Optional[str] = None,
progress: Optional[str] = None,
se_infos: Optional[Sequence[ImageSeInfoArgs]] = None,
se_patch_name: Optional[str] = None,
se_patch_ref: Optional[str] = None,
start_time: Optional[str] = None,
tasks_completed: Optional[str] = None,
tenant_ref: Optional[str] = None,
total_tasks: Optional[str] = None,
type: Optional[str] = None,
uber_bundle: Optional[str] = None,
uuid: Optional[str] = None)
func NewImage(ctx *Context, name string, args *ImageArgs, opts ...ResourceOption) (*Image, error)
public Image(string name, ImageArgs? args = null, CustomResourceOptions? opts = null)
type: avi:Image
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 ImageArgs
- 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 ImageArgs
- 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 ImageArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ImageArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ImageArgs
- 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 imageResource = new Avi.Image("imageResource", new()
{
CloudInfoValues = new[]
{
new Avi.Inputs.ImageCloudInfoValueArgs
{
CloudDataValues = new[]
{
new Avi.Inputs.ImageCloudInfoValueCloudDataValueArgs
{
Key = "string",
Values = new[]
{
"string",
},
},
},
CloudName = "string",
},
},
ControllerInfos = new[]
{
new Avi.Inputs.ImageControllerInfoArgs
{
Builds = new[]
{
new Avi.Inputs.ImageControllerInfoBuildArgs
{
BuildNo = "string",
Date = "string",
MinVersion = "string",
PatchVersion = "string",
Product = "string",
ProductName = "string",
Tag = "string",
Version = "string",
},
},
Hash = "string",
Patches = new[]
{
new Avi.Inputs.ImageControllerInfoPatchArgs
{
PatchType = "string",
Reboot = "string",
RebootLists = new[]
{
new Avi.Inputs.ImageControllerInfoPatchRebootListArgs
{
PatchVersion = "string",
Reboot = "string",
},
},
},
},
Path = "string",
},
},
ControllerPatchName = "string",
ControllerPatchRef = "string",
Duration = "string",
EndTime = "string",
Events = new[]
{
new Avi.Inputs.ImageEventArgs
{
NodesEvents = new[]
{
new Avi.Inputs.ImageEventNodesEventArgs
{
Duration = "string",
EndTime = "string",
Ips = new[]
{
new Avi.Inputs.ImageEventNodesEventIpArgs
{
Addr = "string",
Type = "string",
},
},
Message = "string",
StartTime = "string",
Status = "string",
SubTasks = new[]
{
"string",
},
},
},
SubEvents = new[]
{
new Avi.Inputs.ImageEventSubEventArgs
{
Duration = "string",
EndTime = "string",
Ips = new[]
{
new Avi.Inputs.ImageEventSubEventIpArgs
{
Addr = "string",
Type = "string",
},
},
Message = "string",
StartTime = "string",
Status = "string",
SubTasks = new[]
{
"string",
},
},
},
TaskName = "string",
},
},
FipsModeTransitionApplicable = "string",
ImageId = "string",
ImgStates = new[]
{
new Avi.Inputs.ImageImgStateArgs
{
LastChangedTimes = new[]
{
new Avi.Inputs.ImageImgStateLastChangedTimeArgs
{
Secs = "string",
Usecs = "string",
},
},
Reason = "string",
State = "string",
},
},
Migrations = new[]
{
new Avi.Inputs.ImageMigrationArgs
{
ApiVersion = "string",
ControllerHostMinFreeDiskSize = "string",
ControllerMinCores = "string",
ControllerMinDockerVersion = "string",
ControllerMinFreeDiskSize = "string",
ControllerMinMemory = "string",
ControllerMinTotalDisk = "string",
DryrunMinCores = "string",
DryrunMinFreeDiskSize = "string",
DryrunMinMemory = "string",
MaxActiveVersions = "string",
MinSupportedApiVersion = "string",
PodmanControllerHostMinFreeDiskSize = "string",
PodmanSeHostMinFreeDiskSize = "string",
RollbackControllerDiskSpace = "string",
RollbackSeDiskSpace = "string",
SeHostMinFreeDiskSize = "string",
SeMinCores = "string",
SeMinFreeDiskSize = "string",
SeMinMemory = "string",
SeMinTotalDisk = "string",
Versions = new[]
{
"string",
},
},
},
Name = "string",
Progress = "string",
SeInfos = new[]
{
new Avi.Inputs.ImageSeInfoArgs
{
Builds = new[]
{
new Avi.Inputs.ImageSeInfoBuildArgs
{
BuildNo = "string",
Date = "string",
MinVersion = "string",
PatchVersion = "string",
Product = "string",
ProductName = "string",
Tag = "string",
Version = "string",
},
},
Hash = "string",
Patches = new[]
{
new Avi.Inputs.ImageSeInfoPatchArgs
{
PatchType = "string",
Reboot = "string",
RebootLists = new[]
{
new Avi.Inputs.ImageSeInfoPatchRebootListArgs
{
PatchVersion = "string",
Reboot = "string",
},
},
},
},
Path = "string",
},
},
SePatchName = "string",
SePatchRef = "string",
StartTime = "string",
TasksCompleted = "string",
TenantRef = "string",
TotalTasks = "string",
Type = "string",
UberBundle = "string",
Uuid = "string",
});
example, err := avi.NewImage(ctx, "imageResource", &avi.ImageArgs{
CloudInfoValues: avi.ImageCloudInfoValueArray{
&avi.ImageCloudInfoValueArgs{
CloudDataValues: avi.ImageCloudInfoValueCloudDataValueArray{
&avi.ImageCloudInfoValueCloudDataValueArgs{
Key: pulumi.String("string"),
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
CloudName: pulumi.String("string"),
},
},
ControllerInfos: avi.ImageControllerInfoArray{
&avi.ImageControllerInfoArgs{
Builds: avi.ImageControllerInfoBuildArray{
&avi.ImageControllerInfoBuildArgs{
BuildNo: pulumi.String("string"),
Date: pulumi.String("string"),
MinVersion: pulumi.String("string"),
PatchVersion: pulumi.String("string"),
Product: pulumi.String("string"),
ProductName: pulumi.String("string"),
Tag: pulumi.String("string"),
Version: pulumi.String("string"),
},
},
Hash: pulumi.String("string"),
Patches: avi.ImageControllerInfoPatchArray{
&avi.ImageControllerInfoPatchArgs{
PatchType: pulumi.String("string"),
Reboot: pulumi.String("string"),
RebootLists: avi.ImageControllerInfoPatchRebootListArray{
&avi.ImageControllerInfoPatchRebootListArgs{
PatchVersion: pulumi.String("string"),
Reboot: pulumi.String("string"),
},
},
},
},
Path: pulumi.String("string"),
},
},
ControllerPatchName: pulumi.String("string"),
ControllerPatchRef: pulumi.String("string"),
Duration: pulumi.String("string"),
EndTime: pulumi.String("string"),
Events: avi.ImageEventArray{
&avi.ImageEventArgs{
NodesEvents: avi.ImageEventNodesEventArray{
&avi.ImageEventNodesEventArgs{
Duration: pulumi.String("string"),
EndTime: pulumi.String("string"),
Ips: avi.ImageEventNodesEventIpArray{
&avi.ImageEventNodesEventIpArgs{
Addr: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
Message: pulumi.String("string"),
StartTime: pulumi.String("string"),
Status: pulumi.String("string"),
SubTasks: pulumi.StringArray{
pulumi.String("string"),
},
},
},
SubEvents: avi.ImageEventSubEventArray{
&avi.ImageEventSubEventArgs{
Duration: pulumi.String("string"),
EndTime: pulumi.String("string"),
Ips: avi.ImageEventSubEventIpArray{
&avi.ImageEventSubEventIpArgs{
Addr: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
Message: pulumi.String("string"),
StartTime: pulumi.String("string"),
Status: pulumi.String("string"),
SubTasks: pulumi.StringArray{
pulumi.String("string"),
},
},
},
TaskName: pulumi.String("string"),
},
},
FipsModeTransitionApplicable: pulumi.String("string"),
ImageId: pulumi.String("string"),
ImgStates: avi.ImageImgStateArray{
&avi.ImageImgStateArgs{
LastChangedTimes: avi.ImageImgStateLastChangedTimeArray{
&avi.ImageImgStateLastChangedTimeArgs{
Secs: pulumi.String("string"),
Usecs: pulumi.String("string"),
},
},
Reason: pulumi.String("string"),
State: pulumi.String("string"),
},
},
Migrations: avi.ImageMigrationArray{
&avi.ImageMigrationArgs{
ApiVersion: pulumi.String("string"),
ControllerHostMinFreeDiskSize: pulumi.String("string"),
ControllerMinCores: pulumi.String("string"),
ControllerMinDockerVersion: pulumi.String("string"),
ControllerMinFreeDiskSize: pulumi.String("string"),
ControllerMinMemory: pulumi.String("string"),
ControllerMinTotalDisk: pulumi.String("string"),
DryrunMinCores: pulumi.String("string"),
DryrunMinFreeDiskSize: pulumi.String("string"),
DryrunMinMemory: pulumi.String("string"),
MaxActiveVersions: pulumi.String("string"),
MinSupportedApiVersion: pulumi.String("string"),
PodmanControllerHostMinFreeDiskSize: pulumi.String("string"),
PodmanSeHostMinFreeDiskSize: pulumi.String("string"),
RollbackControllerDiskSpace: pulumi.String("string"),
RollbackSeDiskSpace: pulumi.String("string"),
SeHostMinFreeDiskSize: pulumi.String("string"),
SeMinCores: pulumi.String("string"),
SeMinFreeDiskSize: pulumi.String("string"),
SeMinMemory: pulumi.String("string"),
SeMinTotalDisk: pulumi.String("string"),
Versions: pulumi.StringArray{
pulumi.String("string"),
},
},
},
Name: pulumi.String("string"),
Progress: pulumi.String("string"),
SeInfos: avi.ImageSeInfoArray{
&avi.ImageSeInfoArgs{
Builds: avi.ImageSeInfoBuildArray{
&avi.ImageSeInfoBuildArgs{
BuildNo: pulumi.String("string"),
Date: pulumi.String("string"),
MinVersion: pulumi.String("string"),
PatchVersion: pulumi.String("string"),
Product: pulumi.String("string"),
ProductName: pulumi.String("string"),
Tag: pulumi.String("string"),
Version: pulumi.String("string"),
},
},
Hash: pulumi.String("string"),
Patches: avi.ImageSeInfoPatchArray{
&avi.ImageSeInfoPatchArgs{
PatchType: pulumi.String("string"),
Reboot: pulumi.String("string"),
RebootLists: avi.ImageSeInfoPatchRebootListArray{
&avi.ImageSeInfoPatchRebootListArgs{
PatchVersion: pulumi.String("string"),
Reboot: pulumi.String("string"),
},
},
},
},
Path: pulumi.String("string"),
},
},
SePatchName: pulumi.String("string"),
SePatchRef: pulumi.String("string"),
StartTime: pulumi.String("string"),
TasksCompleted: pulumi.String("string"),
TenantRef: pulumi.String("string"),
TotalTasks: pulumi.String("string"),
Type: pulumi.String("string"),
UberBundle: pulumi.String("string"),
Uuid: pulumi.String("string"),
})
var imageResource = new Image("imageResource", ImageArgs.builder()
.cloudInfoValues(ImageCloudInfoValueArgs.builder()
.cloudDataValues(ImageCloudInfoValueCloudDataValueArgs.builder()
.key("string")
.values("string")
.build())
.cloudName("string")
.build())
.controllerInfos(ImageControllerInfoArgs.builder()
.builds(ImageControllerInfoBuildArgs.builder()
.buildNo("string")
.date("string")
.minVersion("string")
.patchVersion("string")
.product("string")
.productName("string")
.tag("string")
.version("string")
.build())
.hash("string")
.patches(ImageControllerInfoPatchArgs.builder()
.patchType("string")
.reboot("string")
.rebootLists(ImageControllerInfoPatchRebootListArgs.builder()
.patchVersion("string")
.reboot("string")
.build())
.build())
.path("string")
.build())
.controllerPatchName("string")
.controllerPatchRef("string")
.duration("string")
.endTime("string")
.events(ImageEventArgs.builder()
.nodesEvents(ImageEventNodesEventArgs.builder()
.duration("string")
.endTime("string")
.ips(ImageEventNodesEventIpArgs.builder()
.addr("string")
.type("string")
.build())
.message("string")
.startTime("string")
.status("string")
.subTasks("string")
.build())
.subEvents(ImageEventSubEventArgs.builder()
.duration("string")
.endTime("string")
.ips(ImageEventSubEventIpArgs.builder()
.addr("string")
.type("string")
.build())
.message("string")
.startTime("string")
.status("string")
.subTasks("string")
.build())
.taskName("string")
.build())
.fipsModeTransitionApplicable("string")
.imageId("string")
.imgStates(ImageImgStateArgs.builder()
.lastChangedTimes(ImageImgStateLastChangedTimeArgs.builder()
.secs("string")
.usecs("string")
.build())
.reason("string")
.state("string")
.build())
.migrations(ImageMigrationArgs.builder()
.apiVersion("string")
.controllerHostMinFreeDiskSize("string")
.controllerMinCores("string")
.controllerMinDockerVersion("string")
.controllerMinFreeDiskSize("string")
.controllerMinMemory("string")
.controllerMinTotalDisk("string")
.dryrunMinCores("string")
.dryrunMinFreeDiskSize("string")
.dryrunMinMemory("string")
.maxActiveVersions("string")
.minSupportedApiVersion("string")
.podmanControllerHostMinFreeDiskSize("string")
.podmanSeHostMinFreeDiskSize("string")
.rollbackControllerDiskSpace("string")
.rollbackSeDiskSpace("string")
.seHostMinFreeDiskSize("string")
.seMinCores("string")
.seMinFreeDiskSize("string")
.seMinMemory("string")
.seMinTotalDisk("string")
.versions("string")
.build())
.name("string")
.progress("string")
.seInfos(ImageSeInfoArgs.builder()
.builds(ImageSeInfoBuildArgs.builder()
.buildNo("string")
.date("string")
.minVersion("string")
.patchVersion("string")
.product("string")
.productName("string")
.tag("string")
.version("string")
.build())
.hash("string")
.patches(ImageSeInfoPatchArgs.builder()
.patchType("string")
.reboot("string")
.rebootLists(ImageSeInfoPatchRebootListArgs.builder()
.patchVersion("string")
.reboot("string")
.build())
.build())
.path("string")
.build())
.sePatchName("string")
.sePatchRef("string")
.startTime("string")
.tasksCompleted("string")
.tenantRef("string")
.totalTasks("string")
.type("string")
.uberBundle("string")
.uuid("string")
.build());
image_resource = avi.Image("imageResource",
cloud_info_values=[{
"cloud_data_values": [{
"key": "string",
"values": ["string"],
}],
"cloud_name": "string",
}],
controller_infos=[{
"builds": [{
"build_no": "string",
"date": "string",
"min_version": "string",
"patch_version": "string",
"product": "string",
"product_name": "string",
"tag": "string",
"version": "string",
}],
"hash": "string",
"patches": [{
"patch_type": "string",
"reboot": "string",
"reboot_lists": [{
"patch_version": "string",
"reboot": "string",
}],
}],
"path": "string",
}],
controller_patch_name="string",
controller_patch_ref="string",
duration="string",
end_time="string",
events=[{
"nodes_events": [{
"duration": "string",
"end_time": "string",
"ips": [{
"addr": "string",
"type": "string",
}],
"message": "string",
"start_time": "string",
"status": "string",
"sub_tasks": ["string"],
}],
"sub_events": [{
"duration": "string",
"end_time": "string",
"ips": [{
"addr": "string",
"type": "string",
}],
"message": "string",
"start_time": "string",
"status": "string",
"sub_tasks": ["string"],
}],
"task_name": "string",
}],
fips_mode_transition_applicable="string",
image_id="string",
img_states=[{
"last_changed_times": [{
"secs": "string",
"usecs": "string",
}],
"reason": "string",
"state": "string",
}],
migrations=[{
"api_version": "string",
"controller_host_min_free_disk_size": "string",
"controller_min_cores": "string",
"controller_min_docker_version": "string",
"controller_min_free_disk_size": "string",
"controller_min_memory": "string",
"controller_min_total_disk": "string",
"dryrun_min_cores": "string",
"dryrun_min_free_disk_size": "string",
"dryrun_min_memory": "string",
"max_active_versions": "string",
"min_supported_api_version": "string",
"podman_controller_host_min_free_disk_size": "string",
"podman_se_host_min_free_disk_size": "string",
"rollback_controller_disk_space": "string",
"rollback_se_disk_space": "string",
"se_host_min_free_disk_size": "string",
"se_min_cores": "string",
"se_min_free_disk_size": "string",
"se_min_memory": "string",
"se_min_total_disk": "string",
"versions": ["string"],
}],
name="string",
progress="string",
se_infos=[{
"builds": [{
"build_no": "string",
"date": "string",
"min_version": "string",
"patch_version": "string",
"product": "string",
"product_name": "string",
"tag": "string",
"version": "string",
}],
"hash": "string",
"patches": [{
"patch_type": "string",
"reboot": "string",
"reboot_lists": [{
"patch_version": "string",
"reboot": "string",
}],
}],
"path": "string",
}],
se_patch_name="string",
se_patch_ref="string",
start_time="string",
tasks_completed="string",
tenant_ref="string",
total_tasks="string",
type="string",
uber_bundle="string",
uuid="string")
const imageResource = new avi.Image("imageResource", {
cloudInfoValues: [{
cloudDataValues: [{
key: "string",
values: ["string"],
}],
cloudName: "string",
}],
controllerInfos: [{
builds: [{
buildNo: "string",
date: "string",
minVersion: "string",
patchVersion: "string",
product: "string",
productName: "string",
tag: "string",
version: "string",
}],
hash: "string",
patches: [{
patchType: "string",
reboot: "string",
rebootLists: [{
patchVersion: "string",
reboot: "string",
}],
}],
path: "string",
}],
controllerPatchName: "string",
controllerPatchRef: "string",
duration: "string",
endTime: "string",
events: [{
nodesEvents: [{
duration: "string",
endTime: "string",
ips: [{
addr: "string",
type: "string",
}],
message: "string",
startTime: "string",
status: "string",
subTasks: ["string"],
}],
subEvents: [{
duration: "string",
endTime: "string",
ips: [{
addr: "string",
type: "string",
}],
message: "string",
startTime: "string",
status: "string",
subTasks: ["string"],
}],
taskName: "string",
}],
fipsModeTransitionApplicable: "string",
imageId: "string",
imgStates: [{
lastChangedTimes: [{
secs: "string",
usecs: "string",
}],
reason: "string",
state: "string",
}],
migrations: [{
apiVersion: "string",
controllerHostMinFreeDiskSize: "string",
controllerMinCores: "string",
controllerMinDockerVersion: "string",
controllerMinFreeDiskSize: "string",
controllerMinMemory: "string",
controllerMinTotalDisk: "string",
dryrunMinCores: "string",
dryrunMinFreeDiskSize: "string",
dryrunMinMemory: "string",
maxActiveVersions: "string",
minSupportedApiVersion: "string",
podmanControllerHostMinFreeDiskSize: "string",
podmanSeHostMinFreeDiskSize: "string",
rollbackControllerDiskSpace: "string",
rollbackSeDiskSpace: "string",
seHostMinFreeDiskSize: "string",
seMinCores: "string",
seMinFreeDiskSize: "string",
seMinMemory: "string",
seMinTotalDisk: "string",
versions: ["string"],
}],
name: "string",
progress: "string",
seInfos: [{
builds: [{
buildNo: "string",
date: "string",
minVersion: "string",
patchVersion: "string",
product: "string",
productName: "string",
tag: "string",
version: "string",
}],
hash: "string",
patches: [{
patchType: "string",
reboot: "string",
rebootLists: [{
patchVersion: "string",
reboot: "string",
}],
}],
path: "string",
}],
sePatchName: "string",
sePatchRef: "string",
startTime: "string",
tasksCompleted: "string",
tenantRef: "string",
totalTasks: "string",
type: "string",
uberBundle: "string",
uuid: "string",
});
type: avi:Image
properties:
cloudInfoValues:
- cloudDataValues:
- key: string
values:
- string
cloudName: string
controllerInfos:
- builds:
- buildNo: string
date: string
minVersion: string
patchVersion: string
product: string
productName: string
tag: string
version: string
hash: string
patches:
- patchType: string
reboot: string
rebootLists:
- patchVersion: string
reboot: string
path: string
controllerPatchName: string
controllerPatchRef: string
duration: string
endTime: string
events:
- nodesEvents:
- duration: string
endTime: string
ips:
- addr: string
type: string
message: string
startTime: string
status: string
subTasks:
- string
subEvents:
- duration: string
endTime: string
ips:
- addr: string
type: string
message: string
startTime: string
status: string
subTasks:
- string
taskName: string
fipsModeTransitionApplicable: string
imageId: string
imgStates:
- lastChangedTimes:
- secs: string
usecs: string
reason: string
state: string
migrations:
- apiVersion: string
controllerHostMinFreeDiskSize: string
controllerMinCores: string
controllerMinDockerVersion: string
controllerMinFreeDiskSize: string
controllerMinMemory: string
controllerMinTotalDisk: string
dryrunMinCores: string
dryrunMinFreeDiskSize: string
dryrunMinMemory: string
maxActiveVersions: string
minSupportedApiVersion: string
podmanControllerHostMinFreeDiskSize: string
podmanSeHostMinFreeDiskSize: string
rollbackControllerDiskSpace: string
rollbackSeDiskSpace: string
seHostMinFreeDiskSize: string
seMinCores: string
seMinFreeDiskSize: string
seMinMemory: string
seMinTotalDisk: string
versions:
- string
name: string
progress: string
seInfos:
- builds:
- buildNo: string
date: string
minVersion: string
patchVersion: string
product: string
productName: string
tag: string
version: string
hash: string
patches:
- patchType: string
reboot: string
rebootLists:
- patchVersion: string
reboot: string
path: string
sePatchName: string
sePatchRef: string
startTime: string
tasksCompleted: string
tenantRef: string
totalTasks: string
type: string
uberBundle: string
uuid: string
Image 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 Image resource accepts the following input properties:
- Cloud
Info List<ImageValues Cloud Info Value> - This field describes the cloud info specific to the base image. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Controller
Infos List<ImageController Info> - Controller package details. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Controller
Patch stringName - Mandatory controller patch name that is applied along with this base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Controller
Patch stringRef - It references the controller-patch associated with the uber image. It is a reference to an object of type image. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Duration string
- Time taken to upload the image in seconds. Field introduced in 21.1.3. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
- End
Time string - Image upload end time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Events
List<Image
Event> - Image events for image upload operation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Fips
Mode stringTransition Applicable - Specifies whether fips mode can be enabled on this image. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Image
Id string - Img
States List<ImageImg State> - Status of the image. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Migrations
List<Image
Migration> - This field describes the api migration related information. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Name of the image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Progress string
- Image upload progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 21.1.3. Unit is percent. Allowed with any value in enterprise, enterprise with cloud services edition.
- Se
Infos List<ImageSe Info> - Se package details. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Se
Patch stringName - Mandatory serviceengine patch name that is applied along with this base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Se
Patch stringRef - It references the service engine patch associated with the uber image. It is a reference to an object of type image. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Start
Time string - Image upload start time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Tasks
Completed string - Completed set of tasks for image upload. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Tenant
Ref string - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Total
Tasks string - Total number of tasks for image upload. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Type string
- Type of the image patch/system. Enum options - IMAGE_TYPE_PATCH, IMAGE_TYPE_SYSTEM, IMAGE_TYPE_MUST_CHECK. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uber
Bundle string - Status to check if the image is an uber bundle. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Uuid of the image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Cloud
Info []ImageValues Cloud Info Value Args - This field describes the cloud info specific to the base image. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Controller
Infos []ImageController Info Args - Controller package details. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Controller
Patch stringName - Mandatory controller patch name that is applied along with this base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Controller
Patch stringRef - It references the controller-patch associated with the uber image. It is a reference to an object of type image. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Duration string
- Time taken to upload the image in seconds. Field introduced in 21.1.3. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
- End
Time string - Image upload end time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Events
[]Image
Event Args - Image events for image upload operation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Fips
Mode stringTransition Applicable - Specifies whether fips mode can be enabled on this image. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Image
Id string - Img
States []ImageImg State Args - Status of the image. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Migrations
[]Image
Migration Args - This field describes the api migration related information. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Name of the image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Progress string
- Image upload progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 21.1.3. Unit is percent. Allowed with any value in enterprise, enterprise with cloud services edition.
- Se
Infos []ImageSe Info Args - Se package details. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Se
Patch stringName - Mandatory serviceengine patch name that is applied along with this base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Se
Patch stringRef - It references the service engine patch associated with the uber image. It is a reference to an object of type image. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Start
Time string - Image upload start time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Tasks
Completed string - Completed set of tasks for image upload. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Tenant
Ref string - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Total
Tasks string - Total number of tasks for image upload. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Type string
- Type of the image patch/system. Enum options - IMAGE_TYPE_PATCH, IMAGE_TYPE_SYSTEM, IMAGE_TYPE_MUST_CHECK. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uber
Bundle string - Status to check if the image is an uber bundle. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Uuid of the image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- cloud
Info List<ImageValues Cloud Info Value> - This field describes the cloud info specific to the base image. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- controller
Infos List<ImageController Info> - Controller package details. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- controller
Patch StringName - Mandatory controller patch name that is applied along with this base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- controller
Patch StringRef - It references the controller-patch associated with the uber image. It is a reference to an object of type image. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- duration String
- Time taken to upload the image in seconds. Field introduced in 21.1.3. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
- end
Time String - Image upload end time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- events
List<Image
Event> - Image events for image upload operation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- fips
Mode StringTransition Applicable - Specifies whether fips mode can be enabled on this image. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- image
Id String - img
States List<ImageImg State> - Status of the image. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- migrations
List<Image
Migration> - This field describes the api migration related information. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Name of the image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- progress String
- Image upload progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 21.1.3. Unit is percent. Allowed with any value in enterprise, enterprise with cloud services edition.
- se
Infos List<ImageSe Info> - Se package details. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- se
Patch StringName - Mandatory serviceengine patch name that is applied along with this base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- se
Patch StringRef - It references the service engine patch associated with the uber image. It is a reference to an object of type image. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- start
Time String - Image upload start time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- tasks
Completed String - Completed set of tasks for image upload. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant
Ref String - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- total
Tasks String - Total number of tasks for image upload. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- type String
- Type of the image patch/system. Enum options - IMAGE_TYPE_PATCH, IMAGE_TYPE_SYSTEM, IMAGE_TYPE_MUST_CHECK. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uber
Bundle String - Status to check if the image is an uber bundle. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Uuid of the image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- cloud
Info ImageValues Cloud Info Value[] - This field describes the cloud info specific to the base image. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- controller
Infos ImageController Info[] - Controller package details. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- controller
Patch stringName - Mandatory controller patch name that is applied along with this base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- controller
Patch stringRef - It references the controller-patch associated with the uber image. It is a reference to an object of type image. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- duration string
- Time taken to upload the image in seconds. Field introduced in 21.1.3. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
- end
Time string - Image upload end time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- events
Image
Event[] - Image events for image upload operation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- fips
Mode stringTransition Applicable - Specifies whether fips mode can be enabled on this image. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- image
Id string - img
States ImageImg State[] - Status of the image. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- migrations
Image
Migration[] - This field describes the api migration related information. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name string
- Name of the image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- progress string
- Image upload progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 21.1.3. Unit is percent. Allowed with any value in enterprise, enterprise with cloud services edition.
- se
Infos ImageSe Info[] - Se package details. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- se
Patch stringName - Mandatory serviceengine patch name that is applied along with this base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- se
Patch stringRef - It references the service engine patch associated with the uber image. It is a reference to an object of type image. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- start
Time string - Image upload start time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- tasks
Completed string - Completed set of tasks for image upload. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant
Ref string - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- total
Tasks string - Total number of tasks for image upload. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- type string
- Type of the image patch/system. Enum options - IMAGE_TYPE_PATCH, IMAGE_TYPE_SYSTEM, IMAGE_TYPE_MUST_CHECK. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uber
Bundle string - Status to check if the image is an uber bundle. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid string
- Uuid of the image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- cloud_
info_ Sequence[Imagevalues Cloud Info Value Args] - This field describes the cloud info specific to the base image. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- controller_
infos Sequence[ImageController Info Args] - Controller package details. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- controller_
patch_ strname - Mandatory controller patch name that is applied along with this base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- controller_
patch_ strref - It references the controller-patch associated with the uber image. It is a reference to an object of type image. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- duration str
- Time taken to upload the image in seconds. Field introduced in 21.1.3. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
- end_
time str - Image upload end time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- events
Sequence[Image
Event Args] - Image events for image upload operation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- fips_
mode_ strtransition_ applicable - Specifies whether fips mode can be enabled on this image. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- image_
id str - img_
states Sequence[ImageImg State Args] - Status of the image. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- migrations
Sequence[Image
Migration Args] - This field describes the api migration related information. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name str
- Name of the image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- progress str
- Image upload progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 21.1.3. Unit is percent. Allowed with any value in enterprise, enterprise with cloud services edition.
- se_
infos Sequence[ImageSe Info Args] - Se package details. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- se_
patch_ strname - Mandatory serviceengine patch name that is applied along with this base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- se_
patch_ strref - It references the service engine patch associated with the uber image. It is a reference to an object of type image. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- start_
time str - Image upload start time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- tasks_
completed str - Completed set of tasks for image upload. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant_
ref str - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- total_
tasks str - Total number of tasks for image upload. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- type str
- Type of the image patch/system. Enum options - IMAGE_TYPE_PATCH, IMAGE_TYPE_SYSTEM, IMAGE_TYPE_MUST_CHECK. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uber_
bundle str - Status to check if the image is an uber bundle. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid str
- Uuid of the image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- cloud
Info List<Property Map>Values - This field describes the cloud info specific to the base image. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- controller
Infos List<Property Map> - Controller package details. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- controller
Patch StringName - Mandatory controller patch name that is applied along with this base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- controller
Patch StringRef - It references the controller-patch associated with the uber image. It is a reference to an object of type image. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- duration String
- Time taken to upload the image in seconds. Field introduced in 21.1.3. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
- end
Time String - Image upload end time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- events List<Property Map>
- Image events for image upload operation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- fips
Mode StringTransition Applicable - Specifies whether fips mode can be enabled on this image. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- image
Id String - img
States List<Property Map> - Status of the image. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- migrations List<Property Map>
- This field describes the api migration related information. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Name of the image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- progress String
- Image upload progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 21.1.3. Unit is percent. Allowed with any value in enterprise, enterprise with cloud services edition.
- se
Infos List<Property Map> - Se package details. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- se
Patch StringName - Mandatory serviceengine patch name that is applied along with this base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- se
Patch StringRef - It references the service engine patch associated with the uber image. It is a reference to an object of type image. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- start
Time String - Image upload start time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- tasks
Completed String - Completed set of tasks for image upload. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant
Ref String - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- total
Tasks String - Total number of tasks for image upload. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- type String
- Type of the image patch/system. Enum options - IMAGE_TYPE_PATCH, IMAGE_TYPE_SYSTEM, IMAGE_TYPE_MUST_CHECK. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uber
Bundle String - Status to check if the image is an uber bundle. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Uuid of the image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
Outputs
All input properties are implicitly available as output properties. Additionally, the Image resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing Image Resource
Get an existing Image 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?: ImageState, opts?: CustomResourceOptions): Image
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cloud_info_values: Optional[Sequence[ImageCloudInfoValueArgs]] = None,
controller_infos: Optional[Sequence[ImageControllerInfoArgs]] = None,
controller_patch_name: Optional[str] = None,
controller_patch_ref: Optional[str] = None,
duration: Optional[str] = None,
end_time: Optional[str] = None,
events: Optional[Sequence[ImageEventArgs]] = None,
fips_mode_transition_applicable: Optional[str] = None,
image_id: Optional[str] = None,
img_states: Optional[Sequence[ImageImgStateArgs]] = None,
migrations: Optional[Sequence[ImageMigrationArgs]] = None,
name: Optional[str] = None,
progress: Optional[str] = None,
se_infos: Optional[Sequence[ImageSeInfoArgs]] = None,
se_patch_name: Optional[str] = None,
se_patch_ref: Optional[str] = None,
start_time: Optional[str] = None,
tasks_completed: Optional[str] = None,
tenant_ref: Optional[str] = None,
total_tasks: Optional[str] = None,
type: Optional[str] = None,
uber_bundle: Optional[str] = None,
uuid: Optional[str] = None) -> Image
func GetImage(ctx *Context, name string, id IDInput, state *ImageState, opts ...ResourceOption) (*Image, error)
public static Image Get(string name, Input<string> id, ImageState? state, CustomResourceOptions? opts = null)
public static Image get(String name, Output<String> id, ImageState state, CustomResourceOptions options)
resources: _: type: avi:Image 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.
- Cloud
Info List<ImageValues Cloud Info Value> - This field describes the cloud info specific to the base image. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Controller
Infos List<ImageController Info> - Controller package details. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Controller
Patch stringName - Mandatory controller patch name that is applied along with this base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Controller
Patch stringRef - It references the controller-patch associated with the uber image. It is a reference to an object of type image. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Duration string
- Time taken to upload the image in seconds. Field introduced in 21.1.3. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
- End
Time string - Image upload end time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Events
List<Image
Event> - Image events for image upload operation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Fips
Mode stringTransition Applicable - Specifies whether fips mode can be enabled on this image. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Image
Id string - Img
States List<ImageImg State> - Status of the image. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Migrations
List<Image
Migration> - This field describes the api migration related information. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Name of the image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Progress string
- Image upload progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 21.1.3. Unit is percent. Allowed with any value in enterprise, enterprise with cloud services edition.
- Se
Infos List<ImageSe Info> - Se package details. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Se
Patch stringName - Mandatory serviceengine patch name that is applied along with this base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Se
Patch stringRef - It references the service engine patch associated with the uber image. It is a reference to an object of type image. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Start
Time string - Image upload start time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Tasks
Completed string - Completed set of tasks for image upload. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Tenant
Ref string - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Total
Tasks string - Total number of tasks for image upload. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Type string
- Type of the image patch/system. Enum options - IMAGE_TYPE_PATCH, IMAGE_TYPE_SYSTEM, IMAGE_TYPE_MUST_CHECK. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uber
Bundle string - Status to check if the image is an uber bundle. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Uuid of the image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Cloud
Info []ImageValues Cloud Info Value Args - This field describes the cloud info specific to the base image. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Controller
Infos []ImageController Info Args - Controller package details. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Controller
Patch stringName - Mandatory controller patch name that is applied along with this base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Controller
Patch stringRef - It references the controller-patch associated with the uber image. It is a reference to an object of type image. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Duration string
- Time taken to upload the image in seconds. Field introduced in 21.1.3. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
- End
Time string - Image upload end time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Events
[]Image
Event Args - Image events for image upload operation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Fips
Mode stringTransition Applicable - Specifies whether fips mode can be enabled on this image. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Image
Id string - Img
States []ImageImg State Args - Status of the image. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Migrations
[]Image
Migration Args - This field describes the api migration related information. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Name of the image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Progress string
- Image upload progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 21.1.3. Unit is percent. Allowed with any value in enterprise, enterprise with cloud services edition.
- Se
Infos []ImageSe Info Args - Se package details. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Se
Patch stringName - Mandatory serviceengine patch name that is applied along with this base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Se
Patch stringRef - It references the service engine patch associated with the uber image. It is a reference to an object of type image. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Start
Time string - Image upload start time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Tasks
Completed string - Completed set of tasks for image upload. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Tenant
Ref string - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Total
Tasks string - Total number of tasks for image upload. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Type string
- Type of the image patch/system. Enum options - IMAGE_TYPE_PATCH, IMAGE_TYPE_SYSTEM, IMAGE_TYPE_MUST_CHECK. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uber
Bundle string - Status to check if the image is an uber bundle. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Uuid of the image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- cloud
Info List<ImageValues Cloud Info Value> - This field describes the cloud info specific to the base image. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- controller
Infos List<ImageController Info> - Controller package details. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- controller
Patch StringName - Mandatory controller patch name that is applied along with this base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- controller
Patch StringRef - It references the controller-patch associated with the uber image. It is a reference to an object of type image. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- duration String
- Time taken to upload the image in seconds. Field introduced in 21.1.3. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
- end
Time String - Image upload end time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- events
List<Image
Event> - Image events for image upload operation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- fips
Mode StringTransition Applicable - Specifies whether fips mode can be enabled on this image. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- image
Id String - img
States List<ImageImg State> - Status of the image. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- migrations
List<Image
Migration> - This field describes the api migration related information. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Name of the image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- progress String
- Image upload progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 21.1.3. Unit is percent. Allowed with any value in enterprise, enterprise with cloud services edition.
- se
Infos List<ImageSe Info> - Se package details. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- se
Patch StringName - Mandatory serviceengine patch name that is applied along with this base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- se
Patch StringRef - It references the service engine patch associated with the uber image. It is a reference to an object of type image. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- start
Time String - Image upload start time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- tasks
Completed String - Completed set of tasks for image upload. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant
Ref String - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- total
Tasks String - Total number of tasks for image upload. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- type String
- Type of the image patch/system. Enum options - IMAGE_TYPE_PATCH, IMAGE_TYPE_SYSTEM, IMAGE_TYPE_MUST_CHECK. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uber
Bundle String - Status to check if the image is an uber bundle. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Uuid of the image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- cloud
Info ImageValues Cloud Info Value[] - This field describes the cloud info specific to the base image. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- controller
Infos ImageController Info[] - Controller package details. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- controller
Patch stringName - Mandatory controller patch name that is applied along with this base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- controller
Patch stringRef - It references the controller-patch associated with the uber image. It is a reference to an object of type image. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- duration string
- Time taken to upload the image in seconds. Field introduced in 21.1.3. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
- end
Time string - Image upload end time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- events
Image
Event[] - Image events for image upload operation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- fips
Mode stringTransition Applicable - Specifies whether fips mode can be enabled on this image. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- image
Id string - img
States ImageImg State[] - Status of the image. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- migrations
Image
Migration[] - This field describes the api migration related information. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name string
- Name of the image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- progress string
- Image upload progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 21.1.3. Unit is percent. Allowed with any value in enterprise, enterprise with cloud services edition.
- se
Infos ImageSe Info[] - Se package details. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- se
Patch stringName - Mandatory serviceengine patch name that is applied along with this base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- se
Patch stringRef - It references the service engine patch associated with the uber image. It is a reference to an object of type image. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- start
Time string - Image upload start time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- tasks
Completed string - Completed set of tasks for image upload. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant
Ref string - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- total
Tasks string - Total number of tasks for image upload. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- type string
- Type of the image patch/system. Enum options - IMAGE_TYPE_PATCH, IMAGE_TYPE_SYSTEM, IMAGE_TYPE_MUST_CHECK. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uber
Bundle string - Status to check if the image is an uber bundle. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid string
- Uuid of the image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- cloud_
info_ Sequence[Imagevalues Cloud Info Value Args] - This field describes the cloud info specific to the base image. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- controller_
infos Sequence[ImageController Info Args] - Controller package details. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- controller_
patch_ strname - Mandatory controller patch name that is applied along with this base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- controller_
patch_ strref - It references the controller-patch associated with the uber image. It is a reference to an object of type image. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- duration str
- Time taken to upload the image in seconds. Field introduced in 21.1.3. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
- end_
time str - Image upload end time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- events
Sequence[Image
Event Args] - Image events for image upload operation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- fips_
mode_ strtransition_ applicable - Specifies whether fips mode can be enabled on this image. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- image_
id str - img_
states Sequence[ImageImg State Args] - Status of the image. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- migrations
Sequence[Image
Migration Args] - This field describes the api migration related information. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name str
- Name of the image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- progress str
- Image upload progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 21.1.3. Unit is percent. Allowed with any value in enterprise, enterprise with cloud services edition.
- se_
infos Sequence[ImageSe Info Args] - Se package details. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- se_
patch_ strname - Mandatory serviceengine patch name that is applied along with this base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- se_
patch_ strref - It references the service engine patch associated with the uber image. It is a reference to an object of type image. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- start_
time str - Image upload start time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- tasks_
completed str - Completed set of tasks for image upload. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant_
ref str - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- total_
tasks str - Total number of tasks for image upload. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- type str
- Type of the image patch/system. Enum options - IMAGE_TYPE_PATCH, IMAGE_TYPE_SYSTEM, IMAGE_TYPE_MUST_CHECK. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uber_
bundle str - Status to check if the image is an uber bundle. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid str
- Uuid of the image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- cloud
Info List<Property Map>Values - This field describes the cloud info specific to the base image. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- controller
Infos List<Property Map> - Controller package details. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- controller
Patch StringName - Mandatory controller patch name that is applied along with this base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- controller
Patch StringRef - It references the controller-patch associated with the uber image. It is a reference to an object of type image. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- duration String
- Time taken to upload the image in seconds. Field introduced in 21.1.3. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
- end
Time String - Image upload end time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- events List<Property Map>
- Image events for image upload operation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- fips
Mode StringTransition Applicable - Specifies whether fips mode can be enabled on this image. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- image
Id String - img
States List<Property Map> - Status of the image. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- migrations List<Property Map>
- This field describes the api migration related information. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Name of the image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- progress String
- Image upload progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 21.1.3. Unit is percent. Allowed with any value in enterprise, enterprise with cloud services edition.
- se
Infos List<Property Map> - Se package details. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- se
Patch StringName - Mandatory serviceengine patch name that is applied along with this base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- se
Patch StringRef - It references the service engine patch associated with the uber image. It is a reference to an object of type image. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- start
Time String - Image upload start time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- tasks
Completed String - Completed set of tasks for image upload. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant
Ref String - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- total
Tasks String - Total number of tasks for image upload. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- type String
- Type of the image patch/system. Enum options - IMAGE_TYPE_PATCH, IMAGE_TYPE_SYSTEM, IMAGE_TYPE_MUST_CHECK. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uber
Bundle String - Status to check if the image is an uber bundle. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Uuid of the image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
Supporting Types
ImageCloudInfoValue, ImageCloudInfoValueArgs
ImageCloudInfoValueCloudDataValue, ImageCloudInfoValueCloudDataValueArgs
ImageControllerInfo, ImageControllerInfoArgs
- builds List<Property Map>
- hash String
- patches List<Property Map>
- path String
ImageControllerInfoBuild, ImageControllerInfoBuildArgs
- Build
No string - Date string
- Min
Version string - Patch
Version string - Product string
- Product
Name string - Tag string
- Version string
- Build
No string - Date string
- Min
Version string - Patch
Version string - Product string
- Product
Name string - Tag string
- Version string
- build
No String - date String
- min
Version String - patch
Version String - product String
- product
Name String - tag String
- version String
- build
No string - date string
- min
Version string - patch
Version string - product string
- product
Name string - tag string
- version string
- build_
no str - date str
- min_
version str - patch_
version str - product str
- product_
name str - tag str
- version str
- build
No String - date String
- min
Version String - patch
Version String - product String
- product
Name String - tag String
- version String
ImageControllerInfoPatch, ImageControllerInfoPatchArgs
- patch
Type String - reboot String
- reboot
Lists List<Property Map>
ImageControllerInfoPatchRebootList, ImageControllerInfoPatchRebootListArgs
- Patch
Version string - Reboot string
- Patch
Version string - Reboot string
- patch
Version String - reboot String
- patch
Version string - reboot string
- patch_
version str - reboot str
- patch
Version String - reboot String
ImageEvent, ImageEventArgs
ImageEventNodesEvent, ImageEventNodesEventArgs
- Duration string
- Time taken to upload the image in seconds. Field introduced in 21.1.3. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
- End
Time string - Image upload end time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Ips
List<Image
Event Nodes Event Ip> - Message string
- Start
Time string - Image upload start time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Status string
- Sub
Tasks List<string>
- Duration string
- Time taken to upload the image in seconds. Field introduced in 21.1.3. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
- End
Time string - Image upload end time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Ips
[]Image
Event Nodes Event Ip - Message string
- Start
Time string - Image upload start time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Status string
- Sub
Tasks []string
- duration String
- Time taken to upload the image in seconds. Field introduced in 21.1.3. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
- end
Time String - Image upload end time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- ips
List<Image
Event Nodes Event Ip> - message String
- start
Time String - Image upload start time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- status String
- sub
Tasks List<String>
- duration string
- Time taken to upload the image in seconds. Field introduced in 21.1.3. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
- end
Time string - Image upload end time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- ips
Image
Event Nodes Event Ip[] - message string
- start
Time string - Image upload start time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- status string
- sub
Tasks string[]
- duration str
- Time taken to upload the image in seconds. Field introduced in 21.1.3. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
- end_
time str - Image upload end time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- ips
Sequence[Image
Event Nodes Event Ip] - message str
- start_
time str - Image upload start time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- status str
- sub_
tasks Sequence[str]
- duration String
- Time taken to upload the image in seconds. Field introduced in 21.1.3. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
- end
Time String - Image upload end time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- ips List<Property Map>
- message String
- start
Time String - Image upload start time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- status String
- sub
Tasks List<String>
ImageEventNodesEventIp, ImageEventNodesEventIpArgs
ImageEventSubEvent, ImageEventSubEventArgs
- Duration string
- Time taken to upload the image in seconds. Field introduced in 21.1.3. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
- End
Time string - Image upload end time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Ips
List<Image
Event Sub Event Ip> - Message string
- Start
Time string - Image upload start time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Status string
- Sub
Tasks List<string>
- Duration string
- Time taken to upload the image in seconds. Field introduced in 21.1.3. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
- End
Time string - Image upload end time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Ips
[]Image
Event Sub Event Ip - Message string
- Start
Time string - Image upload start time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Status string
- Sub
Tasks []string
- duration String
- Time taken to upload the image in seconds. Field introduced in 21.1.3. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
- end
Time String - Image upload end time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- ips
List<Image
Event Sub Event Ip> - message String
- start
Time String - Image upload start time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- status String
- sub
Tasks List<String>
- duration string
- Time taken to upload the image in seconds. Field introduced in 21.1.3. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
- end
Time string - Image upload end time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- ips
Image
Event Sub Event Ip[] - message string
- start
Time string - Image upload start time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- status string
- sub
Tasks string[]
- duration str
- Time taken to upload the image in seconds. Field introduced in 21.1.3. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
- end_
time str - Image upload end time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- ips
Sequence[Image
Event Sub Event Ip] - message str
- start_
time str - Image upload start time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- status str
- sub_
tasks Sequence[str]
- duration String
- Time taken to upload the image in seconds. Field introduced in 21.1.3. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
- end
Time String - Image upload end time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- ips List<Property Map>
- message String
- start
Time String - Image upload start time. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- status String
- sub
Tasks List<String>
ImageEventSubEventIp, ImageEventSubEventIpArgs
ImageImgState, ImageImgStateArgs
- Last
Changed []ImageTimes Img State Last Changed Time - Reason string
- State string
- last
Changed ImageTimes Img State Last Changed Time[] - reason string
- state string
- last
Changed List<Property Map>Times - reason String
- state String
ImageImgStateLastChangedTime, ImageImgStateLastChangedTimeArgs
ImageMigration, ImageMigrationArgs
- Api
Version string - Controller
Host stringMin Free Disk Size - Controller
Min stringCores - Controller
Min stringDocker Version - Controller
Min stringFree Disk Size - Controller
Min stringMemory - Controller
Min stringTotal Disk - Dryrun
Min stringCores - Dryrun
Min stringFree Disk Size - Dryrun
Min stringMemory - Max
Active stringVersions - Min
Supported stringApi Version - Podman
Controller stringHost Min Free Disk Size - Podman
Se stringHost Min Free Disk Size - Rollback
Controller stringDisk Space - Rollback
Se stringDisk Space - Se
Host stringMin Free Disk Size - Se
Min stringCores - Se
Min stringFree Disk Size - Se
Min stringMemory - Se
Min stringTotal Disk - Versions List<string>
- Api
Version string - Controller
Host stringMin Free Disk Size - Controller
Min stringCores - Controller
Min stringDocker Version - Controller
Min stringFree Disk Size - Controller
Min stringMemory - Controller
Min stringTotal Disk - Dryrun
Min stringCores - Dryrun
Min stringFree Disk Size - Dryrun
Min stringMemory - Max
Active stringVersions - Min
Supported stringApi Version - Podman
Controller stringHost Min Free Disk Size - Podman
Se stringHost Min Free Disk Size - Rollback
Controller stringDisk Space - Rollback
Se stringDisk Space - Se
Host stringMin Free Disk Size - Se
Min stringCores - Se
Min stringFree Disk Size - Se
Min stringMemory - Se
Min stringTotal Disk - Versions []string
- api
Version String - controller
Host StringMin Free Disk Size - controller
Min StringCores - controller
Min StringDocker Version - controller
Min StringFree Disk Size - controller
Min StringMemory - controller
Min StringTotal Disk - dryrun
Min StringCores - dryrun
Min StringFree Disk Size - dryrun
Min StringMemory - max
Active StringVersions - min
Supported StringApi Version - podman
Controller StringHost Min Free Disk Size - podman
Se StringHost Min Free Disk Size - rollback
Controller StringDisk Space - rollback
Se StringDisk Space - se
Host StringMin Free Disk Size - se
Min StringCores - se
Min StringFree Disk Size - se
Min StringMemory - se
Min StringTotal Disk - versions List<String>
- api
Version string - controller
Host stringMin Free Disk Size - controller
Min stringCores - controller
Min stringDocker Version - controller
Min stringFree Disk Size - controller
Min stringMemory - controller
Min stringTotal Disk - dryrun
Min stringCores - dryrun
Min stringFree Disk Size - dryrun
Min stringMemory - max
Active stringVersions - min
Supported stringApi Version - podman
Controller stringHost Min Free Disk Size - podman
Se stringHost Min Free Disk Size - rollback
Controller stringDisk Space - rollback
Se stringDisk Space - se
Host stringMin Free Disk Size - se
Min stringCores - se
Min stringFree Disk Size - se
Min stringMemory - se
Min stringTotal Disk - versions string[]
- api_
version str - controller_
host_ strmin_ free_ disk_ size - controller_
min_ strcores - controller_
min_ strdocker_ version - controller_
min_ strfree_ disk_ size - controller_
min_ strmemory - controller_
min_ strtotal_ disk - dryrun_
min_ strcores - dryrun_
min_ strfree_ disk_ size - dryrun_
min_ strmemory - max_
active_ strversions - min_
supported_ strapi_ version - podman_
controller_ strhost_ min_ free_ disk_ size - podman_
se_ strhost_ min_ free_ disk_ size - rollback_
controller_ strdisk_ space - rollback_
se_ strdisk_ space - se_
host_ strmin_ free_ disk_ size - se_
min_ strcores - se_
min_ strfree_ disk_ size - se_
min_ strmemory - se_
min_ strtotal_ disk - versions Sequence[str]
- api
Version String - controller
Host StringMin Free Disk Size - controller
Min StringCores - controller
Min StringDocker Version - controller
Min StringFree Disk Size - controller
Min StringMemory - controller
Min StringTotal Disk - dryrun
Min StringCores - dryrun
Min StringFree Disk Size - dryrun
Min StringMemory - max
Active StringVersions - min
Supported StringApi Version - podman
Controller StringHost Min Free Disk Size - podman
Se StringHost Min Free Disk Size - rollback
Controller StringDisk Space - rollback
Se StringDisk Space - se
Host StringMin Free Disk Size - se
Min StringCores - se
Min StringFree Disk Size - se
Min StringMemory - se
Min StringTotal Disk - versions List<String>
ImageSeInfo, ImageSeInfoArgs
- Builds
[]Image
Se Info Build - Hash string
- Patches
[]Image
Se Info Patch - Path string
- builds
Image
Se Info Build[] - hash string
- patches
Image
Se Info Patch[] - path string
- builds List<Property Map>
- hash String
- patches List<Property Map>
- path String
ImageSeInfoBuild, ImageSeInfoBuildArgs
- Build
No string - Date string
- Min
Version string - Patch
Version string - Product string
- Product
Name string - Tag string
- Version string
- Build
No string - Date string
- Min
Version string - Patch
Version string - Product string
- Product
Name string - Tag string
- Version string
- build
No String - date String
- min
Version String - patch
Version String - product String
- product
Name String - tag String
- version String
- build
No string - date string
- min
Version string - patch
Version string - product string
- product
Name string - tag string
- version string
- build_
no str - date str
- min_
version str - patch_
version str - product str
- product_
name str - tag str
- version str
- build
No String - date String
- min
Version String - patch
Version String - product String
- product
Name String - tag String
- version String
ImageSeInfoPatch, ImageSeInfoPatchArgs
- Patch
Type string - Reboot string
- Reboot
Lists List<ImageSe Info Patch Reboot List>
- Patch
Type string - Reboot string
- Reboot
Lists []ImageSe Info Patch Reboot List
- patch
Type String - reboot String
- reboot
Lists List<ImageSe Info Patch Reboot List>
- patch
Type string - reboot string
- reboot
Lists ImageSe Info Patch Reboot List[]
- patch
Type String - reboot String
- reboot
Lists List<Property Map>
ImageSeInfoPatchRebootList, ImageSeInfoPatchRebootListArgs
- Patch
Version string - Reboot string
- Patch
Version string - Reboot string
- patch
Version String - reboot String
- patch
Version string - reboot string
- patch_
version str - reboot str
- patch
Version String - reboot String
Package Details
- Repository
- avi vmware/terraform-provider-avi
- License
- Notes
- This Pulumi package is based on the
avi
Terraform Provider.