nsxt.UpgradePrepare
Explore with Pulumi AI
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:
- Accept
User boolAgreement - This field must be set to true otherwise upgrade will not proceed.
- Upgrade
Bundle stringUrl - The url to download the Manager Upgrade bundle.
- Bundle
Upload doubleTimeout - Timeout for uploading upgrade bundle in seconds. Default is
3600
. - Precheck
Bundle stringUrl - The url to download the Precheck bundle.
- Precheck
Timeout double - Timeout for executing pre-upgrade checks in seconds. Default is
3600
. - Uc
Upgrade doubleTimeout - Timeout for upgrading upgrade coordinator in seconds. Default is
1800
. - Upgrade
Prepare stringId - 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 boolAgreement - This field must be set to true otherwise upgrade will not proceed.
- Upgrade
Bundle stringUrl - The url to download the Manager Upgrade bundle.
- Bundle
Upload float64Timeout - Timeout for uploading upgrade bundle in seconds. Default is
3600
. - Precheck
Bundle stringUrl - The url to download the Precheck bundle.
- Precheck
Timeout float64 - Timeout for executing pre-upgrade checks in seconds. Default is
3600
. - Uc
Upgrade float64Timeout - Timeout for upgrading upgrade coordinator in seconds. Default is
1800
. - Upgrade
Prepare stringId - 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 BooleanAgreement - This field must be set to true otherwise upgrade will not proceed.
- upgrade
Bundle StringUrl - The url to download the Manager Upgrade bundle.
- bundle
Upload DoubleTimeout - Timeout for uploading upgrade bundle in seconds. Default is
3600
. - precheck
Bundle StringUrl - The url to download the Precheck bundle.
- precheck
Timeout Double - Timeout for executing pre-upgrade checks in seconds. Default is
3600
. - uc
Upgrade DoubleTimeout - Timeout for upgrading upgrade coordinator in seconds. Default is
1800
. - upgrade
Prepare StringId - 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 booleanAgreement - This field must be set to true otherwise upgrade will not proceed.
- upgrade
Bundle stringUrl - The url to download the Manager Upgrade bundle.
- bundle
Upload numberTimeout - Timeout for uploading upgrade bundle in seconds. Default is
3600
. - precheck
Bundle stringUrl - The url to download the Precheck bundle.
- precheck
Timeout number - Timeout for executing pre-upgrade checks in seconds. Default is
3600
. - uc
Upgrade numberTimeout - Timeout for upgrading upgrade coordinator in seconds. Default is
1800
. - upgrade
Prepare stringId - 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_ boolagreement - This field must be set to true otherwise upgrade will not proceed.
- upgrade_
bundle_ strurl - The url to download the Manager Upgrade bundle.
- bundle_
upload_ floattimeout - Timeout for uploading upgrade bundle in seconds. Default is
3600
. - precheck_
bundle_ strurl - The url to download the Precheck bundle.
- precheck_
timeout float - Timeout for executing pre-upgrade checks in seconds. Default is
3600
. - uc_
upgrade_ floattimeout - Timeout for upgrading upgrade coordinator in seconds. Default is
1800
. - upgrade_
prepare_ strid - 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
- accept
User BooleanAgreement - This field must be set to true otherwise upgrade will not proceed.
- upgrade
Bundle StringUrl - The url to download the Manager Upgrade bundle.
- bundle
Upload NumberTimeout - Timeout for uploading upgrade bundle in seconds. Default is
3600
. - precheck
Bundle StringUrl - The url to download the Precheck bundle.
- precheck
Timeout Number - Timeout for executing pre-upgrade checks in seconds. Default is
3600
. - uc
Upgrade NumberTimeout - Timeout for upgrading upgrade coordinator in seconds. Default is
1800
. - upgrade
Prepare StringId - 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:
- Failed
Prechecks List<UpgradePrepare Failed Precheck> - (Computed) Failed prechecks from running pre-upgrade check.
- Id string
- The provider-assigned unique ID for this managed resource.
- Target
Version string - Target system version
- Failed
Prechecks []UpgradePrepare Failed Precheck - (Computed) Failed prechecks from running pre-upgrade check.
- Id string
- The provider-assigned unique ID for this managed resource.
- Target
Version string - Target system version
- failed
Prechecks List<UpgradePrepare Failed Precheck> - (Computed) Failed prechecks from running pre-upgrade check.
- id String
- The provider-assigned unique ID for this managed resource.
- target
Version String - Target system version
- failed
Prechecks UpgradePrepare Failed Precheck[] - (Computed) Failed prechecks from running pre-upgrade check.
- id string
- The provider-assigned unique ID for this managed resource.
- target
Version string - Target system version
- failed_
prechecks Sequence[UpgradePrepare Failed Precheck] - (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
- failed
Prechecks List<Property Map> - (Computed) Failed prechecks from running pre-upgrade check.
- id String
- The provider-assigned unique ID for this managed resource.
- target
Version 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.
- Accept
User boolAgreement - This field must be set to true otherwise upgrade will not proceed.
- Bundle
Upload doubleTimeout - Timeout for uploading upgrade bundle in seconds. Default is
3600
. - Failed
Prechecks List<UpgradePrepare Failed Precheck> - (Computed) Failed prechecks from running pre-upgrade check.
- Precheck
Bundle stringUrl - The url to download the Precheck bundle.
- Precheck
Timeout double - Timeout for executing pre-upgrade checks in seconds. Default is
3600
. - Target
Version string - Target system version
- Uc
Upgrade doubleTimeout - Timeout for upgrading upgrade coordinator in seconds. Default is
1800
. - Upgrade
Bundle stringUrl - The url to download the Manager Upgrade bundle.
- Upgrade
Prepare stringId - 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 boolAgreement - This field must be set to true otherwise upgrade will not proceed.
- Bundle
Upload float64Timeout - Timeout for uploading upgrade bundle in seconds. Default is
3600
. - Failed
Prechecks []UpgradePrepare Failed Precheck Args - (Computed) Failed prechecks from running pre-upgrade check.
- Precheck
Bundle stringUrl - The url to download the Precheck bundle.
- Precheck
Timeout float64 - Timeout for executing pre-upgrade checks in seconds. Default is
3600
. - Target
Version string - Target system version
- Uc
Upgrade float64Timeout - Timeout for upgrading upgrade coordinator in seconds. Default is
1800
. - Upgrade
Bundle stringUrl - The url to download the Manager Upgrade bundle.
- Upgrade
Prepare stringId - 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 BooleanAgreement - This field must be set to true otherwise upgrade will not proceed.
- bundle
Upload DoubleTimeout - Timeout for uploading upgrade bundle in seconds. Default is
3600
. - failed
Prechecks List<UpgradePrepare Failed Precheck> - (Computed) Failed prechecks from running pre-upgrade check.
- precheck
Bundle StringUrl - The url to download the Precheck bundle.
- precheck
Timeout Double - Timeout for executing pre-upgrade checks in seconds. Default is
3600
. - target
Version String - Target system version
- uc
Upgrade DoubleTimeout - Timeout for upgrading upgrade coordinator in seconds. Default is
1800
. - upgrade
Bundle StringUrl - The url to download the Manager Upgrade bundle.
- upgrade
Prepare StringId - 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 booleanAgreement - This field must be set to true otherwise upgrade will not proceed.
- bundle
Upload numberTimeout - Timeout for uploading upgrade bundle in seconds. Default is
3600
. - failed
Prechecks UpgradePrepare Failed Precheck[] - (Computed) Failed prechecks from running pre-upgrade check.
- precheck
Bundle stringUrl - The url to download the Precheck bundle.
- precheck
Timeout number - Timeout for executing pre-upgrade checks in seconds. Default is
3600
. - target
Version string - Target system version
- uc
Upgrade numberTimeout - Timeout for upgrading upgrade coordinator in seconds. Default is
1800
. - upgrade
Bundle stringUrl - The url to download the Manager Upgrade bundle.
- upgrade
Prepare stringId - 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_ boolagreement - This field must be set to true otherwise upgrade will not proceed.
- bundle_
upload_ floattimeout - Timeout for uploading upgrade bundle in seconds. Default is
3600
. - failed_
prechecks Sequence[UpgradePrepare Failed Precheck Args] - (Computed) Failed prechecks from running pre-upgrade check.
- precheck_
bundle_ strurl - 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_ floattimeout - Timeout for upgrading upgrade coordinator in seconds. Default is
1800
. - upgrade_
bundle_ strurl - The url to download the Manager Upgrade bundle.
- upgrade_
prepare_ strid - 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
- accept
User BooleanAgreement - This field must be set to true otherwise upgrade will not proceed.
- bundle
Upload NumberTimeout - Timeout for uploading upgrade bundle in seconds. Default is
3600
. - failed
Prechecks List<Property Map> - (Computed) Failed prechecks from running pre-upgrade check.
- precheck
Bundle StringUrl - The url to download the Precheck bundle.
- precheck
Timeout Number - Timeout for executing pre-upgrade checks in seconds. Default is
3600
. - target
Version String - Target system version
- uc
Upgrade NumberTimeout - Timeout for upgrading upgrade coordinator in seconds. Default is
1800
. - upgrade
Bundle StringUrl - The url to download the Manager Upgrade bundle.
- upgrade
Prepare StringId - 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.
- 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 string - The resolution status of precheck failure.
- Type string
- Type of the failed precheck, possible values are
WARNING
andFAILURE
.
- 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.
- 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 string - The resolution status of precheck failure.
- Type string
- Type of the failed precheck, possible values are
WARNING
andFAILURE
.
- 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.
- needs
Ack Boolean - Boolean value which identifies if acknowledgement is required for the precheck.
- needs
Resolve Boolean - Boolean value identifies if resolution is required for the precheck.
- resolution
Status String - The resolution status of precheck failure.
- type String
- Type of the failed precheck, possible values are
WARNING
andFAILURE
.
- 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.
- needs
Ack boolean - Boolean value which identifies if acknowledgement is required for the precheck.
- needs
Resolve boolean - Boolean value identifies if resolution is required for the precheck.
- resolution
Status string - The resolution status of precheck failure.
- type string
- Type of the failed precheck, possible values are
WARNING
andFAILURE
.
- 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
andFAILURE
.
- 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.
- needs
Ack Boolean - Boolean value which identifies if acknowledgement is required for the precheck.
- needs
Resolve Boolean - Boolean value identifies if resolution is required for the precheck.
- resolution
Status String - The resolution status of precheck failure.
- type String
- Type of the failed precheck, possible values are
WARNING
andFAILURE
.
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.