avi.Geodb
Explore with Pulumi AI
<!–
Copyright 2021 VMware, Inc.
SPDX-License-Identifier: Mozilla Public License 2.0
–>
layout: “avi”
page_title: “Avi: avi.Geodb” sidebar_current: “docs-avi-resource-geodb” description: |- Creates and manages Avi GeoDB.
avi.Geodb
The GeoDB resource allows the creation and management of Avi GeoDB
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as avi from "@pulumi/avi";
const foo = new avi.Geodb("foo", {tenantRef: "/api/tenant/?name=admin"});
import pulumi
import pulumi_avi as avi
foo = avi.Geodb("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.NewGeodb(ctx, "foo", &avi.GeodbArgs{
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.Geodb("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.Geodb;
import com.pulumi.avi.GeodbArgs;
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 Geodb("foo", GeodbArgs.builder()
.tenantRef("/api/tenant/?name=admin")
.build());
}
}
resources:
foo:
type: avi:Geodb
properties:
tenantRef: /api/tenant/?name=admin
Create Geodb Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Geodb(name: string, args?: GeodbArgs, opts?: CustomResourceOptions);
@overload
def Geodb(resource_name: str,
args: Optional[GeodbArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Geodb(resource_name: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
files: Optional[Sequence[GeodbFileArgs]] = None,
geodb_id: Optional[str] = None,
is_federated: Optional[str] = None,
mappings: Optional[Sequence[GeodbMappingArgs]] = None,
name: Optional[str] = None,
tenant_ref: Optional[str] = None,
uuid: Optional[str] = None)
func NewGeodb(ctx *Context, name string, args *GeodbArgs, opts ...ResourceOption) (*Geodb, error)
public Geodb(string name, GeodbArgs? args = null, CustomResourceOptions? opts = null)
type: avi:Geodb
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 GeodbArgs
- 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 GeodbArgs
- 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 GeodbArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GeodbArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GeodbArgs
- 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 geodbResource = new Avi.Geodb("geodbResource", new()
{
Description = "string",
Files = new[]
{
new Avi.Inputs.GeodbFileArgs
{
FileRef = "string",
Index = "string",
Name = "string",
Vendor = "string",
Enabled = "string",
},
},
GeodbId = "string",
IsFederated = "string",
Mappings = new[]
{
new Avi.Inputs.GeodbMappingArgs
{
Elements = new[]
{
new Avi.Inputs.GeodbMappingElementArgs
{
Attribute = "string",
Values = new[]
{
"string",
},
},
},
Name = "string",
Description = "string",
},
},
Name = "string",
TenantRef = "string",
Uuid = "string",
});
example, err := avi.NewGeodb(ctx, "geodbResource", &avi.GeodbArgs{
Description: pulumi.String("string"),
Files: avi.GeodbFileArray{
&avi.GeodbFileArgs{
FileRef: pulumi.String("string"),
Index: pulumi.String("string"),
Name: pulumi.String("string"),
Vendor: pulumi.String("string"),
Enabled: pulumi.String("string"),
},
},
GeodbId: pulumi.String("string"),
IsFederated: pulumi.String("string"),
Mappings: avi.GeodbMappingArray{
&avi.GeodbMappingArgs{
Elements: avi.GeodbMappingElementArray{
&avi.GeodbMappingElementArgs{
Attribute: pulumi.String("string"),
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
Name: pulumi.String("string"),
Description: pulumi.String("string"),
},
},
Name: pulumi.String("string"),
TenantRef: pulumi.String("string"),
Uuid: pulumi.String("string"),
})
var geodbResource = new Geodb("geodbResource", GeodbArgs.builder()
.description("string")
.files(GeodbFileArgs.builder()
.fileRef("string")
.index("string")
.name("string")
.vendor("string")
.enabled("string")
.build())
.geodbId("string")
.isFederated("string")
.mappings(GeodbMappingArgs.builder()
.elements(GeodbMappingElementArgs.builder()
.attribute("string")
.values("string")
.build())
.name("string")
.description("string")
.build())
.name("string")
.tenantRef("string")
.uuid("string")
.build());
geodb_resource = avi.Geodb("geodbResource",
description="string",
files=[{
"file_ref": "string",
"index": "string",
"name": "string",
"vendor": "string",
"enabled": "string",
}],
geodb_id="string",
is_federated="string",
mappings=[{
"elements": [{
"attribute": "string",
"values": ["string"],
}],
"name": "string",
"description": "string",
}],
name="string",
tenant_ref="string",
uuid="string")
const geodbResource = new avi.Geodb("geodbResource", {
description: "string",
files: [{
fileRef: "string",
index: "string",
name: "string",
vendor: "string",
enabled: "string",
}],
geodbId: "string",
isFederated: "string",
mappings: [{
elements: [{
attribute: "string",
values: ["string"],
}],
name: "string",
description: "string",
}],
name: "string",
tenantRef: "string",
uuid: "string",
});
type: avi:Geodb
properties:
description: string
files:
- enabled: string
fileRef: string
index: string
name: string
vendor: string
geodbId: string
isFederated: string
mappings:
- description: string
elements:
- attribute: string
values:
- string
name: string
name: string
tenantRef: string
uuid: string
Geodb 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 Geodb resource accepts the following input properties:
- Description string
- Description. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Files
List<Geodb
File> - Geo database files. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Geodb
Id string - Is
Federated string - This field indicates that this object is replicated across gslb federation. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Mappings
List<Geodb
Mapping> - Custom mappings of geo values. All mappings which start with the prefix 'system-' (any case) are reserved for system default objects and may be overwritten. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Name string
- Geo database name. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Tenant
Ref string - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Uuid string
- Uuid of this object. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Description string
- Description. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Files
[]Geodb
File Args - Geo database files. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Geodb
Id string - Is
Federated string - This field indicates that this object is replicated across gslb federation. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Mappings
[]Geodb
Mapping Args - Custom mappings of geo values. All mappings which start with the prefix 'system-' (any case) are reserved for system default objects and may be overwritten. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Name string
- Geo database name. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Tenant
Ref string - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Uuid string
- Uuid of this object. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- description String
- Description. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- files
List<Geodb
File> - Geo database files. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- geodb
Id String - is
Federated String - This field indicates that this object is replicated across gslb federation. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- mappings
List<Geodb
Mapping> - Custom mappings of geo values. All mappings which start with the prefix 'system-' (any case) are reserved for system default objects and may be overwritten. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name String
- Geo database name. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant
Ref String - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid String
- Uuid of this object. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- description string
- Description. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- files
Geodb
File[] - Geo database files. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- geodb
Id string - is
Federated string - This field indicates that this object is replicated across gslb federation. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- mappings
Geodb
Mapping[] - Custom mappings of geo values. All mappings which start with the prefix 'system-' (any case) are reserved for system default objects and may be overwritten. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name string
- Geo database name. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant
Ref string - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid string
- Uuid of this object. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- description str
- Description. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- files
Sequence[Geodb
File Args] - Geo database files. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- geodb_
id str - is_
federated str - This field indicates that this object is replicated across gslb federation. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- mappings
Sequence[Geodb
Mapping Args] - Custom mappings of geo values. All mappings which start with the prefix 'system-' (any case) are reserved for system default objects and may be overwritten. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name str
- Geo database name. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant_
ref str - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid str
- Uuid of this object. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- description String
- Description. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- files List<Property Map>
- Geo database files. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- geodb
Id String - is
Federated String - This field indicates that this object is replicated across gslb federation. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- mappings List<Property Map>
- Custom mappings of geo values. All mappings which start with the prefix 'system-' (any case) are reserved for system default objects and may be overwritten. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name String
- Geo database name. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant
Ref String - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid String
- Uuid of this object. Field introduced in 21.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 Geodb 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 Geodb Resource
Get an existing Geodb 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?: GeodbState, opts?: CustomResourceOptions): Geodb
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
files: Optional[Sequence[GeodbFileArgs]] = None,
geodb_id: Optional[str] = None,
is_federated: Optional[str] = None,
mappings: Optional[Sequence[GeodbMappingArgs]] = None,
name: Optional[str] = None,
tenant_ref: Optional[str] = None,
uuid: Optional[str] = None) -> Geodb
func GetGeodb(ctx *Context, name string, id IDInput, state *GeodbState, opts ...ResourceOption) (*Geodb, error)
public static Geodb Get(string name, Input<string> id, GeodbState? state, CustomResourceOptions? opts = null)
public static Geodb get(String name, Output<String> id, GeodbState state, CustomResourceOptions options)
resources: _: type: avi:Geodb 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.
- Description string
- Description. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Files
List<Geodb
File> - Geo database files. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Geodb
Id string - Is
Federated string - This field indicates that this object is replicated across gslb federation. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Mappings
List<Geodb
Mapping> - Custom mappings of geo values. All mappings which start with the prefix 'system-' (any case) are reserved for system default objects and may be overwritten. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Name string
- Geo database name. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Tenant
Ref string - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Uuid string
- Uuid of this object. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Description string
- Description. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Files
[]Geodb
File Args - Geo database files. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Geodb
Id string - Is
Federated string - This field indicates that this object is replicated across gslb federation. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Mappings
[]Geodb
Mapping Args - Custom mappings of geo values. All mappings which start with the prefix 'system-' (any case) are reserved for system default objects and may be overwritten. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Name string
- Geo database name. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Tenant
Ref string - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Uuid string
- Uuid of this object. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- description String
- Description. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- files
List<Geodb
File> - Geo database files. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- geodb
Id String - is
Federated String - This field indicates that this object is replicated across gslb federation. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- mappings
List<Geodb
Mapping> - Custom mappings of geo values. All mappings which start with the prefix 'system-' (any case) are reserved for system default objects and may be overwritten. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name String
- Geo database name. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant
Ref String - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid String
- Uuid of this object. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- description string
- Description. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- files
Geodb
File[] - Geo database files. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- geodb
Id string - is
Federated string - This field indicates that this object is replicated across gslb federation. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- mappings
Geodb
Mapping[] - Custom mappings of geo values. All mappings which start with the prefix 'system-' (any case) are reserved for system default objects and may be overwritten. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name string
- Geo database name. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant
Ref string - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid string
- Uuid of this object. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- description str
- Description. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- files
Sequence[Geodb
File Args] - Geo database files. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- geodb_
id str - is_
federated str - This field indicates that this object is replicated across gslb federation. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- mappings
Sequence[Geodb
Mapping Args] - Custom mappings of geo values. All mappings which start with the prefix 'system-' (any case) are reserved for system default objects and may be overwritten. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name str
- Geo database name. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant_
ref str - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid str
- Uuid of this object. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- description String
- Description. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- files List<Property Map>
- Geo database files. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- geodb
Id String - is
Federated String - This field indicates that this object is replicated across gslb federation. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- mappings List<Property Map>
- Custom mappings of geo values. All mappings which start with the prefix 'system-' (any case) are reserved for system default objects and may be overwritten. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name String
- Geo database name. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant
Ref String - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid String
- Uuid of this object. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
Supporting Types
GeodbFile, GeodbFileArgs
GeodbMapping, GeodbMappingArgs
- Elements
List<Geodb
Mapping Element> - Name string
- Geo database name. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Description string
- Description. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Elements
[]Geodb
Mapping Element - Name string
- Geo database name. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Description string
- Description. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- elements
List<Geodb
Mapping Element> - name String
- Geo database name. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- description String
- Description. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- elements
Geodb
Mapping Element[] - name string
- Geo database name. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- description string
- Description. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- elements
Sequence[Geodb
Mapping Element] - name str
- Geo database name. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- description str
- Description. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- elements List<Property Map>
- name String
- Geo database name. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- description String
- Description. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
GeodbMappingElement, GeodbMappingElementArgs
Package Details
- Repository
- avi vmware/terraform-provider-avi
- License
- Notes
- This Pulumi package is based on the
avi
Terraform Provider.