nutanix.ImagesV2
Explore with Pulumi AI
Create ImagesV2 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ImagesV2(name: string, args: ImagesV2Args, opts?: CustomResourceOptions);
@overload
def ImagesV2(resource_name: str,
args: ImagesV2Args,
opts: Optional[ResourceOptions] = None)
@overload
def ImagesV2(resource_name: str,
opts: Optional[ResourceOptions] = None,
type: Optional[str] = None,
category_ext_ids: Optional[Sequence[str]] = None,
checksums: Optional[Sequence[ImagesV2ChecksumArgs]] = None,
cluster_location_ext_ids: Optional[Sequence[str]] = None,
description: Optional[str] = None,
name: Optional[str] = None,
sources: Optional[Sequence[ImagesV2SourceArgs]] = None)
func NewImagesV2(ctx *Context, name string, args ImagesV2Args, opts ...ResourceOption) (*ImagesV2, error)
public ImagesV2(string name, ImagesV2Args args, CustomResourceOptions? opts = null)
public ImagesV2(String name, ImagesV2Args args)
public ImagesV2(String name, ImagesV2Args args, CustomResourceOptions options)
type: nutanix:ImagesV2
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 ImagesV2Args
- 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 ImagesV2Args
- 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 ImagesV2Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ImagesV2Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ImagesV2Args
- 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 imagesV2Resource = new Nutanix.ImagesV2("imagesV2Resource", new()
{
Type = "string",
CategoryExtIds = new[]
{
"string",
},
Checksums = new[]
{
new Nutanix.Inputs.ImagesV2ChecksumArgs
{
HexDigest = "string",
ObjectType = "string",
},
},
ClusterLocationExtIds = new[]
{
"string",
},
Description = "string",
Name = "string",
Sources = new[]
{
new Nutanix.Inputs.ImagesV2SourceArgs
{
ObjectLiteSources = new[]
{
new Nutanix.Inputs.ImagesV2SourceObjectLiteSourceArgs
{
Key = "string",
},
},
UrlSources = new[]
{
new Nutanix.Inputs.ImagesV2SourceUrlSourceArgs
{
Url = "string",
BasicAuths = new[]
{
new Nutanix.Inputs.ImagesV2SourceUrlSourceBasicAuthArgs
{
Password = "string",
Username = "string",
},
},
ShouldAllowInsecureUrl = false,
},
},
VmDiskSources = new[]
{
new Nutanix.Inputs.ImagesV2SourceVmDiskSourceArgs
{
ExtId = "string",
},
},
},
},
});
example, err := nutanix.NewImagesV2(ctx, "imagesV2Resource", &nutanix.ImagesV2Args{
Type: pulumi.String("string"),
CategoryExtIds: pulumi.StringArray{
pulumi.String("string"),
},
Checksums: nutanix.ImagesV2ChecksumArray{
&nutanix.ImagesV2ChecksumArgs{
HexDigest: pulumi.String("string"),
ObjectType: pulumi.String("string"),
},
},
ClusterLocationExtIds: pulumi.StringArray{
pulumi.String("string"),
},
Description: pulumi.String("string"),
Name: pulumi.String("string"),
Sources: nutanix.ImagesV2SourceArray{
&nutanix.ImagesV2SourceArgs{
ObjectLiteSources: nutanix.ImagesV2SourceObjectLiteSourceArray{
&nutanix.ImagesV2SourceObjectLiteSourceArgs{
Key: pulumi.String("string"),
},
},
UrlSources: nutanix.ImagesV2SourceUrlSourceArray{
&nutanix.ImagesV2SourceUrlSourceArgs{
Url: pulumi.String("string"),
BasicAuths: nutanix.ImagesV2SourceUrlSourceBasicAuthArray{
&nutanix.ImagesV2SourceUrlSourceBasicAuthArgs{
Password: pulumi.String("string"),
Username: pulumi.String("string"),
},
},
ShouldAllowInsecureUrl: pulumi.Bool(false),
},
},
VmDiskSources: nutanix.ImagesV2SourceVmDiskSourceArray{
&nutanix.ImagesV2SourceVmDiskSourceArgs{
ExtId: pulumi.String("string"),
},
},
},
},
})
var imagesV2Resource = new ImagesV2("imagesV2Resource", ImagesV2Args.builder()
.type("string")
.categoryExtIds("string")
.checksums(ImagesV2ChecksumArgs.builder()
.hexDigest("string")
.objectType("string")
.build())
.clusterLocationExtIds("string")
.description("string")
.name("string")
.sources(ImagesV2SourceArgs.builder()
.objectLiteSources(ImagesV2SourceObjectLiteSourceArgs.builder()
.key("string")
.build())
.urlSources(ImagesV2SourceUrlSourceArgs.builder()
.url("string")
.basicAuths(ImagesV2SourceUrlSourceBasicAuthArgs.builder()
.password("string")
.username("string")
.build())
.shouldAllowInsecureUrl(false)
.build())
.vmDiskSources(ImagesV2SourceVmDiskSourceArgs.builder()
.extId("string")
.build())
.build())
.build());
images_v2_resource = nutanix.ImagesV2("imagesV2Resource",
type="string",
category_ext_ids=["string"],
checksums=[{
"hex_digest": "string",
"object_type": "string",
}],
cluster_location_ext_ids=["string"],
description="string",
name="string",
sources=[{
"object_lite_sources": [{
"key": "string",
}],
"url_sources": [{
"url": "string",
"basic_auths": [{
"password": "string",
"username": "string",
}],
"should_allow_insecure_url": False,
}],
"vm_disk_sources": [{
"ext_id": "string",
}],
}])
const imagesV2Resource = new nutanix.ImagesV2("imagesV2Resource", {
type: "string",
categoryExtIds: ["string"],
checksums: [{
hexDigest: "string",
objectType: "string",
}],
clusterLocationExtIds: ["string"],
description: "string",
name: "string",
sources: [{
objectLiteSources: [{
key: "string",
}],
urlSources: [{
url: "string",
basicAuths: [{
password: "string",
username: "string",
}],
shouldAllowInsecureUrl: false,
}],
vmDiskSources: [{
extId: "string",
}],
}],
});
type: nutanix:ImagesV2
properties:
categoryExtIds:
- string
checksums:
- hexDigest: string
objectType: string
clusterLocationExtIds:
- string
description: string
name: string
sources:
- objectLiteSources:
- key: string
urlSources:
- basicAuths:
- password: string
username: string
shouldAllowInsecureUrl: false
url: string
vmDiskSources:
- extId: string
type: string
ImagesV2 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 ImagesV2 resource accepts the following input properties:
- Type string
- Category
Ext List<string>Ids - Checksums
List<Piers
Karsenbarg. Nutanix. Inputs. Images V2Checksum> - Cluster
Location List<string>Ext Ids - Description string
- Name string
- Sources
List<Piers
Karsenbarg. Nutanix. Inputs. Images V2Source>
- Type string
- Category
Ext []stringIds - Checksums
[]Images
V2Checksum Args - Cluster
Location []stringExt Ids - Description string
- Name string
- Sources
[]Images
V2Source Args
- type String
- category
Ext List<String>Ids - checksums
List<Images
V2Checksum> - cluster
Location List<String>Ext Ids - description String
- name String
- sources
List<Images
V2Source>
- type string
- category
Ext string[]Ids - checksums
Images
V2Checksum[] - cluster
Location string[]Ext Ids - description string
- name string
- sources
Images
V2Source[]
- type str
- category_
ext_ Sequence[str]ids - checksums
Sequence[Images
V2Checksum Args] - cluster_
location_ Sequence[str]ext_ ids - description str
- name str
- sources
Sequence[Images
V2Source Args]
- type String
- category
Ext List<String>Ids - checksums List<Property Map>
- cluster
Location List<String>Ext Ids - description String
- name String
- sources List<Property Map>
Outputs
All input properties are implicitly available as output properties. Additionally, the ImagesV2 resource produces the following output properties:
- Create
Time string - Id string
- The provider-assigned unique ID for this managed resource.
- Last
Update stringTime - Owner
Ext stringId - Placement
Policy List<PiersStatuses Karsenbarg. Nutanix. Outputs. Images V2Placement Policy Status> - Size
Bytes int
- Create
Time string - Id string
- The provider-assigned unique ID for this managed resource.
- Last
Update stringTime - Owner
Ext stringId - Placement
Policy []ImagesStatuses V2Placement Policy Status - Size
Bytes int
- create
Time String - id String
- The provider-assigned unique ID for this managed resource.
- last
Update StringTime - owner
Ext StringId - placement
Policy List<ImagesStatuses V2Placement Policy Status> - size
Bytes Integer
- create
Time string - id string
- The provider-assigned unique ID for this managed resource.
- last
Update stringTime - owner
Ext stringId - placement
Policy ImagesStatuses V2Placement Policy Status[] - size
Bytes number
- create_
time str - id str
- The provider-assigned unique ID for this managed resource.
- last_
update_ strtime - owner_
ext_ strid - placement_
policy_ Sequence[Imagesstatuses V2Placement Policy Status] - size_
bytes int
- create
Time String - id String
- The provider-assigned unique ID for this managed resource.
- last
Update StringTime - owner
Ext StringId - placement
Policy List<Property Map>Statuses - size
Bytes Number
Look up Existing ImagesV2 Resource
Get an existing ImagesV2 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?: ImagesV2State, opts?: CustomResourceOptions): ImagesV2
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
category_ext_ids: Optional[Sequence[str]] = None,
checksums: Optional[Sequence[ImagesV2ChecksumArgs]] = None,
cluster_location_ext_ids: Optional[Sequence[str]] = None,
create_time: Optional[str] = None,
description: Optional[str] = None,
last_update_time: Optional[str] = None,
name: Optional[str] = None,
owner_ext_id: Optional[str] = None,
placement_policy_statuses: Optional[Sequence[ImagesV2PlacementPolicyStatusArgs]] = None,
size_bytes: Optional[int] = None,
sources: Optional[Sequence[ImagesV2SourceArgs]] = None,
type: Optional[str] = None) -> ImagesV2
func GetImagesV2(ctx *Context, name string, id IDInput, state *ImagesV2State, opts ...ResourceOption) (*ImagesV2, error)
public static ImagesV2 Get(string name, Input<string> id, ImagesV2State? state, CustomResourceOptions? opts = null)
public static ImagesV2 get(String name, Output<String> id, ImagesV2State state, CustomResourceOptions options)
resources: _: type: nutanix:ImagesV2 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.
- Category
Ext List<string>Ids - Checksums
List<Piers
Karsenbarg. Nutanix. Inputs. Images V2Checksum> - Cluster
Location List<string>Ext Ids - Create
Time string - Description string
- Last
Update stringTime - Name string
- Owner
Ext stringId - Placement
Policy List<PiersStatuses Karsenbarg. Nutanix. Inputs. Images V2Placement Policy Status> - Size
Bytes int - Sources
List<Piers
Karsenbarg. Nutanix. Inputs. Images V2Source> - Type string
- Category
Ext []stringIds - Checksums
[]Images
V2Checksum Args - Cluster
Location []stringExt Ids - Create
Time string - Description string
- Last
Update stringTime - Name string
- Owner
Ext stringId - Placement
Policy []ImagesStatuses V2Placement Policy Status Args - Size
Bytes int - Sources
[]Images
V2Source Args - Type string
- category
Ext List<String>Ids - checksums
List<Images
V2Checksum> - cluster
Location List<String>Ext Ids - create
Time String - description String
- last
Update StringTime - name String
- owner
Ext StringId - placement
Policy List<ImagesStatuses V2Placement Policy Status> - size
Bytes Integer - sources
List<Images
V2Source> - type String
- category
Ext string[]Ids - checksums
Images
V2Checksum[] - cluster
Location string[]Ext Ids - create
Time string - description string
- last
Update stringTime - name string
- owner
Ext stringId - placement
Policy ImagesStatuses V2Placement Policy Status[] - size
Bytes number - sources
Images
V2Source[] - type string
- category_
ext_ Sequence[str]ids - checksums
Sequence[Images
V2Checksum Args] - cluster_
location_ Sequence[str]ext_ ids - create_
time str - description str
- last_
update_ strtime - name str
- owner_
ext_ strid - placement_
policy_ Sequence[Imagesstatuses V2Placement Policy Status Args] - size_
bytes int - sources
Sequence[Images
V2Source Args] - type str
- category
Ext List<String>Ids - checksums List<Property Map>
- cluster
Location List<String>Ext Ids - create
Time String - description String
- last
Update StringTime - name String
- owner
Ext StringId - placement
Policy List<Property Map>Statuses - size
Bytes Number - sources List<Property Map>
- type String
Supporting Types
ImagesV2Checksum, ImagesV2ChecksumArgs
- Hex
Digest string - Object
Type string
- Hex
Digest string - Object
Type string
- hex
Digest String - object
Type String
- hex
Digest string - object
Type string
- hex_
digest str - object_
type str
- hex
Digest String - object
Type String
ImagesV2PlacementPolicyStatus, ImagesV2PlacementPolicyStatusArgs
- Compliance
Status string - Conflicting
Policy List<string>Ext Ids - Enforced
Cluster List<string>Ext Ids - Enforcement
Mode string - Placement
Policy stringExt Id - Policy
Cluster List<string>Ext Ids
- Compliance
Status string - Conflicting
Policy []stringExt Ids - Enforced
Cluster []stringExt Ids - Enforcement
Mode string - Placement
Policy stringExt Id - Policy
Cluster []stringExt Ids
- compliance
Status String - conflicting
Policy List<String>Ext Ids - enforced
Cluster List<String>Ext Ids - enforcement
Mode String - placement
Policy StringExt Id - policy
Cluster List<String>Ext Ids
- compliance
Status string - conflicting
Policy string[]Ext Ids - enforced
Cluster string[]Ext Ids - enforcement
Mode string - placement
Policy stringExt Id - policy
Cluster string[]Ext Ids
- compliance_
status str - conflicting_
policy_ Sequence[str]ext_ ids - enforced_
cluster_ Sequence[str]ext_ ids - enforcement_
mode str - placement_
policy_ strext_ id - policy_
cluster_ Sequence[str]ext_ ids
- compliance
Status String - conflicting
Policy List<String>Ext Ids - enforced
Cluster List<String>Ext Ids - enforcement
Mode String - placement
Policy StringExt Id - policy
Cluster List<String>Ext Ids
ImagesV2Source, ImagesV2SourceArgs
ImagesV2SourceObjectLiteSource, ImagesV2SourceObjectLiteSourceArgs
- Key string
- Key string
- key String
- key string
- key str
- key String
ImagesV2SourceUrlSource, ImagesV2SourceUrlSourceArgs
- url String
- basic
Auths List<Property Map> - should
Allow BooleanInsecure Url
ImagesV2SourceUrlSourceBasicAuth, ImagesV2SourceUrlSourceBasicAuthArgs
ImagesV2SourceVmDiskSource, ImagesV2SourceVmDiskSourceArgs
- Ext
Id string
- Ext
Id string
- ext
Id String
- ext
Id string
- ext_
id str
- ext
Id String
Package Details
- Repository
- nutanix pierskarsenbarg/pulumi-nutanix
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
nutanix
Terraform Provider.