Viewing docs for vcd 3.14.1
published on Monday, Apr 14, 2025 by vmware
published on Monday, Apr 14, 2025 by vmware
Viewing docs for vcd 3.14.1
published on Monday, Apr 14, 2025 by vmware
published on Monday, Apr 14, 2025 by vmware
Provides a resource to manage Global Default NSX-T Segment Profile Templates.
Supported in provider v3.11+ and VCD 10.4.0+ with NSX-T. Requires System Administrator privileges.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as vcd from "@pulumi/vcd";
const singleton = new vcd.NsxtGlobalDefaultSegmentProfileTemplate("singleton", {});
import pulumi
import pulumi_vcd as vcd
singleton = vcd.NsxtGlobalDefaultSegmentProfileTemplate("singleton")
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 {
_, err := vcd.NewNsxtGlobalDefaultSegmentProfileTemplate(ctx, "singleton", 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 singleton = new Vcd.NsxtGlobalDefaultSegmentProfileTemplate("singleton");
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.vcd.NsxtGlobalDefaultSegmentProfileTemplate;
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 singleton = new NsxtGlobalDefaultSegmentProfileTemplate("singleton");
}
}
resources:
singleton:
type: vcd:NsxtGlobalDefaultSegmentProfileTemplate
Using getNsxtGlobalDefaultSegmentProfileTemplate
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 getNsxtGlobalDefaultSegmentProfileTemplate(args: GetNsxtGlobalDefaultSegmentProfileTemplateArgs, opts?: InvokeOptions): Promise<GetNsxtGlobalDefaultSegmentProfileTemplateResult>
function getNsxtGlobalDefaultSegmentProfileTemplateOutput(args: GetNsxtGlobalDefaultSegmentProfileTemplateOutputArgs, opts?: InvokeOptions): Output<GetNsxtGlobalDefaultSegmentProfileTemplateResult>def get_nsxt_global_default_segment_profile_template(id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetNsxtGlobalDefaultSegmentProfileTemplateResult
def get_nsxt_global_default_segment_profile_template_output(id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetNsxtGlobalDefaultSegmentProfileTemplateResult]func LookupNsxtGlobalDefaultSegmentProfileTemplate(ctx *Context, args *LookupNsxtGlobalDefaultSegmentProfileTemplateArgs, opts ...InvokeOption) (*LookupNsxtGlobalDefaultSegmentProfileTemplateResult, error)
func LookupNsxtGlobalDefaultSegmentProfileTemplateOutput(ctx *Context, args *LookupNsxtGlobalDefaultSegmentProfileTemplateOutputArgs, opts ...InvokeOption) LookupNsxtGlobalDefaultSegmentProfileTemplateResultOutput> Note: This function is named LookupNsxtGlobalDefaultSegmentProfileTemplate in the Go SDK.
public static class GetNsxtGlobalDefaultSegmentProfileTemplate
{
public static Task<GetNsxtGlobalDefaultSegmentProfileTemplateResult> InvokeAsync(GetNsxtGlobalDefaultSegmentProfileTemplateArgs args, InvokeOptions? opts = null)
public static Output<GetNsxtGlobalDefaultSegmentProfileTemplateResult> Invoke(GetNsxtGlobalDefaultSegmentProfileTemplateInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetNsxtGlobalDefaultSegmentProfileTemplateResult> getNsxtGlobalDefaultSegmentProfileTemplate(GetNsxtGlobalDefaultSegmentProfileTemplateArgs args, InvokeOptions options)
public static Output<GetNsxtGlobalDefaultSegmentProfileTemplateResult> getNsxtGlobalDefaultSegmentProfileTemplate(GetNsxtGlobalDefaultSegmentProfileTemplateArgs args, InvokeOptions options)
fn::invoke:
function: vcd:index/getNsxtGlobalDefaultSegmentProfileTemplate:getNsxtGlobalDefaultSegmentProfileTemplate
arguments:
# arguments dictionaryThe following arguments are supported:
- Id string
- Id string
- id String
- id string
- id str
- id String
getNsxtGlobalDefaultSegmentProfileTemplate Result
The following output properties are available:
- Id string
- Vapp
Networks stringDefault Segment Profile Template Id - Global Default Segment Profile Template ID for all vApp Networks
- Vdc
Networks stringDefault Segment Profile Template Id - Global Default Segment Profile Template ID for all VDC Networks
- Id string
- Vapp
Networks stringDefault Segment Profile Template Id - Global Default Segment Profile Template ID for all vApp Networks
- Vdc
Networks stringDefault Segment Profile Template Id - Global Default Segment Profile Template ID for all VDC Networks
- id String
- vapp
Networks StringDefault Segment Profile Template Id - Global Default Segment Profile Template ID for all vApp Networks
- vdc
Networks StringDefault Segment Profile Template Id - Global Default Segment Profile Template ID for all VDC Networks
- id string
- vapp
Networks stringDefault Segment Profile Template Id - Global Default Segment Profile Template ID for all vApp Networks
- vdc
Networks stringDefault Segment Profile Template Id - Global Default Segment Profile Template ID for all VDC Networks
- id str
- vapp_
networks_ strdefault_ segment_ profile_ template_ id - Global Default Segment Profile Template ID for all vApp Networks
- vdc_
networks_ strdefault_ segment_ profile_ template_ id - Global Default Segment Profile Template ID for all VDC Networks
- id String
- vapp
Networks StringDefault Segment Profile Template Id - Global Default Segment Profile Template ID for all vApp Networks
- vdc
Networks StringDefault Segment Profile Template Id - Global Default Segment Profile Template ID for all VDC Networks
Package Details
- Repository
- vcd vmware/terraform-provider-vcd
- License
- Notes
- This Pulumi package is based on the
vcdTerraform Provider.
Viewing docs for vcd 3.14.1
published on Monday, Apr 14, 2025 by vmware
published on Monday, Apr 14, 2025 by vmware
