1. Packages
  2. Nutanix
  3. API Docs
  4. NdbSoftwareVersionProfile
Nutanix v0.0.52 published on Friday, Jun 7, 2024 by Piers Karsenbarg

nutanix.NdbSoftwareVersionProfile

Explore with Pulumi AI

nutanix logo
Nutanix v0.0.52 published on Friday, Jun 7, 2024 by Piers Karsenbarg

    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=[nutanix.NdbSoftwareVersionProfilePostgresDatabaseArgs(
            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:

    EngineType string
    engine type of profile
    ProfileId string
    profile id
    AvailableClusterIds List<string>
    available cluster ids
    Description string
    description of profile
    Name string
    Name of profile
    PostgresDatabases List<PiersKarsenbarg.Nutanix.Inputs.NdbSoftwareVersionProfilePostgresDatabase>
    postgres database info
    Status string
    status of profile. Allowed Values are "deprecated", "published", "unpublished"
    EngineType string
    engine type of profile
    ProfileId string
    profile id
    AvailableClusterIds []string
    available cluster ids
    Description string
    description of profile
    Name string
    Name of profile
    PostgresDatabases []NdbSoftwareVersionProfilePostgresDatabaseArgs
    postgres database info
    Status string
    status of profile. Allowed Values are "deprecated", "published", "unpublished"
    engineType String
    engine type of profile
    profileId String
    profile id
    availableClusterIds List<String>
    available cluster ids
    description String
    description of profile
    name String
    Name of profile
    postgresDatabases List<NdbSoftwareVersionProfilePostgresDatabase>
    postgres database info
    status String
    status of profile. Allowed Values are "deprecated", "published", "unpublished"
    engineType string
    engine type of profile
    profileId string
    profile id
    availableClusterIds string[]
    available cluster ids
    description string
    description of profile
    name string
    Name of profile
    postgresDatabases NdbSoftwareVersionProfilePostgresDatabase[]
    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_ids Sequence[str]
    available cluster ids
    description str
    description of profile
    name str
    Name of profile
    postgres_databases Sequence[NdbSoftwareVersionProfilePostgresDatabaseArgs]
    postgres database info
    status str
    status of profile. Allowed Values are "deprecated", "published", "unpublished"
    engineType String
    engine type of profile
    profileId String
    profile id
    availableClusterIds List<String>
    available cluster ids
    description String
    description of profile
    name String
    Name of profile
    postgresDatabases 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:

    DbVersion 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<PiersKarsenbarg.Nutanix.Outputs.NdbSoftwareVersionProfileProperty>
    properties of software profile
    PropertiesMap Dictionary<string, string>
    properties map of profile
    Published bool
    Published or not
    SystemProfile bool
    system profile or not.
    Topology string
    topology of software profile
    Version string
    Version of software profile
    VersionClusterAssociations List<PiersKarsenbarg.Nutanix.Outputs.NdbSoftwareVersionProfileVersionClusterAssociation>
    version cluster association
    DbVersion 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 []NdbSoftwareVersionProfileProperty
    properties of software profile
    PropertiesMap map[string]string
    properties map of profile
    Published bool
    Published or not
    SystemProfile bool
    system profile or not.
    Topology string
    topology of software profile
    Version string
    Version of software profile
    VersionClusterAssociations []NdbSoftwareVersionProfileVersionClusterAssociation
    version cluster association
    dbVersion 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<NdbSoftwareVersionProfileProperty>
    properties of software profile
    propertiesMap Map<String,String>
    properties map of profile
    published Boolean
    Published or not
    systemProfile Boolean
    system profile or not.
    topology String
    topology of software profile
    version String
    Version of software profile
    versionClusterAssociations List<NdbSoftwareVersionProfileVersionClusterAssociation>
    version cluster association
    dbVersion 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 NdbSoftwareVersionProfileProperty[]
    properties of software profile
    propertiesMap {[key: string]: string}
    properties map of profile
    published boolean
    Published or not
    systemProfile boolean
    system profile or not.
    topology string
    topology of software profile
    version string
    Version of software profile
    versionClusterAssociations NdbSoftwareVersionProfileVersionClusterAssociation[]
    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[NdbSoftwareVersionProfileProperty]
    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_associations Sequence[NdbSoftwareVersionProfileVersionClusterAssociation]
    version cluster association
    dbVersion 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
    propertiesMap Map<String>
    properties map of profile
    published Boolean
    Published or not
    systemProfile Boolean
    system profile or not.
    topology String
    topology of software profile
    version String
    Version of software profile
    versionClusterAssociations List<Property Map>
    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.
    The following state arguments are supported:
    AvailableClusterIds List<string>
    available cluster ids
    DbVersion string
    Db version of software profile
    Deprecated bool
    deprecated or not
    Description string
    description of profile
    EngineType string
    engine type of profile
    Name string
    Name of profile
    Owner string
    owner of profile
    PostgresDatabases List<PiersKarsenbarg.Nutanix.Inputs.NdbSoftwareVersionProfilePostgresDatabase>
    postgres database info
    ProfileId string
    profile id
    Properties List<PiersKarsenbarg.Nutanix.Inputs.NdbSoftwareVersionProfileProperty>
    properties of software profile
    PropertiesMap Dictionary<string, string>
    properties map of profile
    Published bool
    Published or not
    Status string
    status of profile. Allowed Values are "deprecated", "published", "unpublished"
    SystemProfile bool
    system profile or not.
    Topology string
    topology of software profile
    Version string
    Version of software profile
    VersionClusterAssociations List<PiersKarsenbarg.Nutanix.Inputs.NdbSoftwareVersionProfileVersionClusterAssociation>
    version cluster association
    AvailableClusterIds []string
    available cluster ids
    DbVersion string
    Db version of software profile
    Deprecated bool
    deprecated or not
    Description string
    description of profile
    EngineType string
    engine type of profile
    Name string
    Name of profile
    Owner string
    owner of profile
    PostgresDatabases []NdbSoftwareVersionProfilePostgresDatabaseArgs
    postgres database info
    ProfileId string
    profile id
    Properties []NdbSoftwareVersionProfilePropertyArgs
    properties of software profile
    PropertiesMap map[string]string
    properties map of profile
    Published bool
    Published or not
    Status string
    status of profile. Allowed Values are "deprecated", "published", "unpublished"
    SystemProfile bool
    system profile or not.
    Topology string
    topology of software profile
    Version string
    Version of software profile
    VersionClusterAssociations []NdbSoftwareVersionProfileVersionClusterAssociationArgs
    version cluster association
    availableClusterIds List<String>
    available cluster ids
    dbVersion String
    Db version of software profile
    deprecated Boolean
    deprecated or not
    description String
    description of profile
    engineType String
    engine type of profile
    name String
    Name of profile
    owner String
    owner of profile
    postgresDatabases List<NdbSoftwareVersionProfilePostgresDatabase>
    postgres database info
    profileId String
    profile id
    properties List<NdbSoftwareVersionProfileProperty>
    properties of software profile
    propertiesMap Map<String,String>
    properties map of profile
    published Boolean
    Published or not
    status String
    status of profile. Allowed Values are "deprecated", "published", "unpublished"
    systemProfile Boolean
    system profile or not.
    topology String
    topology of software profile
    version String
    Version of software profile
    versionClusterAssociations List<NdbSoftwareVersionProfileVersionClusterAssociation>
    version cluster association
    availableClusterIds string[]
    available cluster ids
    dbVersion string
    Db version of software profile
    deprecated boolean
    deprecated or not
    description string
    description of profile
    engineType string
    engine type of profile
    name string
    Name of profile
    owner string
    owner of profile
    postgresDatabases NdbSoftwareVersionProfilePostgresDatabase[]
    postgres database info
    profileId string
    profile id
    properties NdbSoftwareVersionProfileProperty[]
    properties of software profile
    propertiesMap {[key: string]: string}
    properties map of profile
    published boolean
    Published or not
    status string
    status of profile. Allowed Values are "deprecated", "published", "unpublished"
    systemProfile boolean
    system profile or not.
    topology string
    topology of software profile
    version string
    Version of software profile
    versionClusterAssociations NdbSoftwareVersionProfileVersionClusterAssociation[]
    version cluster association
    available_cluster_ids Sequence[str]
    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[NdbSoftwareVersionProfilePostgresDatabaseArgs]
    postgres database info
    profile_id str
    profile id
    properties Sequence[NdbSoftwareVersionProfilePropertyArgs]
    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_associations Sequence[NdbSoftwareVersionProfileVersionClusterAssociationArgs]
    version cluster association
    availableClusterIds List<String>
    available cluster ids
    dbVersion String
    Db version of software profile
    deprecated Boolean
    deprecated or not
    description String
    description of profile
    engineType String
    engine type of profile
    name String
    Name of profile
    owner String
    owner of profile
    postgresDatabases List<Property Map>
    postgres database info
    profileId String
    profile id
    properties List<Property Map>
    properties of software profile
    propertiesMap Map<String>
    properties map of profile
    published Boolean
    Published or not
    status String
    status of profile. Allowed Values are "deprecated", "published", "unpublished"
    systemProfile Boolean
    system profile or not.
    topology String
    topology of software profile
    version String
    Version of software profile
    versionClusterAssociations List<Property Map>
    version cluster association

    Supporting Types

    NdbSoftwareVersionProfilePostgresDatabase, NdbSoftwareVersionProfilePostgresDatabaseArgs

    DbSoftwareNotes string
    db software notes
    OsNotes string
    os notes for software profile
    SourceDbserverId string
    source dbserver id
    DbSoftwareNotes string
    db software notes
    OsNotes string
    os notes for software profile
    SourceDbserverId string
    source dbserver id
    dbSoftwareNotes String
    db software notes
    osNotes String
    os notes for software profile
    sourceDbserverId String
    source dbserver id
    dbSoftwareNotes string
    db software notes
    osNotes string
    os notes for software profile
    sourceDbserverId string
    source dbserver id
    db_software_notes str
    db software notes
    os_notes str
    os notes for software profile
    source_dbserver_id str
    source dbserver id
    dbSoftwareNotes String
    db software notes
    osNotes String
    os notes for software profile
    sourceDbserverId String
    source dbserver id

    NdbSoftwareVersionProfileProperty, NdbSoftwareVersionProfilePropertyArgs

    Name string
    Name of profile
    Secure bool
    secure or not
    Value string
    value of property
    Name string
    Name of profile
    Secure bool
    secure or not
    Value string
    value of property
    name String
    Name of profile
    secure Boolean
    secure or not
    value String
    value of property
    name string
    Name of profile
    secure boolean
    secure or not
    value string
    value of property
    name str
    Name of profile
    secure bool
    secure or not
    value str
    value of property
    name String
    Name of profile
    secure Boolean
    secure or not
    value String
    value of property

    NdbSoftwareVersionProfileVersionClusterAssociation, NdbSoftwareVersionProfileVersionClusterAssociationArgs

    DateCreated string
    date created of profile
    DateModified string
    date modified of profile
    NxClusterId string
    nutanix cluster id
    OptimizedForProvisioning bool
    version optimized for provisioning
    OwnerId string
    owner id
    ProfileVersionId string
    profile version id
    Properties List<PiersKarsenbarg.Nutanix.Inputs.NdbSoftwareVersionProfileVersionClusterAssociationProperty>
    properties of software profile
    Status string
    status of profile. Allowed Values are "deprecated", "published", "unpublished"
    DateCreated string
    date created of profile
    DateModified string
    date modified of profile
    NxClusterId string
    nutanix cluster id
    OptimizedForProvisioning bool
    version optimized for provisioning
    OwnerId string
    owner id
    ProfileVersionId string
    profile version id
    Properties []NdbSoftwareVersionProfileVersionClusterAssociationProperty
    properties of software profile
    Status string
    status of profile. Allowed Values are "deprecated", "published", "unpublished"
    dateCreated String
    date created of profile
    dateModified String
    date modified of profile
    nxClusterId String
    nutanix cluster id
    optimizedForProvisioning Boolean
    version optimized for provisioning
    ownerId String
    owner id
    profileVersionId String
    profile version id
    properties List<NdbSoftwareVersionProfileVersionClusterAssociationProperty>
    properties of software profile
    status String
    status of profile. Allowed Values are "deprecated", "published", "unpublished"
    dateCreated string
    date created of profile
    dateModified string
    date modified of profile
    nxClusterId string
    nutanix cluster id
    optimizedForProvisioning boolean
    version optimized for provisioning
    ownerId string
    owner id
    profileVersionId string
    profile version id
    properties NdbSoftwareVersionProfileVersionClusterAssociationProperty[]
    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_id str
    nutanix cluster id
    optimized_for_provisioning bool
    version optimized for provisioning
    owner_id str
    owner id
    profile_version_id str
    profile version id
    properties Sequence[NdbSoftwareVersionProfileVersionClusterAssociationProperty]
    properties of software profile
    status str
    status of profile. Allowed Values are "deprecated", "published", "unpublished"
    dateCreated String
    date created of profile
    dateModified String
    date modified of profile
    nxClusterId String
    nutanix cluster id
    optimizedForProvisioning Boolean
    version optimized for provisioning
    ownerId String
    owner id
    profileVersionId String
    profile version id
    properties List<Property Map>
    properties of software profile
    status String
    status of profile. Allowed Values are "deprecated", "published", "unpublished"

    NdbSoftwareVersionProfileVersionClusterAssociationProperty, NdbSoftwareVersionProfileVersionClusterAssociationPropertyArgs

    Name string
    Name of profile
    Secure bool
    secure or not
    Value string
    value of property
    Name string
    Name of profile
    Secure bool
    secure or not
    Value string
    value of property
    name String
    Name of profile
    secure Boolean
    secure or not
    value String
    value of property
    name string
    Name of profile
    secure boolean
    secure or not
    value string
    value of property
    name str
    Name of profile
    secure bool
    secure or not
    value str
    value of property
    name String
    Name of profile
    secure Boolean
    secure or not
    value String
    value of property

    Package Details

    Repository
    nutanix pierskarsenbarg/pulumi-nutanix
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the nutanix Terraform Provider.
    nutanix logo
    Nutanix v0.0.52 published on Friday, Jun 7, 2024 by Piers Karsenbarg