avi.Testsedatastorelevel1
Explore with Pulumi AI
<!–
Copyright 2021 VMware, Inc.
SPDX-License-Identifier: Mozilla Public License 2.0
–>
layout: “avi”
page_title: “Avi: avi.Testsedatastorelevel1” sidebar_current: “docs-avi-resource-testsedatastorelevel1” description: |- Creates and manages Avi TestSeDatastoreLevel1.
avi.Testsedatastorelevel1
The TestSeDatastoreLevel1 resource allows the creation and management of Avi TestSeDatastoreLevel1
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as avi from "@pulumi/avi";
const foo = new avi.Testsedatastorelevel1("foo", {tenantRef: "/api/tenant/?name=admin"});
import pulumi
import pulumi_avi as avi
foo = avi.Testsedatastorelevel1("foo", tenant_ref="/api/tenant/?name=admin")
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.NewTestsedatastorelevel1(ctx, "foo", &avi.Testsedatastorelevel1Args{
TenantRef: pulumi.String("/api/tenant/?name=admin"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Avi = Pulumi.Avi;
return await Deployment.RunAsync(() =>
{
var foo = new Avi.Testsedatastorelevel1("foo", new()
{
TenantRef = "/api/tenant/?name=admin",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.avi.Testsedatastorelevel1;
import com.pulumi.avi.Testsedatastorelevel1Args;
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 Testsedatastorelevel1("foo", Testsedatastorelevel1Args.builder()
.tenantRef("/api/tenant/?name=admin")
.build());
}
}
resources:
foo:
type: avi:Testsedatastorelevel1
properties:
tenantRef: /api/tenant/?name=admin
Create Testsedatastorelevel1 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Testsedatastorelevel1(name: string, args?: Testsedatastorelevel1Args, opts?: CustomResourceOptions);
@overload
def Testsedatastorelevel1(resource_name: str,
args: Optional[Testsedatastorelevel1Args] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Testsedatastorelevel1(resource_name: str,
opts: Optional[ResourceOptions] = None,
configpb_attributes: Optional[Sequence[Testsedatastorelevel1ConfigpbAttributeArgs]] = None,
name: Optional[str] = None,
tenant_ref: Optional[str] = None,
test_se_datastore_level2_ref: Optional[str] = None,
testsedatastorelevel1_id: Optional[str] = None,
uuid: Optional[str] = None)
func NewTestsedatastorelevel1(ctx *Context, name string, args *Testsedatastorelevel1Args, opts ...ResourceOption) (*Testsedatastorelevel1, error)
public Testsedatastorelevel1(string name, Testsedatastorelevel1Args? args = null, CustomResourceOptions? opts = null)
public Testsedatastorelevel1(String name, Testsedatastorelevel1Args args)
public Testsedatastorelevel1(String name, Testsedatastorelevel1Args args, CustomResourceOptions options)
type: avi:Testsedatastorelevel1
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 Testsedatastorelevel1Args
- 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 Testsedatastorelevel1Args
- 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 Testsedatastorelevel1Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args Testsedatastorelevel1Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args Testsedatastorelevel1Args
- 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 testsedatastorelevel1Resource = new Avi.Testsedatastorelevel1("testsedatastorelevel1Resource", new()
{
ConfigpbAttributes = new[]
{
new Avi.Inputs.Testsedatastorelevel1ConfigpbAttributeArgs
{
Version = "string",
},
},
Name = "string",
TenantRef = "string",
TestSeDatastoreLevel2Ref = "string",
Testsedatastorelevel1Id = "string",
Uuid = "string",
});
example, err := avi.NewTestsedatastorelevel1(ctx, "testsedatastorelevel1Resource", &avi.Testsedatastorelevel1Args{
ConfigpbAttributes: avi.Testsedatastorelevel1ConfigpbAttributeArray{
&avi.Testsedatastorelevel1ConfigpbAttributeArgs{
Version: pulumi.String("string"),
},
},
Name: pulumi.String("string"),
TenantRef: pulumi.String("string"),
TestSeDatastoreLevel2Ref: pulumi.String("string"),
Testsedatastorelevel1Id: pulumi.String("string"),
Uuid: pulumi.String("string"),
})
var testsedatastorelevel1Resource = new Testsedatastorelevel1("testsedatastorelevel1Resource", Testsedatastorelevel1Args.builder()
.configpbAttributes(Testsedatastorelevel1ConfigpbAttributeArgs.builder()
.version("string")
.build())
.name("string")
.tenantRef("string")
.testSeDatastoreLevel2Ref("string")
.testsedatastorelevel1Id("string")
.uuid("string")
.build());
testsedatastorelevel1_resource = avi.Testsedatastorelevel1("testsedatastorelevel1Resource",
configpb_attributes=[{
"version": "string",
}],
name="string",
tenant_ref="string",
test_se_datastore_level2_ref="string",
testsedatastorelevel1_id="string",
uuid="string")
const testsedatastorelevel1Resource = new avi.Testsedatastorelevel1("testsedatastorelevel1Resource", {
configpbAttributes: [{
version: "string",
}],
name: "string",
tenantRef: "string",
testSeDatastoreLevel2Ref: "string",
testsedatastorelevel1Id: "string",
uuid: "string",
});
type: avi:Testsedatastorelevel1
properties:
configpbAttributes:
- version: string
name: string
tenantRef: string
testSeDatastoreLevel2Ref: string
testsedatastorelevel1Id: string
uuid: string
Testsedatastorelevel1 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 Testsedatastorelevel1 resource accepts the following input properties:
- Configpb
Attributes List<Testsedatastorelevel1ConfigpbAttribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Test
Se stringDatastore Level2Ref - It is a reference to an object of type testsedatastorelevel2. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Testsedatastorelevel1Id string
- Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Configpb
Attributes []Testsedatastorelevel1ConfigpbAttribute Args - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Test
Se stringDatastore Level2Ref - It is a reference to an object of type testsedatastorelevel2. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Testsedatastorelevel1Id string
- Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes List<Testsedatastorelevel1ConfigpbAttribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- test
Se StringDatastore Level2Ref - It is a reference to an object of type testsedatastorelevel2. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- testsedatastorelevel1Id String
- uuid String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes Testsedatastorelevel1ConfigpbAttribute[] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref string - It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- test
Se stringDatastore Level2Ref - It is a reference to an object of type testsedatastorelevel2. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- testsedatastorelevel1Id string
- uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb_
attributes Sequence[Testsedatastorelevel1ConfigpbAttribute Args] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant_
ref str - It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- test_
se_ strdatastore_ level2_ ref - It is a reference to an object of type testsedatastorelevel2. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- testsedatastorelevel1_
id str - uuid str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes List<Property Map> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- test
Se StringDatastore Level2Ref - It is a reference to an object of type testsedatastorelevel2. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- testsedatastorelevel1Id String
- uuid String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
Outputs
All input properties are implicitly available as output properties. Additionally, the Testsedatastorelevel1 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 Testsedatastorelevel1 Resource
Get an existing Testsedatastorelevel1 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?: Testsedatastorelevel1State, opts?: CustomResourceOptions): Testsedatastorelevel1
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
configpb_attributes: Optional[Sequence[Testsedatastorelevel1ConfigpbAttributeArgs]] = None,
name: Optional[str] = None,
tenant_ref: Optional[str] = None,
test_se_datastore_level2_ref: Optional[str] = None,
testsedatastorelevel1_id: Optional[str] = None,
uuid: Optional[str] = None) -> Testsedatastorelevel1
func GetTestsedatastorelevel1(ctx *Context, name string, id IDInput, state *Testsedatastorelevel1State, opts ...ResourceOption) (*Testsedatastorelevel1, error)
public static Testsedatastorelevel1 Get(string name, Input<string> id, Testsedatastorelevel1State? state, CustomResourceOptions? opts = null)
public static Testsedatastorelevel1 get(String name, Output<String> id, Testsedatastorelevel1State state, CustomResourceOptions options)
resources: _: type: avi:Testsedatastorelevel1 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.
- Configpb
Attributes List<Testsedatastorelevel1ConfigpbAttribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Test
Se stringDatastore Level2Ref - It is a reference to an object of type testsedatastorelevel2. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Testsedatastorelevel1Id string
- Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Configpb
Attributes []Testsedatastorelevel1ConfigpbAttribute Args - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Test
Se stringDatastore Level2Ref - It is a reference to an object of type testsedatastorelevel2. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Testsedatastorelevel1Id string
- Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes List<Testsedatastorelevel1ConfigpbAttribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- test
Se StringDatastore Level2Ref - It is a reference to an object of type testsedatastorelevel2. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- testsedatastorelevel1Id String
- uuid String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes Testsedatastorelevel1ConfigpbAttribute[] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref string - It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- test
Se stringDatastore Level2Ref - It is a reference to an object of type testsedatastorelevel2. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- testsedatastorelevel1Id string
- uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb_
attributes Sequence[Testsedatastorelevel1ConfigpbAttribute Args] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant_
ref str - It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- test_
se_ strdatastore_ level2_ ref - It is a reference to an object of type testsedatastorelevel2. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- testsedatastorelevel1_
id str - uuid str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes List<Property Map> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- test
Se StringDatastore Level2Ref - It is a reference to an object of type testsedatastorelevel2. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- testsedatastorelevel1Id String
- uuid String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
Supporting Types
Testsedatastorelevel1ConfigpbAttribute, Testsedatastorelevel1ConfigpbAttributeArgs
- Version string
- Version string
- version String
- version string
- version str
- version String
Package Details
- Repository
- avi vmware/terraform-provider-avi
- License
- Notes
- This Pulumi package is based on the
avi
Terraform Provider.