published on Monday, May 18, 2026 by vmware
published on Monday, May 18, 2026 by vmware
Create PolicySegmentPortProfileBindings Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PolicySegmentPortProfileBindings(name: string, args: PolicySegmentPortProfileBindingsArgs, opts?: CustomResourceOptions);@overload
def PolicySegmentPortProfileBindings(resource_name: str,
args: PolicySegmentPortProfileBindingsArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PolicySegmentPortProfileBindings(resource_name: str,
opts: Optional[ResourceOptions] = None,
segment_port_path: Optional[str] = None,
context: Optional[PolicySegmentPortProfileBindingsContextArgs] = None,
discovery_profile: Optional[PolicySegmentPortProfileBindingsDiscoveryProfileArgs] = None,
policy_segment_port_profile_bindings_id: Optional[str] = None,
qos_profile: Optional[PolicySegmentPortProfileBindingsQosProfileArgs] = None,
security_profile: Optional[PolicySegmentPortProfileBindingsSecurityProfileArgs] = None)func NewPolicySegmentPortProfileBindings(ctx *Context, name string, args PolicySegmentPortProfileBindingsArgs, opts ...ResourceOption) (*PolicySegmentPortProfileBindings, error)public PolicySegmentPortProfileBindings(string name, PolicySegmentPortProfileBindingsArgs args, CustomResourceOptions? opts = null)
public PolicySegmentPortProfileBindings(String name, PolicySegmentPortProfileBindingsArgs args)
public PolicySegmentPortProfileBindings(String name, PolicySegmentPortProfileBindingsArgs args, CustomResourceOptions options)
type: nsxt:PolicySegmentPortProfileBindings
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "nsxt_policysegmentportprofilebindings" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args PolicySegmentPortProfileBindingsArgs
- 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 PolicySegmentPortProfileBindingsArgs
- 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 PolicySegmentPortProfileBindingsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PolicySegmentPortProfileBindingsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PolicySegmentPortProfileBindingsArgs
- 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 policySegmentPortProfileBindingsResource = new Nsxt.PolicySegmentPortProfileBindings("policySegmentPortProfileBindingsResource", new()
{
SegmentPortPath = "string",
Context = new Nsxt.Inputs.PolicySegmentPortProfileBindingsContextArgs
{
ProjectId = "string",
},
DiscoveryProfile = new Nsxt.Inputs.PolicySegmentPortProfileBindingsDiscoveryProfileArgs
{
BindingMapPath = "string",
IpDiscoveryProfilePath = "string",
MacDiscoveryProfilePath = "string",
Revision = 0,
},
PolicySegmentPortProfileBindingsId = "string",
QosProfile = new Nsxt.Inputs.PolicySegmentPortProfileBindingsQosProfileArgs
{
QosProfilePath = "string",
BindingMapPath = "string",
Revision = 0,
},
SecurityProfile = new Nsxt.Inputs.PolicySegmentPortProfileBindingsSecurityProfileArgs
{
BindingMapPath = "string",
Revision = 0,
SecurityProfilePath = "string",
SpoofguardProfilePath = "string",
},
});
example, err := nsxt.NewPolicySegmentPortProfileBindings(ctx, "policySegmentPortProfileBindingsResource", &nsxt.PolicySegmentPortProfileBindingsArgs{
SegmentPortPath: pulumi.String("string"),
Context: &nsxt.PolicySegmentPortProfileBindingsContextArgs{
ProjectId: pulumi.String("string"),
},
DiscoveryProfile: &nsxt.PolicySegmentPortProfileBindingsDiscoveryProfileArgs{
BindingMapPath: pulumi.String("string"),
IpDiscoveryProfilePath: pulumi.String("string"),
MacDiscoveryProfilePath: pulumi.String("string"),
Revision: pulumi.Float64(0),
},
PolicySegmentPortProfileBindingsId: pulumi.String("string"),
QosProfile: &nsxt.PolicySegmentPortProfileBindingsQosProfileArgs{
QosProfilePath: pulumi.String("string"),
BindingMapPath: pulumi.String("string"),
Revision: pulumi.Float64(0),
},
SecurityProfile: &nsxt.PolicySegmentPortProfileBindingsSecurityProfileArgs{
BindingMapPath: pulumi.String("string"),
Revision: pulumi.Float64(0),
SecurityProfilePath: pulumi.String("string"),
SpoofguardProfilePath: pulumi.String("string"),
},
})
resource "nsxt_policysegmentportprofilebindings" "policySegmentPortProfileBindingsResource" {
segment_port_path = "string"
context = {
project_id = "string"
}
discovery_profile = {
binding_map_path = "string"
ip_discovery_profile_path = "string"
mac_discovery_profile_path = "string"
revision = 0
}
policy_segment_port_profile_bindings_id = "string"
qos_profile = {
qos_profile_path = "string"
binding_map_path = "string"
revision = 0
}
security_profile = {
binding_map_path = "string"
revision = 0
security_profile_path = "string"
spoofguard_profile_path = "string"
}
}
var policySegmentPortProfileBindingsResource = new PolicySegmentPortProfileBindings("policySegmentPortProfileBindingsResource", PolicySegmentPortProfileBindingsArgs.builder()
.segmentPortPath("string")
.context(PolicySegmentPortProfileBindingsContextArgs.builder()
.projectId("string")
.build())
.discoveryProfile(PolicySegmentPortProfileBindingsDiscoveryProfileArgs.builder()
.bindingMapPath("string")
.ipDiscoveryProfilePath("string")
.macDiscoveryProfilePath("string")
.revision(0.0)
.build())
.policySegmentPortProfileBindingsId("string")
.qosProfile(PolicySegmentPortProfileBindingsQosProfileArgs.builder()
.qosProfilePath("string")
.bindingMapPath("string")
.revision(0.0)
.build())
.securityProfile(PolicySegmentPortProfileBindingsSecurityProfileArgs.builder()
.bindingMapPath("string")
.revision(0.0)
.securityProfilePath("string")
.spoofguardProfilePath("string")
.build())
.build());
policy_segment_port_profile_bindings_resource = nsxt.PolicySegmentPortProfileBindings("policySegmentPortProfileBindingsResource",
segment_port_path="string",
context={
"project_id": "string",
},
discovery_profile={
"binding_map_path": "string",
"ip_discovery_profile_path": "string",
"mac_discovery_profile_path": "string",
"revision": float(0),
},
policy_segment_port_profile_bindings_id="string",
qos_profile={
"qos_profile_path": "string",
"binding_map_path": "string",
"revision": float(0),
},
security_profile={
"binding_map_path": "string",
"revision": float(0),
"security_profile_path": "string",
"spoofguard_profile_path": "string",
})
const policySegmentPortProfileBindingsResource = new nsxt.PolicySegmentPortProfileBindings("policySegmentPortProfileBindingsResource", {
segmentPortPath: "string",
context: {
projectId: "string",
},
discoveryProfile: {
bindingMapPath: "string",
ipDiscoveryProfilePath: "string",
macDiscoveryProfilePath: "string",
revision: 0,
},
policySegmentPortProfileBindingsId: "string",
qosProfile: {
qosProfilePath: "string",
bindingMapPath: "string",
revision: 0,
},
securityProfile: {
bindingMapPath: "string",
revision: 0,
securityProfilePath: "string",
spoofguardProfilePath: "string",
},
});
type: nsxt:PolicySegmentPortProfileBindings
properties:
context:
projectId: string
discoveryProfile:
bindingMapPath: string
ipDiscoveryProfilePath: string
macDiscoveryProfilePath: string
revision: 0
policySegmentPortProfileBindingsId: string
qosProfile:
bindingMapPath: string
qosProfilePath: string
revision: 0
securityProfile:
bindingMapPath: string
revision: 0
securityProfilePath: string
spoofguardProfilePath: string
segmentPortPath: string
PolicySegmentPortProfileBindings 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 PolicySegmentPortProfileBindings resource accepts the following input properties:
- Segment
Port stringPath - The path of the existing segment port to bind profiles to.
- Context
Policy
Segment Port Profile Bindings Context - The context which the object belongs to
- Discovery
Profile PolicySegment Port Profile Bindings Discovery Profile - IP and MAC discovery profiles for this segment port.
- Policy
Segment stringPort Profile Bindings Id - ID of the Segment Port.
- Qos
Profile PolicySegment Port Profile Bindings Qos Profile - QoS profile for this segment port.
- Security
Profile PolicySegment Port Profile Bindings Security Profile - Security profiles for this segment port.
- Segment
Port stringPath - The path of the existing segment port to bind profiles to.
- Context
Policy
Segment Port Profile Bindings Context Args - The context which the object belongs to
- Discovery
Profile PolicySegment Port Profile Bindings Discovery Profile Args - IP and MAC discovery profiles for this segment port.
- Policy
Segment stringPort Profile Bindings Id - ID of the Segment Port.
- Qos
Profile PolicySegment Port Profile Bindings Qos Profile Args - QoS profile for this segment port.
- Security
Profile PolicySegment Port Profile Bindings Security Profile Args - Security profiles for this segment port.
- segment_
port_ stringpath - The path of the existing segment port to bind profiles to.
- context object
- The context which the object belongs to
- discovery_
profile object - IP and MAC discovery profiles for this segment port.
- policy_
segment_ stringport_ profile_ bindings_ id - ID of the Segment Port.
- qos_
profile object - QoS profile for this segment port.
- security_
profile object - Security profiles for this segment port.
- segment
Port StringPath - The path of the existing segment port to bind profiles to.
- context
Policy
Segment Port Profile Bindings Context - The context which the object belongs to
- discovery
Profile PolicySegment Port Profile Bindings Discovery Profile - IP and MAC discovery profiles for this segment port.
- policy
Segment StringPort Profile Bindings Id - ID of the Segment Port.
- qos
Profile PolicySegment Port Profile Bindings Qos Profile - QoS profile for this segment port.
- security
Profile PolicySegment Port Profile Bindings Security Profile - Security profiles for this segment port.
- segment
Port stringPath - The path of the existing segment port to bind profiles to.
- context
Policy
Segment Port Profile Bindings Context - The context which the object belongs to
- discovery
Profile PolicySegment Port Profile Bindings Discovery Profile - IP and MAC discovery profiles for this segment port.
- policy
Segment stringPort Profile Bindings Id - ID of the Segment Port.
- qos
Profile PolicySegment Port Profile Bindings Qos Profile - QoS profile for this segment port.
- security
Profile PolicySegment Port Profile Bindings Security Profile - Security profiles for this segment port.
- segment_
port_ strpath - The path of the existing segment port to bind profiles to.
- context
Policy
Segment Port Profile Bindings Context Args - The context which the object belongs to
- discovery_
profile PolicySegment Port Profile Bindings Discovery Profile Args - IP and MAC discovery profiles for this segment port.
- policy_
segment_ strport_ profile_ bindings_ id - ID of the Segment Port.
- qos_
profile PolicySegment Port Profile Bindings Qos Profile Args - QoS profile for this segment port.
- security_
profile PolicySegment Port Profile Bindings Security Profile Args - Security profiles for this segment port.
- segment
Port StringPath - The path of the existing segment port to bind profiles to.
- context Property Map
- The context which the object belongs to
- discovery
Profile Property Map - IP and MAC discovery profiles for this segment port.
- policy
Segment StringPort Profile Bindings Id - ID of the Segment Port.
- qos
Profile Property Map - QoS profile for this segment port.
- security
Profile Property Map - Security profiles for this segment port.
Outputs
All input properties are implicitly available as output properties. Additionally, the PolicySegmentPortProfileBindings resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing PolicySegmentPortProfileBindings Resource
Get an existing PolicySegmentPortProfileBindings 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?: PolicySegmentPortProfileBindingsState, opts?: CustomResourceOptions): PolicySegmentPortProfileBindings@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
context: Optional[PolicySegmentPortProfileBindingsContextArgs] = None,
discovery_profile: Optional[PolicySegmentPortProfileBindingsDiscoveryProfileArgs] = None,
policy_segment_port_profile_bindings_id: Optional[str] = None,
qos_profile: Optional[PolicySegmentPortProfileBindingsQosProfileArgs] = None,
security_profile: Optional[PolicySegmentPortProfileBindingsSecurityProfileArgs] = None,
segment_port_path: Optional[str] = None) -> PolicySegmentPortProfileBindingsfunc GetPolicySegmentPortProfileBindings(ctx *Context, name string, id IDInput, state *PolicySegmentPortProfileBindingsState, opts ...ResourceOption) (*PolicySegmentPortProfileBindings, error)public static PolicySegmentPortProfileBindings Get(string name, Input<string> id, PolicySegmentPortProfileBindingsState? state, CustomResourceOptions? opts = null)public static PolicySegmentPortProfileBindings get(String name, Output<String> id, PolicySegmentPortProfileBindingsState state, CustomResourceOptions options)resources: _: type: nsxt:PolicySegmentPortProfileBindings get: id: ${id}import {
to = nsxt_policysegmentportprofilebindings.example
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.
- Context
Policy
Segment Port Profile Bindings Context - The context which the object belongs to
- Discovery
Profile PolicySegment Port Profile Bindings Discovery Profile - IP and MAC discovery profiles for this segment port.
- Policy
Segment stringPort Profile Bindings Id - ID of the Segment Port.
- Qos
Profile PolicySegment Port Profile Bindings Qos Profile - QoS profile for this segment port.
- Security
Profile PolicySegment Port Profile Bindings Security Profile - Security profiles for this segment port.
- Segment
Port stringPath - The path of the existing segment port to bind profiles to.
- Context
Policy
Segment Port Profile Bindings Context Args - The context which the object belongs to
- Discovery
Profile PolicySegment Port Profile Bindings Discovery Profile Args - IP and MAC discovery profiles for this segment port.
- Policy
Segment stringPort Profile Bindings Id - ID of the Segment Port.
- Qos
Profile PolicySegment Port Profile Bindings Qos Profile Args - QoS profile for this segment port.
- Security
Profile PolicySegment Port Profile Bindings Security Profile Args - Security profiles for this segment port.
- Segment
Port stringPath - The path of the existing segment port to bind profiles to.
- context object
- The context which the object belongs to
- discovery_
profile object - IP and MAC discovery profiles for this segment port.
- policy_
segment_ stringport_ profile_ bindings_ id - ID of the Segment Port.
- qos_
profile object - QoS profile for this segment port.
- security_
profile object - Security profiles for this segment port.
- segment_
port_ stringpath - The path of the existing segment port to bind profiles to.
- context
Policy
Segment Port Profile Bindings Context - The context which the object belongs to
- discovery
Profile PolicySegment Port Profile Bindings Discovery Profile - IP and MAC discovery profiles for this segment port.
- policy
Segment StringPort Profile Bindings Id - ID of the Segment Port.
- qos
Profile PolicySegment Port Profile Bindings Qos Profile - QoS profile for this segment port.
- security
Profile PolicySegment Port Profile Bindings Security Profile - Security profiles for this segment port.
- segment
Port StringPath - The path of the existing segment port to bind profiles to.
- context
Policy
Segment Port Profile Bindings Context - The context which the object belongs to
- discovery
Profile PolicySegment Port Profile Bindings Discovery Profile - IP and MAC discovery profiles for this segment port.
- policy
Segment stringPort Profile Bindings Id - ID of the Segment Port.
- qos
Profile PolicySegment Port Profile Bindings Qos Profile - QoS profile for this segment port.
- security
Profile PolicySegment Port Profile Bindings Security Profile - Security profiles for this segment port.
- segment
Port stringPath - The path of the existing segment port to bind profiles to.
- context
Policy
Segment Port Profile Bindings Context Args - The context which the object belongs to
- discovery_
profile PolicySegment Port Profile Bindings Discovery Profile Args - IP and MAC discovery profiles for this segment port.
- policy_
segment_ strport_ profile_ bindings_ id - ID of the Segment Port.
- qos_
profile PolicySegment Port Profile Bindings Qos Profile Args - QoS profile for this segment port.
- security_
profile PolicySegment Port Profile Bindings Security Profile Args - Security profiles for this segment port.
- segment_
port_ strpath - The path of the existing segment port to bind profiles to.
- context Property Map
- The context which the object belongs to
- discovery
Profile Property Map - IP and MAC discovery profiles for this segment port.
- policy
Segment StringPort Profile Bindings Id - ID of the Segment Port.
- qos
Profile Property Map - QoS profile for this segment port.
- security
Profile Property Map - Security profiles for this segment port.
- segment
Port StringPath - The path of the existing segment port to bind profiles to.
Supporting Types
PolicySegmentPortProfileBindingsContext, PolicySegmentPortProfileBindingsContextArgs
- Project
Id string - The ID of the project which the object belongs to
- Project
Id string - The ID of the project which the object belongs to
- project_
id string - The ID of the project which the object belongs to
- project
Id String - The ID of the project which the object belongs to
- project
Id string - The ID of the project which the object belongs to
- project_
id str - The ID of the project which the object belongs to
- project
Id String - The ID of the project which the object belongs to
PolicySegmentPortProfileBindingsDiscoveryProfile, PolicySegmentPortProfileBindingsDiscoveryProfileArgs
- Binding
Map stringPath - Policy path of the security profile binding map.
- Ip
Discovery stringProfile Path - Policy path of the IP Discovery Profile to bind.
- Mac
Discovery stringProfile Path - Policy path of the MAC Discovery Profile to bind.
- Revision double
- Revision number of the binding map.
- Binding
Map stringPath - Policy path of the security profile binding map.
- Ip
Discovery stringProfile Path - Policy path of the IP Discovery Profile to bind.
- Mac
Discovery stringProfile Path - Policy path of the MAC Discovery Profile to bind.
- Revision float64
- Revision number of the binding map.
- binding_
map_ stringpath - Policy path of the security profile binding map.
- ip_
discovery_ stringprofile_ path - Policy path of the IP Discovery Profile to bind.
- mac_
discovery_ stringprofile_ path - Policy path of the MAC Discovery Profile to bind.
- revision number
- Revision number of the binding map.
- binding
Map StringPath - Policy path of the security profile binding map.
- ip
Discovery StringProfile Path - Policy path of the IP Discovery Profile to bind.
- mac
Discovery StringProfile Path - Policy path of the MAC Discovery Profile to bind.
- revision Double
- Revision number of the binding map.
- binding
Map stringPath - Policy path of the security profile binding map.
- ip
Discovery stringProfile Path - Policy path of the IP Discovery Profile to bind.
- mac
Discovery stringProfile Path - Policy path of the MAC Discovery Profile to bind.
- revision number
- Revision number of the binding map.
- binding_
map_ strpath - Policy path of the security profile binding map.
- ip_
discovery_ strprofile_ path - Policy path of the IP Discovery Profile to bind.
- mac_
discovery_ strprofile_ path - Policy path of the MAC Discovery Profile to bind.
- revision float
- Revision number of the binding map.
- binding
Map StringPath - Policy path of the security profile binding map.
- ip
Discovery StringProfile Path - Policy path of the IP Discovery Profile to bind.
- mac
Discovery StringProfile Path - Policy path of the MAC Discovery Profile to bind.
- revision Number
- Revision number of the binding map.
PolicySegmentPortProfileBindingsQosProfile, PolicySegmentPortProfileBindingsQosProfileArgs
- Qos
Profile stringPath - Policy path of the QoS Profile to bind.
- Binding
Map stringPath - Policy path of the security profile binding map.
- Revision double
- Revision number of the binding map.
- Qos
Profile stringPath - Policy path of the QoS Profile to bind.
- Binding
Map stringPath - Policy path of the security profile binding map.
- Revision float64
- Revision number of the binding map.
- qos_
profile_ stringpath - Policy path of the QoS Profile to bind.
- binding_
map_ stringpath - Policy path of the security profile binding map.
- revision number
- Revision number of the binding map.
- qos
Profile StringPath - Policy path of the QoS Profile to bind.
- binding
Map StringPath - Policy path of the security profile binding map.
- revision Double
- Revision number of the binding map.
- qos
Profile stringPath - Policy path of the QoS Profile to bind.
- binding
Map stringPath - Policy path of the security profile binding map.
- revision number
- Revision number of the binding map.
- qos_
profile_ strpath - Policy path of the QoS Profile to bind.
- binding_
map_ strpath - Policy path of the security profile binding map.
- revision float
- Revision number of the binding map.
- qos
Profile StringPath - Policy path of the QoS Profile to bind.
- binding
Map StringPath - Policy path of the security profile binding map.
- revision Number
- Revision number of the binding map.
PolicySegmentPortProfileBindingsSecurityProfile, PolicySegmentPortProfileBindingsSecurityProfileArgs
- Binding
Map stringPath - Policy path of the security profile binding map.
- Revision double
- Revision number of the binding map.
- Security
Profile stringPath - Policy path of the Segment Security Profile to bind.
- Spoofguard
Profile stringPath - Policy path of the Spoofguard Profile to bind.
- Binding
Map stringPath - Policy path of the security profile binding map.
- Revision float64
- Revision number of the binding map.
- Security
Profile stringPath - Policy path of the Segment Security Profile to bind.
- Spoofguard
Profile stringPath - Policy path of the Spoofguard Profile to bind.
- binding_
map_ stringpath - Policy path of the security profile binding map.
- revision number
- Revision number of the binding map.
- security_
profile_ stringpath - Policy path of the Segment Security Profile to bind.
- spoofguard_
profile_ stringpath - Policy path of the Spoofguard Profile to bind.
- binding
Map StringPath - Policy path of the security profile binding map.
- revision Double
- Revision number of the binding map.
- security
Profile StringPath - Policy path of the Segment Security Profile to bind.
- spoofguard
Profile StringPath - Policy path of the Spoofguard Profile to bind.
- binding
Map stringPath - Policy path of the security profile binding map.
- revision number
- Revision number of the binding map.
- security
Profile stringPath - Policy path of the Segment Security Profile to bind.
- spoofguard
Profile stringPath - Policy path of the Spoofguard Profile to bind.
- binding_
map_ strpath - Policy path of the security profile binding map.
- revision float
- Revision number of the binding map.
- security_
profile_ strpath - Policy path of the Segment Security Profile to bind.
- spoofguard_
profile_ strpath - Policy path of the Spoofguard Profile to bind.
- binding
Map StringPath - Policy path of the security profile binding map.
- revision Number
- Revision number of the binding map.
- security
Profile StringPath - Policy path of the Segment Security Profile to bind.
- spoofguard
Profile StringPath - Policy path of the Spoofguard Profile to bind.
Package Details
- Repository
- nsxt vmware/terraform-provider-nsxt
- License
- Notes
- This Pulumi package is based on the
nsxtTerraform Provider.
published on Monday, May 18, 2026 by vmware