1. Packages
  2. Nsxt Provider
  3. API Docs
  4. UpgradePrepare
nsxt 3.8.1 published on Wednesday, Apr 30, 2025 by vmware

nsxt.UpgradePrepare

Explore with Pulumi AI

nsxt logo
nsxt 3.8.1 published on Wednesday, Apr 30, 2025 by vmware

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as nsxt from "@pulumi/nsxt";
    
    const test = new nsxt.UpgradePrepare("test", {
        acceptUserAgreement: true,
        bundleUploadTimeout: 1600,
        precheckBundleUrl: "http://url-to-precheck-bundle.pub",
        precheckTimeout: 1600,
        ucUpgradeTimeout: 600,
        upgradeBundleUrl: "http://url-to-upgrade-bundle.mub",
        version: "4.1.2",
    });
    
    import pulumi
    import pulumi_nsxt as nsxt
    
    test = nsxt.UpgradePrepare("test",
        accept_user_agreement=True,
        bundle_upload_timeout=1600,
        precheck_bundle_url="http://url-to-precheck-bundle.pub",
        precheck_timeout=1600,
        uc_upgrade_timeout=600,
        upgrade_bundle_url="http://url-to-upgrade-bundle.mub",
        version="4.1.2")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/nsxt/v3/nsxt"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := nsxt.NewUpgradePrepare(ctx, "test", &nsxt.UpgradePrepareArgs{
    			AcceptUserAgreement: pulumi.Bool(true),
    			BundleUploadTimeout: pulumi.Float64(1600),
    			PrecheckBundleUrl:   pulumi.String("http://url-to-precheck-bundle.pub"),
    			PrecheckTimeout:     pulumi.Float64(1600),
    			UcUpgradeTimeout:    pulumi.Float64(600),
    			UpgradeBundleUrl:    pulumi.String("http://url-to-upgrade-bundle.mub"),
    			Version:             pulumi.String("4.1.2"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Nsxt = Pulumi.Nsxt;
    
    return await Deployment.RunAsync(() => 
    {
        var test = new Nsxt.UpgradePrepare("test", new()
        {
            AcceptUserAgreement = true,
            BundleUploadTimeout = 1600,
            PrecheckBundleUrl = "http://url-to-precheck-bundle.pub",
            PrecheckTimeout = 1600,
            UcUpgradeTimeout = 600,
            UpgradeBundleUrl = "http://url-to-upgrade-bundle.mub",
            Version = "4.1.2",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.nsxt.UpgradePrepare;
    import com.pulumi.nsxt.UpgradePrepareArgs;
    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 test = new UpgradePrepare("test", UpgradePrepareArgs.builder()
                .acceptUserAgreement(true)
                .bundleUploadTimeout(1600)
                .precheckBundleUrl("http://url-to-precheck-bundle.pub")
                .precheckTimeout(1600)
                .ucUpgradeTimeout(600)
                .upgradeBundleUrl("http://url-to-upgrade-bundle.mub")
                .version("4.1.2")
                .build());
    
        }
    }
    
    resources:
      test:
        type: nsxt:UpgradePrepare
        properties:
          acceptUserAgreement: true
          bundleUploadTimeout: 1600
          precheckBundleUrl: http://url-to-precheck-bundle.pub
          precheckTimeout: 1600
          ucUpgradeTimeout: 600
          upgradeBundleUrl: http://url-to-upgrade-bundle.mub
          version: 4.1.2
    

    Create UpgradePrepare Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new UpgradePrepare(name: string, args: UpgradePrepareArgs, opts?: CustomResourceOptions);
    @overload
    def UpgradePrepare(resource_name: str,
                       args: UpgradePrepareArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def UpgradePrepare(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       accept_user_agreement: Optional[bool] = None,
                       upgrade_bundle_url: Optional[str] = None,
                       bundle_upload_timeout: Optional[float] = None,
                       precheck_bundle_url: Optional[str] = None,
                       precheck_timeout: Optional[float] = None,
                       uc_upgrade_timeout: Optional[float] = None,
                       upgrade_prepare_id: Optional[str] = None,
                       version: Optional[str] = None)
    func NewUpgradePrepare(ctx *Context, name string, args UpgradePrepareArgs, opts ...ResourceOption) (*UpgradePrepare, error)
    public UpgradePrepare(string name, UpgradePrepareArgs args, CustomResourceOptions? opts = null)
    public UpgradePrepare(String name, UpgradePrepareArgs args)
    public UpgradePrepare(String name, UpgradePrepareArgs args, CustomResourceOptions options)
    
    type: nsxt:UpgradePrepare
    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 UpgradePrepareArgs
    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 UpgradePrepareArgs
    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 UpgradePrepareArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args UpgradePrepareArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args UpgradePrepareArgs
    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 upgradePrepareResource = new Nsxt.UpgradePrepare("upgradePrepareResource", new()
    {
        AcceptUserAgreement = false,
        UpgradeBundleUrl = "string",
        BundleUploadTimeout = 0,
        PrecheckBundleUrl = "string",
        PrecheckTimeout = 0,
        UcUpgradeTimeout = 0,
        UpgradePrepareId = "string",
        Version = "string",
    });
    
    example, err := nsxt.NewUpgradePrepare(ctx, "upgradePrepareResource", &nsxt.UpgradePrepareArgs{
    	AcceptUserAgreement: pulumi.Bool(false),
    	UpgradeBundleUrl:    pulumi.String("string"),
    	BundleUploadTimeout: pulumi.Float64(0),
    	PrecheckBundleUrl:   pulumi.String("string"),
    	PrecheckTimeout:     pulumi.Float64(0),
    	UcUpgradeTimeout:    pulumi.Float64(0),
    	UpgradePrepareId:    pulumi.String("string"),
    	Version:             pulumi.String("string"),
    })
    
    var upgradePrepareResource = new UpgradePrepare("upgradePrepareResource", UpgradePrepareArgs.builder()
        .acceptUserAgreement(false)
        .upgradeBundleUrl("string")
        .bundleUploadTimeout(0)
        .precheckBundleUrl("string")
        .precheckTimeout(0)
        .ucUpgradeTimeout(0)
        .upgradePrepareId("string")
        .version("string")
        .build());
    
    upgrade_prepare_resource = nsxt.UpgradePrepare("upgradePrepareResource",
        accept_user_agreement=False,
        upgrade_bundle_url="string",
        bundle_upload_timeout=0,
        precheck_bundle_url="string",
        precheck_timeout=0,
        uc_upgrade_timeout=0,
        upgrade_prepare_id="string",
        version="string")
    
    const upgradePrepareResource = new nsxt.UpgradePrepare("upgradePrepareResource", {
        acceptUserAgreement: false,
        upgradeBundleUrl: "string",
        bundleUploadTimeout: 0,
        precheckBundleUrl: "string",
        precheckTimeout: 0,
        ucUpgradeTimeout: 0,
        upgradePrepareId: "string",
        version: "string",
    });
    
    type: nsxt:UpgradePrepare
    properties:
        acceptUserAgreement: false
        bundleUploadTimeout: 0
        precheckBundleUrl: string
        precheckTimeout: 0
        ucUpgradeTimeout: 0
        upgradeBundleUrl: string
        upgradePrepareId: string
        version: string
    

    UpgradePrepare 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 UpgradePrepare resource accepts the following input properties:

    AcceptUserAgreement bool
    This field must be set to true otherwise upgrade will not proceed.
    UpgradeBundleUrl string
    The url to download the Manager Upgrade bundle.
    BundleUploadTimeout double
    Timeout for uploading upgrade bundle in seconds. Default is 3600.
    PrecheckBundleUrl string
    The url to download the Precheck bundle.
    PrecheckTimeout double
    Timeout for executing pre-upgrade checks in seconds. Default is 3600.
    UcUpgradeTimeout double
    Timeout for upgrading upgrade coordinator in seconds. Default is 1800.
    UpgradePrepareId string
    ID of the failed precheck.
    Version string
    Target upgrade version for NSX, format is x.x.x..., should include at least 3 digits, example: 4.1.2
    AcceptUserAgreement bool
    This field must be set to true otherwise upgrade will not proceed.
    UpgradeBundleUrl string
    The url to download the Manager Upgrade bundle.
    BundleUploadTimeout float64
    Timeout for uploading upgrade bundle in seconds. Default is 3600.
    PrecheckBundleUrl string
    The url to download the Precheck bundle.
    PrecheckTimeout float64
    Timeout for executing pre-upgrade checks in seconds. Default is 3600.
    UcUpgradeTimeout float64
    Timeout for upgrading upgrade coordinator in seconds. Default is 1800.
    UpgradePrepareId string
    ID of the failed precheck.
    Version string
    Target upgrade version for NSX, format is x.x.x..., should include at least 3 digits, example: 4.1.2
    acceptUserAgreement Boolean
    This field must be set to true otherwise upgrade will not proceed.
    upgradeBundleUrl String
    The url to download the Manager Upgrade bundle.
    bundleUploadTimeout Double
    Timeout for uploading upgrade bundle in seconds. Default is 3600.
    precheckBundleUrl String
    The url to download the Precheck bundle.
    precheckTimeout Double
    Timeout for executing pre-upgrade checks in seconds. Default is 3600.
    ucUpgradeTimeout Double
    Timeout for upgrading upgrade coordinator in seconds. Default is 1800.
    upgradePrepareId String
    ID of the failed precheck.
    version String
    Target upgrade version for NSX, format is x.x.x..., should include at least 3 digits, example: 4.1.2
    acceptUserAgreement boolean
    This field must be set to true otherwise upgrade will not proceed.
    upgradeBundleUrl string
    The url to download the Manager Upgrade bundle.
    bundleUploadTimeout number
    Timeout for uploading upgrade bundle in seconds. Default is 3600.
    precheckBundleUrl string
    The url to download the Precheck bundle.
    precheckTimeout number
    Timeout for executing pre-upgrade checks in seconds. Default is 3600.
    ucUpgradeTimeout number
    Timeout for upgrading upgrade coordinator in seconds. Default is 1800.
    upgradePrepareId string
    ID of the failed precheck.
    version string
    Target upgrade version for NSX, format is x.x.x..., should include at least 3 digits, example: 4.1.2
    accept_user_agreement bool
    This field must be set to true otherwise upgrade will not proceed.
    upgrade_bundle_url str
    The url to download the Manager Upgrade bundle.
    bundle_upload_timeout float
    Timeout for uploading upgrade bundle in seconds. Default is 3600.
    precheck_bundle_url str
    The url to download the Precheck bundle.
    precheck_timeout float
    Timeout for executing pre-upgrade checks in seconds. Default is 3600.
    uc_upgrade_timeout float
    Timeout for upgrading upgrade coordinator in seconds. Default is 1800.
    upgrade_prepare_id str
    ID of the failed precheck.
    version str
    Target upgrade version for NSX, format is x.x.x..., should include at least 3 digits, example: 4.1.2
    acceptUserAgreement Boolean
    This field must be set to true otherwise upgrade will not proceed.
    upgradeBundleUrl String
    The url to download the Manager Upgrade bundle.
    bundleUploadTimeout Number
    Timeout for uploading upgrade bundle in seconds. Default is 3600.
    precheckBundleUrl String
    The url to download the Precheck bundle.
    precheckTimeout Number
    Timeout for executing pre-upgrade checks in seconds. Default is 3600.
    ucUpgradeTimeout Number
    Timeout for upgrading upgrade coordinator in seconds. Default is 1800.
    upgradePrepareId String
    ID of the failed precheck.
    version String
    Target upgrade version for NSX, format is x.x.x..., should include at least 3 digits, example: 4.1.2

    Outputs

    All input properties are implicitly available as output properties. Additionally, the UpgradePrepare resource produces the following output properties:

    FailedPrechecks List<UpgradePrepareFailedPrecheck>
    (Computed) Failed prechecks from running pre-upgrade check.
    Id string
    The provider-assigned unique ID for this managed resource.
    TargetVersion string
    Target system version
    FailedPrechecks []UpgradePrepareFailedPrecheck
    (Computed) Failed prechecks from running pre-upgrade check.
    Id string
    The provider-assigned unique ID for this managed resource.
    TargetVersion string
    Target system version
    failedPrechecks List<UpgradePrepareFailedPrecheck>
    (Computed) Failed prechecks from running pre-upgrade check.
    id String
    The provider-assigned unique ID for this managed resource.
    targetVersion String
    Target system version
    failedPrechecks UpgradePrepareFailedPrecheck[]
    (Computed) Failed prechecks from running pre-upgrade check.
    id string
    The provider-assigned unique ID for this managed resource.
    targetVersion string
    Target system version
    failed_prechecks Sequence[UpgradePrepareFailedPrecheck]
    (Computed) Failed prechecks from running pre-upgrade check.
    id str
    The provider-assigned unique ID for this managed resource.
    target_version str
    Target system version
    failedPrechecks List<Property Map>
    (Computed) Failed prechecks from running pre-upgrade check.
    id String
    The provider-assigned unique ID for this managed resource.
    targetVersion String
    Target system version

    Look up Existing UpgradePrepare Resource

    Get an existing UpgradePrepare 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?: UpgradePrepareState, opts?: CustomResourceOptions): UpgradePrepare
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            accept_user_agreement: Optional[bool] = None,
            bundle_upload_timeout: Optional[float] = None,
            failed_prechecks: Optional[Sequence[UpgradePrepareFailedPrecheckArgs]] = None,
            precheck_bundle_url: Optional[str] = None,
            precheck_timeout: Optional[float] = None,
            target_version: Optional[str] = None,
            uc_upgrade_timeout: Optional[float] = None,
            upgrade_bundle_url: Optional[str] = None,
            upgrade_prepare_id: Optional[str] = None,
            version: Optional[str] = None) -> UpgradePrepare
    func GetUpgradePrepare(ctx *Context, name string, id IDInput, state *UpgradePrepareState, opts ...ResourceOption) (*UpgradePrepare, error)
    public static UpgradePrepare Get(string name, Input<string> id, UpgradePrepareState? state, CustomResourceOptions? opts = null)
    public static UpgradePrepare get(String name, Output<String> id, UpgradePrepareState state, CustomResourceOptions options)
    resources:  _:    type: nsxt:UpgradePrepare    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.
    The following state arguments are supported:
    AcceptUserAgreement bool
    This field must be set to true otherwise upgrade will not proceed.
    BundleUploadTimeout double
    Timeout for uploading upgrade bundle in seconds. Default is 3600.
    FailedPrechecks List<UpgradePrepareFailedPrecheck>
    (Computed) Failed prechecks from running pre-upgrade check.
    PrecheckBundleUrl string
    The url to download the Precheck bundle.
    PrecheckTimeout double
    Timeout for executing pre-upgrade checks in seconds. Default is 3600.
    TargetVersion string
    Target system version
    UcUpgradeTimeout double
    Timeout for upgrading upgrade coordinator in seconds. Default is 1800.
    UpgradeBundleUrl string
    The url to download the Manager Upgrade bundle.
    UpgradePrepareId string
    ID of the failed precheck.
    Version string
    Target upgrade version for NSX, format is x.x.x..., should include at least 3 digits, example: 4.1.2
    AcceptUserAgreement bool
    This field must be set to true otherwise upgrade will not proceed.
    BundleUploadTimeout float64
    Timeout for uploading upgrade bundle in seconds. Default is 3600.
    FailedPrechecks []UpgradePrepareFailedPrecheckArgs
    (Computed) Failed prechecks from running pre-upgrade check.
    PrecheckBundleUrl string
    The url to download the Precheck bundle.
    PrecheckTimeout float64
    Timeout for executing pre-upgrade checks in seconds. Default is 3600.
    TargetVersion string
    Target system version
    UcUpgradeTimeout float64
    Timeout for upgrading upgrade coordinator in seconds. Default is 1800.
    UpgradeBundleUrl string
    The url to download the Manager Upgrade bundle.
    UpgradePrepareId string
    ID of the failed precheck.
    Version string
    Target upgrade version for NSX, format is x.x.x..., should include at least 3 digits, example: 4.1.2
    acceptUserAgreement Boolean
    This field must be set to true otherwise upgrade will not proceed.
    bundleUploadTimeout Double
    Timeout for uploading upgrade bundle in seconds. Default is 3600.
    failedPrechecks List<UpgradePrepareFailedPrecheck>
    (Computed) Failed prechecks from running pre-upgrade check.
    precheckBundleUrl String
    The url to download the Precheck bundle.
    precheckTimeout Double
    Timeout for executing pre-upgrade checks in seconds. Default is 3600.
    targetVersion String
    Target system version
    ucUpgradeTimeout Double
    Timeout for upgrading upgrade coordinator in seconds. Default is 1800.
    upgradeBundleUrl String
    The url to download the Manager Upgrade bundle.
    upgradePrepareId String
    ID of the failed precheck.
    version String
    Target upgrade version for NSX, format is x.x.x..., should include at least 3 digits, example: 4.1.2
    acceptUserAgreement boolean
    This field must be set to true otherwise upgrade will not proceed.
    bundleUploadTimeout number
    Timeout for uploading upgrade bundle in seconds. Default is 3600.
    failedPrechecks UpgradePrepareFailedPrecheck[]
    (Computed) Failed prechecks from running pre-upgrade check.
    precheckBundleUrl string
    The url to download the Precheck bundle.
    precheckTimeout number
    Timeout for executing pre-upgrade checks in seconds. Default is 3600.
    targetVersion string
    Target system version
    ucUpgradeTimeout number
    Timeout for upgrading upgrade coordinator in seconds. Default is 1800.
    upgradeBundleUrl string
    The url to download the Manager Upgrade bundle.
    upgradePrepareId string
    ID of the failed precheck.
    version string
    Target upgrade version for NSX, format is x.x.x..., should include at least 3 digits, example: 4.1.2
    accept_user_agreement bool
    This field must be set to true otherwise upgrade will not proceed.
    bundle_upload_timeout float
    Timeout for uploading upgrade bundle in seconds. Default is 3600.
    failed_prechecks Sequence[UpgradePrepareFailedPrecheckArgs]
    (Computed) Failed prechecks from running pre-upgrade check.
    precheck_bundle_url str
    The url to download the Precheck bundle.
    precheck_timeout float
    Timeout for executing pre-upgrade checks in seconds. Default is 3600.
    target_version str
    Target system version
    uc_upgrade_timeout float
    Timeout for upgrading upgrade coordinator in seconds. Default is 1800.
    upgrade_bundle_url str
    The url to download the Manager Upgrade bundle.
    upgrade_prepare_id str
    ID of the failed precheck.
    version str
    Target upgrade version for NSX, format is x.x.x..., should include at least 3 digits, example: 4.1.2
    acceptUserAgreement Boolean
    This field must be set to true otherwise upgrade will not proceed.
    bundleUploadTimeout Number
    Timeout for uploading upgrade bundle in seconds. Default is 3600.
    failedPrechecks List<Property Map>
    (Computed) Failed prechecks from running pre-upgrade check.
    precheckBundleUrl String
    The url to download the Precheck bundle.
    precheckTimeout Number
    Timeout for executing pre-upgrade checks in seconds. Default is 3600.
    targetVersion String
    Target system version
    ucUpgradeTimeout Number
    Timeout for upgrading upgrade coordinator in seconds. Default is 1800.
    upgradeBundleUrl String
    The url to download the Manager Upgrade bundle.
    upgradePrepareId String
    ID of the failed precheck.
    version String
    Target upgrade version for NSX, format is x.x.x..., should include at least 3 digits, example: 4.1.2

    Supporting Types

    UpgradePrepareFailedPrecheck, UpgradePrepareFailedPrecheckArgs

    Acked bool
    Boolean value which identifies if precheck has been acknowledged.
    Id string
    ID of the failed precheck.
    Message string
    Message of the failed precheck.
    NeedsAck bool
    Boolean value which identifies if acknowledgement is required for the precheck.
    NeedsResolve bool
    Boolean value identifies if resolution is required for the precheck.
    ResolutionStatus string
    The resolution status of precheck failure.
    Type string
    Type of the failed precheck, possible values are WARNING and FAILURE.
    Acked bool
    Boolean value which identifies if precheck has been acknowledged.
    Id string
    ID of the failed precheck.
    Message string
    Message of the failed precheck.
    NeedsAck bool
    Boolean value which identifies if acknowledgement is required for the precheck.
    NeedsResolve bool
    Boolean value identifies if resolution is required for the precheck.
    ResolutionStatus string
    The resolution status of precheck failure.
    Type string
    Type of the failed precheck, possible values are WARNING and FAILURE.
    acked Boolean
    Boolean value which identifies if precheck has been acknowledged.
    id String
    ID of the failed precheck.
    message String
    Message of the failed precheck.
    needsAck Boolean
    Boolean value which identifies if acknowledgement is required for the precheck.
    needsResolve Boolean
    Boolean value identifies if resolution is required for the precheck.
    resolutionStatus String
    The resolution status of precheck failure.
    type String
    Type of the failed precheck, possible values are WARNING and FAILURE.
    acked boolean
    Boolean value which identifies if precheck has been acknowledged.
    id string
    ID of the failed precheck.
    message string
    Message of the failed precheck.
    needsAck boolean
    Boolean value which identifies if acknowledgement is required for the precheck.
    needsResolve boolean
    Boolean value identifies if resolution is required for the precheck.
    resolutionStatus string
    The resolution status of precheck failure.
    type string
    Type of the failed precheck, possible values are WARNING and FAILURE.
    acked bool
    Boolean value which identifies if precheck has been acknowledged.
    id str
    ID of the failed precheck.
    message str
    Message of the failed precheck.
    needs_ack bool
    Boolean value which identifies if acknowledgement is required for the precheck.
    needs_resolve bool
    Boolean value identifies if resolution is required for the precheck.
    resolution_status str
    The resolution status of precheck failure.
    type str
    Type of the failed precheck, possible values are WARNING and FAILURE.
    acked Boolean
    Boolean value which identifies if precheck has been acknowledged.
    id String
    ID of the failed precheck.
    message String
    Message of the failed precheck.
    needsAck Boolean
    Boolean value which identifies if acknowledgement is required for the precheck.
    needsResolve Boolean
    Boolean value identifies if resolution is required for the precheck.
    resolutionStatus String
    The resolution status of precheck failure.
    type String
    Type of the failed precheck, possible values are WARNING and FAILURE.

    Import

    ing

    Importing is not supported for this resource.

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    nsxt vmware/terraform-provider-nsxt
    License
    Notes
    This Pulumi package is based on the nsxt Terraform Provider.
    nsxt logo
    nsxt 3.8.1 published on Wednesday, Apr 30, 2025 by vmware