1. Packages
  2. Avi Provider
  3. API Docs
  4. Localworkerfdsversion
avi 31.1.1 published on Monday, Apr 14, 2025 by vmware

avi.Localworkerfdsversion

Explore with Pulumi AI

<!–

Copyright 2021 VMware, Inc.
SPDX-License-Identifier: Mozilla Public License 2.0

–>

layout: “avi”

page_title: “Avi: avi.Localworkerfdsversion” sidebar_current: “docs-avi-resource-localworkerfdsversion” description: |- Creates and manages Avi LocalWorkerFdsVersion.

avi.Localworkerfdsversion

The LocalWorkerFdsVersion resource allows the creation and management of Avi LocalWorkerFdsVersion

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as avi from "@pulumi/avi";

const foo = new avi.Localworkerfdsversion("foo", {tenantRef: "/api/tenant/?name=admin"});
Copy
import pulumi
import pulumi_avi as avi

foo = avi.Localworkerfdsversion("foo", tenant_ref="/api/tenant/?name=admin")
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/avi/v31/avi"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := avi.NewLocalworkerfdsversion(ctx, "foo", &avi.LocalworkerfdsversionArgs{
			TenantRef: pulumi.String("/api/tenant/?name=admin"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Avi = Pulumi.Avi;

return await Deployment.RunAsync(() => 
{
    var foo = new Avi.Localworkerfdsversion("foo", new()
    {
        TenantRef = "/api/tenant/?name=admin",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.avi.Localworkerfdsversion;
import com.pulumi.avi.LocalworkerfdsversionArgs;
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 foo = new Localworkerfdsversion("foo", LocalworkerfdsversionArgs.builder()
            .tenantRef("/api/tenant/?name=admin")
            .build());

    }
}
Copy
resources:
  foo:
    type: avi:Localworkerfdsversion
    properties:
      tenantRef: /api/tenant/?name=admin
Copy

Create Localworkerfdsversion Resource

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

Constructor syntax

new Localworkerfdsversion(name: string, args?: LocalworkerfdsversionArgs, opts?: CustomResourceOptions);
@overload
def Localworkerfdsversion(resource_name: str,
                          args: Optional[LocalworkerfdsversionArgs] = None,
                          opts: Optional[ResourceOptions] = None)

@overload
def Localworkerfdsversion(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          localworkerfdsversion_id: Optional[str] = None,
                          name: Optional[str] = None,
                          tenant_ref: Optional[str] = None,
                          timeline: Optional[str] = None,
                          uuid: Optional[str] = None,
                          version: Optional[str] = None)
func NewLocalworkerfdsversion(ctx *Context, name string, args *LocalworkerfdsversionArgs, opts ...ResourceOption) (*Localworkerfdsversion, error)
public Localworkerfdsversion(string name, LocalworkerfdsversionArgs? args = null, CustomResourceOptions? opts = null)
public Localworkerfdsversion(String name, LocalworkerfdsversionArgs args)
public Localworkerfdsversion(String name, LocalworkerfdsversionArgs args, CustomResourceOptions options)
type: avi:Localworkerfdsversion
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args LocalworkerfdsversionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args LocalworkerfdsversionArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args LocalworkerfdsversionArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args LocalworkerfdsversionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. LocalworkerfdsversionArgs
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 localworkerfdsversionResource = new Avi.Localworkerfdsversion("localworkerfdsversionResource", new()
{
    LocalworkerfdsversionId = "string",
    Name = "string",
    TenantRef = "string",
    Timeline = "string",
    Uuid = "string",
    Version = "string",
});
Copy
example, err := avi.NewLocalworkerfdsversion(ctx, "localworkerfdsversionResource", &avi.LocalworkerfdsversionArgs{
LocalworkerfdsversionId: pulumi.String("string"),
Name: pulumi.String("string"),
TenantRef: pulumi.String("string"),
Timeline: pulumi.String("string"),
Uuid: pulumi.String("string"),
Version: pulumi.String("string"),
})
Copy
var localworkerfdsversionResource = new Localworkerfdsversion("localworkerfdsversionResource", LocalworkerfdsversionArgs.builder()
    .localworkerfdsversionId("string")
    .name("string")
    .tenantRef("string")
    .timeline("string")
    .uuid("string")
    .version("string")
    .build());
Copy
localworkerfdsversion_resource = avi.Localworkerfdsversion("localworkerfdsversionResource",
    localworkerfdsversion_id="string",
    name="string",
    tenant_ref="string",
    timeline="string",
    uuid="string",
    version="string")
Copy
const localworkerfdsversionResource = new avi.Localworkerfdsversion("localworkerfdsversionResource", {
    localworkerfdsversionId: "string",
    name: "string",
    tenantRef: "string",
    timeline: "string",
    uuid: "string",
    version: "string",
});
Copy
type: avi:Localworkerfdsversion
properties:
    localworkerfdsversionId: string
    name: string
    tenantRef: string
    timeline: string
    uuid: string
    version: string
Copy

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

LocalworkerfdsversionId string
Name string
Default glw fds version name. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
TenantRef string
Uuid of the tenant. It is a reference to an object of type tenant. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
Timeline string
Fds timeline maintained by glw. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
Uuid string
Default glw fds version uuid. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
Version string
Fds version maintained by glw. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
LocalworkerfdsversionId string
Name string
Default glw fds version name. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
TenantRef string
Uuid of the tenant. It is a reference to an object of type tenant. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
Timeline string
Fds timeline maintained by glw. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
Uuid string
Default glw fds version uuid. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
Version string
Fds version maintained by glw. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
localworkerfdsversionId String
name String
Default glw fds version name. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
tenantRef String
Uuid of the tenant. It is a reference to an object of type tenant. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
timeline String
Fds timeline maintained by glw. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
uuid String
Default glw fds version uuid. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
version String
Fds version maintained by glw. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
localworkerfdsversionId string
name string
Default glw fds version name. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
tenantRef string
Uuid of the tenant. It is a reference to an object of type tenant. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
timeline string
Fds timeline maintained by glw. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
uuid string
Default glw fds version uuid. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
version string
Fds version maintained by glw. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
localworkerfdsversion_id str
name str
Default glw fds version name. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
tenant_ref str
Uuid of the tenant. It is a reference to an object of type tenant. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
timeline str
Fds timeline maintained by glw. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
uuid str
Default glw fds version uuid. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
version str
Fds version maintained by glw. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
localworkerfdsversionId String
name String
Default glw fds version name. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
tenantRef String
Uuid of the tenant. It is a reference to an object of type tenant. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
timeline String
Fds timeline maintained by glw. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
uuid String
Default glw fds version uuid. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
version String
Fds version maintained by glw. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.

Outputs

All input properties are implicitly available as output properties. Additionally, the Localworkerfdsversion 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 str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing Localworkerfdsversion Resource

Get an existing Localworkerfdsversion 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?: LocalworkerfdsversionState, opts?: CustomResourceOptions): Localworkerfdsversion
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        localworkerfdsversion_id: Optional[str] = None,
        name: Optional[str] = None,
        tenant_ref: Optional[str] = None,
        timeline: Optional[str] = None,
        uuid: Optional[str] = None,
        version: Optional[str] = None) -> Localworkerfdsversion
func GetLocalworkerfdsversion(ctx *Context, name string, id IDInput, state *LocalworkerfdsversionState, opts ...ResourceOption) (*Localworkerfdsversion, error)
public static Localworkerfdsversion Get(string name, Input<string> id, LocalworkerfdsversionState? state, CustomResourceOptions? opts = null)
public static Localworkerfdsversion get(String name, Output<String> id, LocalworkerfdsversionState state, CustomResourceOptions options)
resources:  _:    type: avi:Localworkerfdsversion    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
LocalworkerfdsversionId string
Name string
Default glw fds version name. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
TenantRef string
Uuid of the tenant. It is a reference to an object of type tenant. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
Timeline string
Fds timeline maintained by glw. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
Uuid string
Default glw fds version uuid. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
Version string
Fds version maintained by glw. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
LocalworkerfdsversionId string
Name string
Default glw fds version name. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
TenantRef string
Uuid of the tenant. It is a reference to an object of type tenant. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
Timeline string
Fds timeline maintained by glw. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
Uuid string
Default glw fds version uuid. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
Version string
Fds version maintained by glw. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
localworkerfdsversionId String
name String
Default glw fds version name. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
tenantRef String
Uuid of the tenant. It is a reference to an object of type tenant. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
timeline String
Fds timeline maintained by glw. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
uuid String
Default glw fds version uuid. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
version String
Fds version maintained by glw. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
localworkerfdsversionId string
name string
Default glw fds version name. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
tenantRef string
Uuid of the tenant. It is a reference to an object of type tenant. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
timeline string
Fds timeline maintained by glw. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
uuid string
Default glw fds version uuid. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
version string
Fds version maintained by glw. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
localworkerfdsversion_id str
name str
Default glw fds version name. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
tenant_ref str
Uuid of the tenant. It is a reference to an object of type tenant. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
timeline str
Fds timeline maintained by glw. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
uuid str
Default glw fds version uuid. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
version str
Fds version maintained by glw. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
localworkerfdsversionId String
name String
Default glw fds version name. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
tenantRef String
Uuid of the tenant. It is a reference to an object of type tenant. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
timeline String
Fds timeline maintained by glw. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
uuid String
Default glw fds version uuid. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
version String
Fds version maintained by glw. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.

Package Details

Repository
avi vmware/terraform-provider-avi
License
Notes
This Pulumi package is based on the avi Terraform Provider.