vcd.getNsxtSegmentMacDiscoveryProfile
Explore with Pulumi AI
Provides a VMware Cloud Director NSX-T MAC Discovery Profile data source. This can be used to read NSX-T Segment Profile definitions.
Supported in provider v3.11+.
Example Usage
MAC Discovery Profile)
import * as pulumi from "@pulumi/pulumi";
import * as vcd from "@pulumi/vcd";
const nsxt = vcd.getNsxtManager({
name: "nsxManager1",
});
const first = nsxt.then(nsxt => vcd.getNsxtSegmentMacDiscoveryProfile({
name: "mac-discovery-profile-0",
nsxtManagerId: nsxt.id,
}));
import pulumi
import pulumi_vcd as vcd
nsxt = vcd.get_nsxt_manager(name="nsxManager1")
first = vcd.get_nsxt_segment_mac_discovery_profile(name="mac-discovery-profile-0",
nsxt_manager_id=nsxt.id)
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/vcd/v3/vcd"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
nsxt, err := vcd.GetNsxtManager(ctx, &vcd.GetNsxtManagerArgs{
Name: "nsxManager1",
}, nil)
if err != nil {
return err
}
_, err = vcd.GetNsxtSegmentMacDiscoveryProfile(ctx, &vcd.GetNsxtSegmentMacDiscoveryProfileArgs{
Name: "mac-discovery-profile-0",
NsxtManagerId: pulumi.StringRef(nsxt.Id),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Vcd = Pulumi.Vcd;
return await Deployment.RunAsync(() =>
{
var nsxt = Vcd.GetNsxtManager.Invoke(new()
{
Name = "nsxManager1",
});
var first = Vcd.GetNsxtSegmentMacDiscoveryProfile.Invoke(new()
{
Name = "mac-discovery-profile-0",
NsxtManagerId = nsxt.Apply(getNsxtManagerResult => getNsxtManagerResult.Id),
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.vcd.VcdFunctions;
import com.pulumi.vcd.inputs.GetNsxtManagerArgs;
import com.pulumi.vcd.inputs.GetNsxtSegmentMacDiscoveryProfileArgs;
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) {
final var nsxt = VcdFunctions.getNsxtManager(GetNsxtManagerArgs.builder()
.name("nsxManager1")
.build());
final var first = VcdFunctions.getNsxtSegmentMacDiscoveryProfile(GetNsxtSegmentMacDiscoveryProfileArgs.builder()
.name("mac-discovery-profile-0")
.nsxtManagerId(nsxt.applyValue(getNsxtManagerResult -> getNsxtManagerResult.id()))
.build());
}
}
variables:
nsxt:
fn::invoke:
function: vcd:getNsxtManager
arguments:
name: nsxManager1
first:
fn::invoke:
function: vcd:getNsxtSegmentMacDiscoveryProfile
arguments:
name: mac-discovery-profile-0
nsxtManagerId: ${nsxt.id}
Using getNsxtSegmentMacDiscoveryProfile
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getNsxtSegmentMacDiscoveryProfile(args: GetNsxtSegmentMacDiscoveryProfileArgs, opts?: InvokeOptions): Promise<GetNsxtSegmentMacDiscoveryProfileResult>
function getNsxtSegmentMacDiscoveryProfileOutput(args: GetNsxtSegmentMacDiscoveryProfileOutputArgs, opts?: InvokeOptions): Output<GetNsxtSegmentMacDiscoveryProfileResult>
def get_nsxt_segment_mac_discovery_profile(id: Optional[str] = None,
name: Optional[str] = None,
nsxt_manager_id: Optional[str] = None,
vdc_group_id: Optional[str] = None,
vdc_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetNsxtSegmentMacDiscoveryProfileResult
def get_nsxt_segment_mac_discovery_profile_output(id: Optional[pulumi.Input[str]] = None,
name: Optional[pulumi.Input[str]] = None,
nsxt_manager_id: Optional[pulumi.Input[str]] = None,
vdc_group_id: Optional[pulumi.Input[str]] = None,
vdc_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetNsxtSegmentMacDiscoveryProfileResult]
func GetNsxtSegmentMacDiscoveryProfile(ctx *Context, args *GetNsxtSegmentMacDiscoveryProfileArgs, opts ...InvokeOption) (*GetNsxtSegmentMacDiscoveryProfileResult, error)
func GetNsxtSegmentMacDiscoveryProfileOutput(ctx *Context, args *GetNsxtSegmentMacDiscoveryProfileOutputArgs, opts ...InvokeOption) GetNsxtSegmentMacDiscoveryProfileResultOutput
> Note: This function is named GetNsxtSegmentMacDiscoveryProfile
in the Go SDK.
public static class GetNsxtSegmentMacDiscoveryProfile
{
public static Task<GetNsxtSegmentMacDiscoveryProfileResult> InvokeAsync(GetNsxtSegmentMacDiscoveryProfileArgs args, InvokeOptions? opts = null)
public static Output<GetNsxtSegmentMacDiscoveryProfileResult> Invoke(GetNsxtSegmentMacDiscoveryProfileInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetNsxtSegmentMacDiscoveryProfileResult> getNsxtSegmentMacDiscoveryProfile(GetNsxtSegmentMacDiscoveryProfileArgs args, InvokeOptions options)
public static Output<GetNsxtSegmentMacDiscoveryProfileResult> getNsxtSegmentMacDiscoveryProfile(GetNsxtSegmentMacDiscoveryProfileArgs args, InvokeOptions options)
fn::invoke:
function: vcd:index/getNsxtSegmentMacDiscoveryProfile:getNsxtSegmentMacDiscoveryProfile
arguments:
# arguments dictionary
The following arguments are supported:
- Name string
- The name of Segment Profile
- Id string
- Nsxt
Manager stringId - Segment Profile search context. Use when searching by NSX-T manager
- Vdc
Group stringId Segment Profile search context. Use when searching by VDC group
Note: only one of
nsxt_manager_id
,vdc_id
,vdc_group_id
can be used- Vdc
Id string - Segment Profile search context. Use when searching by VDC
- Name string
- The name of Segment Profile
- Id string
- Nsxt
Manager stringId - Segment Profile search context. Use when searching by NSX-T manager
- Vdc
Group stringId Segment Profile search context. Use when searching by VDC group
Note: only one of
nsxt_manager_id
,vdc_id
,vdc_group_id
can be used- Vdc
Id string - Segment Profile search context. Use when searching by VDC
- name String
- The name of Segment Profile
- id String
- nsxt
Manager StringId - Segment Profile search context. Use when searching by NSX-T manager
- vdc
Group StringId Segment Profile search context. Use when searching by VDC group
Note: only one of
nsxt_manager_id
,vdc_id
,vdc_group_id
can be used- vdc
Id String - Segment Profile search context. Use when searching by VDC
- name string
- The name of Segment Profile
- id string
- nsxt
Manager stringId - Segment Profile search context. Use when searching by NSX-T manager
- vdc
Group stringId Segment Profile search context. Use when searching by VDC group
Note: only one of
nsxt_manager_id
,vdc_id
,vdc_group_id
can be used- vdc
Id string - Segment Profile search context. Use when searching by VDC
- name str
- The name of Segment Profile
- id str
- nsxt_
manager_ strid - Segment Profile search context. Use when searching by NSX-T manager
- vdc_
group_ strid Segment Profile search context. Use when searching by VDC group
Note: only one of
nsxt_manager_id
,vdc_id
,vdc_group_id
can be used- vdc_
id str - Segment Profile search context. Use when searching by VDC
- name String
- The name of Segment Profile
- id String
- nsxt
Manager StringId - Segment Profile search context. Use when searching by NSX-T manager
- vdc
Group StringId Segment Profile search context. Use when searching by VDC group
Note: only one of
nsxt_manager_id
,vdc_id
,vdc_group_id
can be used- vdc
Id String - Segment Profile search context. Use when searching by VDC
getNsxtSegmentMacDiscoveryProfile Result
The following output properties are available:
- Description string
- Description of MAC Discovery Profile
- Id string
- Is
Mac boolChange Enabled - Defines whether source MAC address change is enabled
- Is
Mac boolLearning Enabled - Defines whether source MAC address learning is enabled
- Is
Unknown boolUnicast Flooding Enabled - Defines whether unknown unicast flooding rule is enabled This allows flooding for unlearned MAC for ingress traffic
- Mac
Learning doubleAging Time - Aging time in seconds for learned MAC address. Indicates how long learned MAC address remain
- Mac
Limit double - The maximum number of MAC addresses that can be learned on this port
- Mac
Policy string - The policy after MAC Limit is exceeded. It can be either
ALLOW
orDROP
- Name string
- Nsxt
Manager stringId - Vdc
Group stringId - Vdc
Id string
- Description string
- Description of MAC Discovery Profile
- Id string
- Is
Mac boolChange Enabled - Defines whether source MAC address change is enabled
- Is
Mac boolLearning Enabled - Defines whether source MAC address learning is enabled
- Is
Unknown boolUnicast Flooding Enabled - Defines whether unknown unicast flooding rule is enabled This allows flooding for unlearned MAC for ingress traffic
- Mac
Learning float64Aging Time - Aging time in seconds for learned MAC address. Indicates how long learned MAC address remain
- Mac
Limit float64 - The maximum number of MAC addresses that can be learned on this port
- Mac
Policy string - The policy after MAC Limit is exceeded. It can be either
ALLOW
orDROP
- Name string
- Nsxt
Manager stringId - Vdc
Group stringId - Vdc
Id string
- description String
- Description of MAC Discovery Profile
- id String
- is
Mac BooleanChange Enabled - Defines whether source MAC address change is enabled
- is
Mac BooleanLearning Enabled - Defines whether source MAC address learning is enabled
- is
Unknown BooleanUnicast Flooding Enabled - Defines whether unknown unicast flooding rule is enabled This allows flooding for unlearned MAC for ingress traffic
- mac
Learning DoubleAging Time - Aging time in seconds for learned MAC address. Indicates how long learned MAC address remain
- mac
Limit Double - The maximum number of MAC addresses that can be learned on this port
- mac
Policy String - The policy after MAC Limit is exceeded. It can be either
ALLOW
orDROP
- name String
- nsxt
Manager StringId - vdc
Group StringId - vdc
Id String
- description string
- Description of MAC Discovery Profile
- id string
- is
Mac booleanChange Enabled - Defines whether source MAC address change is enabled
- is
Mac booleanLearning Enabled - Defines whether source MAC address learning is enabled
- is
Unknown booleanUnicast Flooding Enabled - Defines whether unknown unicast flooding rule is enabled This allows flooding for unlearned MAC for ingress traffic
- mac
Learning numberAging Time - Aging time in seconds for learned MAC address. Indicates how long learned MAC address remain
- mac
Limit number - The maximum number of MAC addresses that can be learned on this port
- mac
Policy string - The policy after MAC Limit is exceeded. It can be either
ALLOW
orDROP
- name string
- nsxt
Manager stringId - vdc
Group stringId - vdc
Id string
- description str
- Description of MAC Discovery Profile
- id str
- is_
mac_ boolchange_ enabled - Defines whether source MAC address change is enabled
- is_
mac_ boollearning_ enabled - Defines whether source MAC address learning is enabled
- is_
unknown_ boolunicast_ flooding_ enabled - Defines whether unknown unicast flooding rule is enabled This allows flooding for unlearned MAC for ingress traffic
- mac_
learning_ floataging_ time - Aging time in seconds for learned MAC address. Indicates how long learned MAC address remain
- mac_
limit float - The maximum number of MAC addresses that can be learned on this port
- mac_
policy str - The policy after MAC Limit is exceeded. It can be either
ALLOW
orDROP
- name str
- nsxt_
manager_ strid - vdc_
group_ strid - vdc_
id str
- description String
- Description of MAC Discovery Profile
- id String
- is
Mac BooleanChange Enabled - Defines whether source MAC address change is enabled
- is
Mac BooleanLearning Enabled - Defines whether source MAC address learning is enabled
- is
Unknown BooleanUnicast Flooding Enabled - Defines whether unknown unicast flooding rule is enabled This allows flooding for unlearned MAC for ingress traffic
- mac
Learning NumberAging Time - Aging time in seconds for learned MAC address. Indicates how long learned MAC address remain
- mac
Limit Number - The maximum number of MAC addresses that can be learned on this port
- mac
Policy String - The policy after MAC Limit is exceeded. It can be either
ALLOW
orDROP
- name String
- nsxt
Manager StringId - vdc
Group StringId - vdc
Id String
Package Details
- Repository
- vcd vmware/terraform-provider-vcd
- License
- Notes
- This Pulumi package is based on the
vcd
Terraform Provider.