nutanix.NdbSoftwareVersionProfile
Explore with Pulumi AI
Provides a resource to create software profile versions based on the input parameters.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as nutanix from "@pierskarsenbarg/nutanix";
const name = new nutanix.NdbSoftwareVersionProfile("name", {
engineType: "postgres_database",
profileId: resource.nutanix_ndb_profile.name12.id,
description: "made by tf",
postgresDatabases: [{
sourceDbserverId: "{{ DB_Server_ID }}",
}],
availableClusterIds: ["{{ cluster_ids }}"],
status: "published",
});
import pulumi
import pulumi_nutanix as nutanix
name = nutanix.NdbSoftwareVersionProfile("name",
engine_type="postgres_database",
profile_id=resource["nutanix_ndb_profile"]["name12"]["id"],
description="made by tf",
postgres_databases=[{
"source_dbserver_id": "{{ DB_Server_ID }}",
}],
available_cluster_ids=["{{ cluster_ids }}"],
status="published")
package main
import (
"github.com/pierskarsenbarg/pulumi-nutanix/sdk/go/nutanix"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := nutanix.NewNdbSoftwareVersionProfile(ctx, "name", &nutanix.NdbSoftwareVersionProfileArgs{
EngineType: pulumi.String("postgres_database"),
ProfileId: pulumi.Any(resource.Nutanix_ndb_profile.Name12.Id),
Description: pulumi.String("made by tf"),
PostgresDatabases: nutanix.NdbSoftwareVersionProfilePostgresDatabaseArray{
&nutanix.NdbSoftwareVersionProfilePostgresDatabaseArgs{
SourceDbserverId: pulumi.String("{{ DB_Server_ID }}"),
},
},
AvailableClusterIds: pulumi.StringArray{
pulumi.String("{{ cluster_ids }}"),
},
Status: pulumi.String("published"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Nutanix = PiersKarsenbarg.Nutanix;
return await Deployment.RunAsync(() =>
{
var name = new Nutanix.NdbSoftwareVersionProfile("name", new()
{
EngineType = "postgres_database",
ProfileId = resource.Nutanix_ndb_profile.Name12.Id,
Description = "made by tf",
PostgresDatabases = new[]
{
new Nutanix.Inputs.NdbSoftwareVersionProfilePostgresDatabaseArgs
{
SourceDbserverId = "{{ DB_Server_ID }}",
},
},
AvailableClusterIds = new[]
{
"{{ cluster_ids }}",
},
Status = "published",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.nutanix.NdbSoftwareVersionProfile;
import com.pulumi.nutanix.NdbSoftwareVersionProfileArgs;
import com.pulumi.nutanix.inputs.NdbSoftwareVersionProfilePostgresDatabaseArgs;
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 name = new NdbSoftwareVersionProfile("name", NdbSoftwareVersionProfileArgs.builder()
.engineType("postgres_database")
.profileId(resource.nutanix_ndb_profile().name12().id())
.description("made by tf")
.postgresDatabases(NdbSoftwareVersionProfilePostgresDatabaseArgs.builder()
.sourceDbserverId("{{ DB_Server_ID }}")
.build())
.availableClusterIds("{{ cluster_ids }}")
.status("published")
.build());
}
}
resources:
name:
type: nutanix:NdbSoftwareVersionProfile
properties:
engineType: postgres_database
profileId: ${resource.nutanix_ndb_profile.name12.id}
description: made by tf
postgresDatabases:
- sourceDbserverId: '{{ DB_Server_ID }}'
availableClusterIds:
- '{{ cluster_ids }}'
status: published
Create NdbSoftwareVersionProfile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NdbSoftwareVersionProfile(name: string, args: NdbSoftwareVersionProfileArgs, opts?: CustomResourceOptions);
@overload
def NdbSoftwareVersionProfile(resource_name: str,
args: NdbSoftwareVersionProfileArgs,
opts: Optional[ResourceOptions] = None)
@overload
def NdbSoftwareVersionProfile(resource_name: str,
opts: Optional[ResourceOptions] = None,
engine_type: Optional[str] = None,
profile_id: Optional[str] = None,
available_cluster_ids: Optional[Sequence[str]] = None,
description: Optional[str] = None,
name: Optional[str] = None,
postgres_databases: Optional[Sequence[NdbSoftwareVersionProfilePostgresDatabaseArgs]] = None,
status: Optional[str] = None)
func NewNdbSoftwareVersionProfile(ctx *Context, name string, args NdbSoftwareVersionProfileArgs, opts ...ResourceOption) (*NdbSoftwareVersionProfile, error)
public NdbSoftwareVersionProfile(string name, NdbSoftwareVersionProfileArgs args, CustomResourceOptions? opts = null)
public NdbSoftwareVersionProfile(String name, NdbSoftwareVersionProfileArgs args)
public NdbSoftwareVersionProfile(String name, NdbSoftwareVersionProfileArgs args, CustomResourceOptions options)
type: nutanix:NdbSoftwareVersionProfile
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 NdbSoftwareVersionProfileArgs
- 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 NdbSoftwareVersionProfileArgs
- 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 NdbSoftwareVersionProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NdbSoftwareVersionProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NdbSoftwareVersionProfileArgs
- 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 ndbSoftwareVersionProfileResource = new Nutanix.NdbSoftwareVersionProfile("ndbSoftwareVersionProfileResource", new()
{
EngineType = "string",
ProfileId = "string",
AvailableClusterIds = new[]
{
"string",
},
Description = "string",
Name = "string",
PostgresDatabases = new[]
{
new Nutanix.Inputs.NdbSoftwareVersionProfilePostgresDatabaseArgs
{
DbSoftwareNotes = "string",
OsNotes = "string",
SourceDbserverId = "string",
},
},
Status = "string",
});
example, err := nutanix.NewNdbSoftwareVersionProfile(ctx, "ndbSoftwareVersionProfileResource", &nutanix.NdbSoftwareVersionProfileArgs{
EngineType: pulumi.String("string"),
ProfileId: pulumi.String("string"),
AvailableClusterIds: pulumi.StringArray{
pulumi.String("string"),
},
Description: pulumi.String("string"),
Name: pulumi.String("string"),
PostgresDatabases: nutanix.NdbSoftwareVersionProfilePostgresDatabaseArray{
&nutanix.NdbSoftwareVersionProfilePostgresDatabaseArgs{
DbSoftwareNotes: pulumi.String("string"),
OsNotes: pulumi.String("string"),
SourceDbserverId: pulumi.String("string"),
},
},
Status: pulumi.String("string"),
})
var ndbSoftwareVersionProfileResource = new NdbSoftwareVersionProfile("ndbSoftwareVersionProfileResource", NdbSoftwareVersionProfileArgs.builder()
.engineType("string")
.profileId("string")
.availableClusterIds("string")
.description("string")
.name("string")
.postgresDatabases(NdbSoftwareVersionProfilePostgresDatabaseArgs.builder()
.dbSoftwareNotes("string")
.osNotes("string")
.sourceDbserverId("string")
.build())
.status("string")
.build());
ndb_software_version_profile_resource = nutanix.NdbSoftwareVersionProfile("ndbSoftwareVersionProfileResource",
engine_type="string",
profile_id="string",
available_cluster_ids=["string"],
description="string",
name="string",
postgres_databases=[nutanix.NdbSoftwareVersionProfilePostgresDatabaseArgs(
db_software_notes="string",
os_notes="string",
source_dbserver_id="string",
)],
status="string")
const ndbSoftwareVersionProfileResource = new nutanix.NdbSoftwareVersionProfile("ndbSoftwareVersionProfileResource", {
engineType: "string",
profileId: "string",
availableClusterIds: ["string"],
description: "string",
name: "string",
postgresDatabases: [{
dbSoftwareNotes: "string",
osNotes: "string",
sourceDbserverId: "string",
}],
status: "string",
});
type: nutanix:NdbSoftwareVersionProfile
properties:
availableClusterIds:
- string
description: string
engineType: string
name: string
postgresDatabases:
- dbSoftwareNotes: string
osNotes: string
sourceDbserverId: string
profileId: string
status: string
NdbSoftwareVersionProfile Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The NdbSoftwareVersionProfile resource accepts the following input properties:
- Engine
Type string - engine type of profile
- Profile
Id string - profile id
- Available
Cluster List<string>Ids - available cluster ids
- Description string
- description of profile
- Name string
- Name of profile
- Postgres
Databases List<PiersKarsenbarg. Nutanix. Inputs. Ndb Software Version Profile Postgres Database> - postgres database info
- Status string
- status of profile. Allowed Values are "deprecated", "published", "unpublished"
- Engine
Type string - engine type of profile
- Profile
Id string - profile id
- Available
Cluster []stringIds - available cluster ids
- Description string
- description of profile
- Name string
- Name of profile
- Postgres
Databases []NdbSoftware Version Profile Postgres Database Args - postgres database info
- Status string
- status of profile. Allowed Values are "deprecated", "published", "unpublished"
- engine
Type String - engine type of profile
- profile
Id String - profile id
- available
Cluster List<String>Ids - available cluster ids
- description String
- description of profile
- name String
- Name of profile
- postgres
Databases List<NdbSoftware Version Profile Postgres Database> - postgres database info
- status String
- status of profile. Allowed Values are "deprecated", "published", "unpublished"
- engine
Type string - engine type of profile
- profile
Id string - profile id
- available
Cluster string[]Ids - available cluster ids
- description string
- description of profile
- name string
- Name of profile
- postgres
Databases NdbSoftware Version Profile Postgres Database[] - postgres database info
- status string
- status of profile. Allowed Values are "deprecated", "published", "unpublished"
- engine_
type str - engine type of profile
- profile_
id str - profile id
- available_
cluster_ Sequence[str]ids - available cluster ids
- description str
- description of profile
- name str
- Name of profile
- postgres_
databases Sequence[NdbSoftware Version Profile Postgres Database Args] - postgres database info
- status str
- status of profile. Allowed Values are "deprecated", "published", "unpublished"
- engine
Type String - engine type of profile
- profile
Id String - profile id
- available
Cluster List<String>Ids - available cluster ids
- description String
- description of profile
- name String
- Name of profile
- postgres
Databases List<Property Map> - postgres database info
- status String
- status of profile. Allowed Values are "deprecated", "published", "unpublished"
Outputs
All input properties are implicitly available as output properties. Additionally, the NdbSoftwareVersionProfile resource produces the following output properties:
- Db
Version string - Db version of software profile
- Deprecated bool
- deprecated or not
- Id string
- The provider-assigned unique ID for this managed resource.
- Owner string
- owner of profile
- Properties
List<Piers
Karsenbarg. Nutanix. Outputs. Ndb Software Version Profile Property> - properties of software profile
- Properties
Map Dictionary<string, string> - properties map of profile
- Published bool
- Published or not
- System
Profile bool - system profile or not.
- Topology string
- topology of software profile
- Version string
- Version of software profile
- Version
Cluster List<PiersAssociations Karsenbarg. Nutanix. Outputs. Ndb Software Version Profile Version Cluster Association> - version cluster association
- Db
Version string - Db version of software profile
- Deprecated bool
- deprecated or not
- Id string
- The provider-assigned unique ID for this managed resource.
- Owner string
- owner of profile
- Properties
[]Ndb
Software Version Profile Property - properties of software profile
- Properties
Map map[string]string - properties map of profile
- Published bool
- Published or not
- System
Profile bool - system profile or not.
- Topology string
- topology of software profile
- Version string
- Version of software profile
- Version
Cluster []NdbAssociations Software Version Profile Version Cluster Association - version cluster association
- db
Version String - Db version of software profile
- deprecated Boolean
- deprecated or not
- id String
- The provider-assigned unique ID for this managed resource.
- owner String
- owner of profile
- properties
List<Ndb
Software Version Profile Property> - properties of software profile
- properties
Map Map<String,String> - properties map of profile
- published Boolean
- Published or not
- system
Profile Boolean - system profile or not.
- topology String
- topology of software profile
- version String
- Version of software profile
- version
Cluster List<NdbAssociations Software Version Profile Version Cluster Association> - version cluster association
- db
Version string - Db version of software profile
- deprecated boolean
- deprecated or not
- id string
- The provider-assigned unique ID for this managed resource.
- owner string
- owner of profile
- properties
Ndb
Software Version Profile Property[] - properties of software profile
- properties
Map {[key: string]: string} - properties map of profile
- published boolean
- Published or not
- system
Profile boolean - system profile or not.
- topology string
- topology of software profile
- version string
- Version of software profile
- version
Cluster NdbAssociations Software Version Profile Version Cluster Association[] - version cluster association
- db_
version str - Db version of software profile
- deprecated bool
- deprecated or not
- id str
- The provider-assigned unique ID for this managed resource.
- owner str
- owner of profile
- properties
Sequence[Ndb
Software Version Profile Property] - properties of software profile
- properties_
map Mapping[str, str] - properties map of profile
- published bool
- Published or not
- system_
profile bool - system profile or not.
- topology str
- topology of software profile
- version str
- Version of software profile
- version_
cluster_ Sequence[Ndbassociations Software Version Profile Version Cluster Association] - version cluster association
- db
Version String - Db version of software profile
- deprecated Boolean
- deprecated or not
- id String
- The provider-assigned unique ID for this managed resource.
- owner String
- owner of profile
- properties List<Property Map>
- properties of software profile
- properties
Map Map<String> - properties map of profile
- published Boolean
- Published or not
- system
Profile Boolean - system profile or not.
- topology String
- topology of software profile
- version String
- Version of software profile
- version
Cluster List<Property Map>Associations - version cluster association
Look up Existing NdbSoftwareVersionProfile Resource
Get an existing NdbSoftwareVersionProfile 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?: NdbSoftwareVersionProfileState, opts?: CustomResourceOptions): NdbSoftwareVersionProfile
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
available_cluster_ids: Optional[Sequence[str]] = None,
db_version: Optional[str] = None,
deprecated: Optional[bool] = None,
description: Optional[str] = None,
engine_type: Optional[str] = None,
name: Optional[str] = None,
owner: Optional[str] = None,
postgres_databases: Optional[Sequence[NdbSoftwareVersionProfilePostgresDatabaseArgs]] = None,
profile_id: Optional[str] = None,
properties: Optional[Sequence[NdbSoftwareVersionProfilePropertyArgs]] = None,
properties_map: Optional[Mapping[str, str]] = None,
published: Optional[bool] = None,
status: Optional[str] = None,
system_profile: Optional[bool] = None,
topology: Optional[str] = None,
version: Optional[str] = None,
version_cluster_associations: Optional[Sequence[NdbSoftwareVersionProfileVersionClusterAssociationArgs]] = None) -> NdbSoftwareVersionProfile
func GetNdbSoftwareVersionProfile(ctx *Context, name string, id IDInput, state *NdbSoftwareVersionProfileState, opts ...ResourceOption) (*NdbSoftwareVersionProfile, error)
public static NdbSoftwareVersionProfile Get(string name, Input<string> id, NdbSoftwareVersionProfileState? state, CustomResourceOptions? opts = null)
public static NdbSoftwareVersionProfile get(String name, Output<String> id, NdbSoftwareVersionProfileState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Available
Cluster List<string>Ids - available cluster ids
- Db
Version string - Db version of software profile
- Deprecated bool
- deprecated or not
- Description string
- description of profile
- Engine
Type string - engine type of profile
- Name string
- Name of profile
- Owner string
- owner of profile
- Postgres
Databases List<PiersKarsenbarg. Nutanix. Inputs. Ndb Software Version Profile Postgres Database> - postgres database info
- Profile
Id string - profile id
- Properties
List<Piers
Karsenbarg. Nutanix. Inputs. Ndb Software Version Profile Property> - properties of software profile
- Properties
Map Dictionary<string, string> - properties map of profile
- Published bool
- Published or not
- Status string
- status of profile. Allowed Values are "deprecated", "published", "unpublished"
- System
Profile bool - system profile or not.
- Topology string
- topology of software profile
- Version string
- Version of software profile
- Version
Cluster List<PiersAssociations Karsenbarg. Nutanix. Inputs. Ndb Software Version Profile Version Cluster Association> - version cluster association
- Available
Cluster []stringIds - available cluster ids
- Db
Version string - Db version of software profile
- Deprecated bool
- deprecated or not
- Description string
- description of profile
- Engine
Type string - engine type of profile
- Name string
- Name of profile
- Owner string
- owner of profile
- Postgres
Databases []NdbSoftware Version Profile Postgres Database Args - postgres database info
- Profile
Id string - profile id
- Properties
[]Ndb
Software Version Profile Property Args - properties of software profile
- Properties
Map map[string]string - properties map of profile
- Published bool
- Published or not
- Status string
- status of profile. Allowed Values are "deprecated", "published", "unpublished"
- System
Profile bool - system profile or not.
- Topology string
- topology of software profile
- Version string
- Version of software profile
- Version
Cluster []NdbAssociations Software Version Profile Version Cluster Association Args - version cluster association
- available
Cluster List<String>Ids - available cluster ids
- db
Version String - Db version of software profile
- deprecated Boolean
- deprecated or not
- description String
- description of profile
- engine
Type String - engine type of profile
- name String
- Name of profile
- owner String
- owner of profile
- postgres
Databases List<NdbSoftware Version Profile Postgres Database> - postgres database info
- profile
Id String - profile id
- properties
List<Ndb
Software Version Profile Property> - properties of software profile
- properties
Map Map<String,String> - properties map of profile
- published Boolean
- Published or not
- status String
- status of profile. Allowed Values are "deprecated", "published", "unpublished"
- system
Profile Boolean - system profile or not.
- topology String
- topology of software profile
- version String
- Version of software profile
- version
Cluster List<NdbAssociations Software Version Profile Version Cluster Association> - version cluster association
- available
Cluster string[]Ids - available cluster ids
- db
Version string - Db version of software profile
- deprecated boolean
- deprecated or not
- description string
- description of profile
- engine
Type string - engine type of profile
- name string
- Name of profile
- owner string
- owner of profile
- postgres
Databases NdbSoftware Version Profile Postgres Database[] - postgres database info
- profile
Id string - profile id
- properties
Ndb
Software Version Profile Property[] - properties of software profile
- properties
Map {[key: string]: string} - properties map of profile
- published boolean
- Published or not
- status string
- status of profile. Allowed Values are "deprecated", "published", "unpublished"
- system
Profile boolean - system profile or not.
- topology string
- topology of software profile
- version string
- Version of software profile
- version
Cluster NdbAssociations Software Version Profile Version Cluster Association[] - version cluster association
- available_
cluster_ Sequence[str]ids - available cluster ids
- db_
version str - Db version of software profile
- deprecated bool
- deprecated or not
- description str
- description of profile
- engine_
type str - engine type of profile
- name str
- Name of profile
- owner str
- owner of profile
- postgres_
databases Sequence[NdbSoftware Version Profile Postgres Database Args] - postgres database info
- profile_
id str - profile id
- properties
Sequence[Ndb
Software Version Profile Property Args] - properties of software profile
- properties_
map Mapping[str, str] - properties map of profile
- published bool
- Published or not
- status str
- status of profile. Allowed Values are "deprecated", "published", "unpublished"
- system_
profile bool - system profile or not.
- topology str
- topology of software profile
- version str
- Version of software profile
- version_
cluster_ Sequence[Ndbassociations Software Version Profile Version Cluster Association Args] - version cluster association
- available
Cluster List<String>Ids - available cluster ids
- db
Version String - Db version of software profile
- deprecated Boolean
- deprecated or not
- description String
- description of profile
- engine
Type String - engine type of profile
- name String
- Name of profile
- owner String
- owner of profile
- postgres
Databases List<Property Map> - postgres database info
- profile
Id String - profile id
- properties List<Property Map>
- properties of software profile
- properties
Map Map<String> - properties map of profile
- published Boolean
- Published or not
- status String
- status of profile. Allowed Values are "deprecated", "published", "unpublished"
- system
Profile Boolean - system profile or not.
- topology String
- topology of software profile
- version String
- Version of software profile
- version
Cluster List<Property Map>Associations - version cluster association
Supporting Types
NdbSoftwareVersionProfilePostgresDatabase, NdbSoftwareVersionProfilePostgresDatabaseArgs
- Db
Software stringNotes - db software notes
- Os
Notes string - os notes for software profile
- Source
Dbserver stringId - source dbserver id
- Db
Software stringNotes - db software notes
- Os
Notes string - os notes for software profile
- Source
Dbserver stringId - source dbserver id
- db
Software StringNotes - db software notes
- os
Notes String - os notes for software profile
- source
Dbserver StringId - source dbserver id
- db
Software stringNotes - db software notes
- os
Notes string - os notes for software profile
- source
Dbserver stringId - source dbserver id
- db_
software_ strnotes - db software notes
- os_
notes str - os notes for software profile
- source_
dbserver_ strid - source dbserver id
- db
Software StringNotes - db software notes
- os
Notes String - os notes for software profile
- source
Dbserver StringId - source dbserver id
NdbSoftwareVersionProfileProperty, NdbSoftwareVersionProfilePropertyArgs
NdbSoftwareVersionProfileVersionClusterAssociation, NdbSoftwareVersionProfileVersionClusterAssociationArgs
- Date
Created string - date created of profile
- Date
Modified string - date modified of profile
- Nx
Cluster stringId - nutanix cluster id
- Optimized
For boolProvisioning - version optimized for provisioning
- Owner
Id string - owner id
- Profile
Version stringId - profile version id
- Properties
List<Piers
Karsenbarg. Nutanix. Inputs. Ndb Software Version Profile Version Cluster Association Property> - properties of software profile
- Status string
- status of profile. Allowed Values are "deprecated", "published", "unpublished"
- Date
Created string - date created of profile
- Date
Modified string - date modified of profile
- Nx
Cluster stringId - nutanix cluster id
- Optimized
For boolProvisioning - version optimized for provisioning
- Owner
Id string - owner id
- Profile
Version stringId - profile version id
- Properties
[]Ndb
Software Version Profile Version Cluster Association Property - properties of software profile
- Status string
- status of profile. Allowed Values are "deprecated", "published", "unpublished"
- date
Created String - date created of profile
- date
Modified String - date modified of profile
- nx
Cluster StringId - nutanix cluster id
- optimized
For BooleanProvisioning - version optimized for provisioning
- owner
Id String - owner id
- profile
Version StringId - profile version id
- properties
List<Ndb
Software Version Profile Version Cluster Association Property> - properties of software profile
- status String
- status of profile. Allowed Values are "deprecated", "published", "unpublished"
- date
Created string - date created of profile
- date
Modified string - date modified of profile
- nx
Cluster stringId - nutanix cluster id
- optimized
For booleanProvisioning - version optimized for provisioning
- owner
Id string - owner id
- profile
Version stringId - profile version id
- properties
Ndb
Software Version Profile Version Cluster Association Property[] - properties of software profile
- status string
- status of profile. Allowed Values are "deprecated", "published", "unpublished"
- date_
created str - date created of profile
- date_
modified str - date modified of profile
- nx_
cluster_ strid - nutanix cluster id
- optimized_
for_ boolprovisioning - version optimized for provisioning
- owner_
id str - owner id
- profile_
version_ strid - profile version id
- properties
Sequence[Ndb
Software Version Profile Version Cluster Association Property] - properties of software profile
- status str
- status of profile. Allowed Values are "deprecated", "published", "unpublished"
- date
Created String - date created of profile
- date
Modified String - date modified of profile
- nx
Cluster StringId - nutanix cluster id
- optimized
For BooleanProvisioning - version optimized for provisioning
- owner
Id String - owner id
- profile
Version StringId - profile version id
- properties List<Property Map>
- properties of software profile
- status String
- status of profile. Allowed Values are "deprecated", "published", "unpublished"
NdbSoftwareVersionProfileVersionClusterAssociationProperty, NdbSoftwareVersionProfileVersionClusterAssociationPropertyArgs
Package Details
- Repository
- nutanix pierskarsenbarg/pulumi-nutanix
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
nutanix
Terraform Provider.