GtmAsmap
akamai.GtmAsmap
provides the resource for creating, configuring and importing a gtm AS Map to integrate easily with your existing GTM infrastructure to provide a secure, high performance, highly available and scalable solution for Global Traffic Management. Note: Import requires an ID of the format: existing_domain_name
:existing_map_name
Example Usage
using Pulumi;
using Akamai = Pulumi.Akamai;
class MyStack : Stack
{
public MyStack()
{
var demoAsmap = new Akamai.GtmAsmap("demoAsmap", new Akamai.GtmAsmapArgs
{
DefaultDatacenter = new Akamai.Inputs.GtmAsmapDefaultDatacenterArgs
{
DatacenterId = 5400,
Nickname = "All Other AS numbers",
},
Domain = "demo_domain.akadns.net",
});
}
}
package main
import (
"github.com/pulumi/pulumi-akamai/sdk/v2/go/akamai"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := akamai.NewGtmAsmap(ctx, "demoAsmap", &akamai.GtmAsmapArgs{
DefaultDatacenter: &akamai.GtmAsmapDefaultDatacenterArgs{
DatacenterId: pulumi.Int(5400),
Nickname: pulumi.String("All Other AS numbers"),
},
Domain: pulumi.String("demo_domain.akadns.net"),
})
if err != nil {
return err
}
return nil
})
}
import pulumi
import pulumi_akamai as akamai
demo_asmap = akamai.GtmAsmap("demoAsmap",
default_datacenter=akamai.GtmAsmapDefaultDatacenterArgs(
datacenter_id=5400,
nickname="All Other AS numbers",
),
domain="demo_domain.akadns.net")
import * as pulumi from "@pulumi/pulumi";
import * as akamai from "@pulumi/akamai";
const demoAsmap = new akamai.GtmAsmap("demo_asmap", {
defaultDatacenter: {
datacenterId: 5400,
nickname: "All Other AS numbers",
},
domain: "demo_domain.akadns.net",
});
Create a GtmAsmap Resource
new GtmAsmap(name: string, args: GtmAsmapArgs, opts?: CustomResourceOptions);
@overload
def GtmAsmap(resource_name: str,
opts: Optional[ResourceOptions] = None,
assignments: Optional[Sequence[GtmAsmapAssignmentArgs]] = None,
default_datacenter: Optional[GtmAsmapDefaultDatacenterArgs] = None,
domain: Optional[str] = None,
name: Optional[str] = None,
wait_on_complete: Optional[bool] = None)
@overload
def GtmAsmap(resource_name: str,
args: GtmAsmapArgs,
opts: Optional[ResourceOptions] = None)
func NewGtmAsmap(ctx *Context, name string, args GtmAsmapArgs, opts ...ResourceOption) (*GtmAsmap, error)
public GtmAsmap(string name, GtmAsmapArgs args, CustomResourceOptions? opts = null)
- name string
- The unique name of the resource.
- args GtmAsmapArgs
- 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 GtmAsmapArgs
- 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 GtmAsmapArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GtmAsmapArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
GtmAsmap Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The GtmAsmap resource accepts the following input properties:
- Default
Datacenter GtmAsmap Default Datacenter Args - Domain string
- Domain name
- Assignments
List<Gtm
Asmap Assignment Args> datacenter_id
nickname
- Name string
Resource name
default_datacenter
datacenter_id
nickname
- Wait
On boolComplete - Wait for transaction to complete
- Default
Datacenter GtmAsmap Default Datacenter - Domain string
- Domain name
- Assignments
[]Gtm
Asmap Assignment datacenter_id
nickname
- Name string
Resource name
default_datacenter
datacenter_id
nickname
- Wait
On boolComplete - Wait for transaction to complete
- default
Datacenter GtmAsmap Default Datacenter Args - domain string
- Domain name
- assignments
Gtm
Asmap Assignment Args[] datacenter_id
nickname
- name string
Resource name
default_datacenter
datacenter_id
nickname
- wait
On booleanComplete - Wait for transaction to complete
- default_
datacenter GtmAsmap Default Datacenter Args - domain str
- Domain name
- assignments
Sequence[Gtm
Asmap Assignment Args] datacenter_id
nickname
- name str
Resource name
default_datacenter
datacenter_id
nickname
- wait_
on_ boolcomplete - Wait for transaction to complete
Outputs
All input properties are implicitly available as output properties. Additionally, the GtmAsmap 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 str
- The provider-assigned unique ID for this managed resource.
Look up an Existing GtmAsmap Resource
Get an existing GtmAsmap 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?: GtmAsmapState, opts?: CustomResourceOptions): GtmAsmap
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
assignments: Optional[Sequence[GtmAsmapAssignmentArgs]] = None,
default_datacenter: Optional[GtmAsmapDefaultDatacenterArgs] = None,
domain: Optional[str] = None,
name: Optional[str] = None,
wait_on_complete: Optional[bool] = None) -> GtmAsmap
func GetGtmAsmap(ctx *Context, name string, id IDInput, state *GtmAsmapState, opts ...ResourceOption) (*GtmAsmap, error)
public static GtmAsmap Get(string name, Input<string> id, GtmAsmapState? state, CustomResourceOptions? opts = null)
- 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.
The following state arguments are supported:
- Assignments
List<Gtm
Asmap Assignment Args> datacenter_id
nickname
- Default
Datacenter GtmAsmap Default Datacenter Args - Domain string
- Domain name
- Name string
Resource name
default_datacenter
datacenter_id
nickname
- Wait
On boolComplete - Wait for transaction to complete
- Assignments
[]Gtm
Asmap Assignment datacenter_id
nickname
- Default
Datacenter GtmAsmap Default Datacenter - Domain string
- Domain name
- Name string
Resource name
default_datacenter
datacenter_id
nickname
- Wait
On boolComplete - Wait for transaction to complete
- assignments
Gtm
Asmap Assignment Args[] datacenter_id
nickname
- default
Datacenter GtmAsmap Default Datacenter Args - domain string
- Domain name
- name string
Resource name
default_datacenter
datacenter_id
nickname
- wait
On booleanComplete - Wait for transaction to complete
- assignments
Sequence[Gtm
Asmap Assignment Args] datacenter_id
nickname
- default_
datacenter GtmAsmap Default Datacenter Args - domain str
- Domain name
- name str
Resource name
default_datacenter
datacenter_id
nickname
- wait_
on_ boolcomplete - Wait for transaction to complete
Supporting Types
GtmAsmapAssignment
- As
Numbers List<int> - Datacenter
Id int - Nickname string
- As
Numbers []int - Datacenter
Id int - Nickname string
- as
Numbers number[] - datacenter
Id number - nickname string
- as_
numbers Sequence[int] - datacenter_
id int - nickname str
GtmAsmapDefaultDatacenter
- Datacenter
Id int - Nickname string
- Datacenter
Id int - Nickname string
- datacenter
Id number - nickname string
- datacenter_
id int - nickname str
Package Details
- Repository
- https://github.com/pulumi/pulumi-akamai
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
akamai
Terraform Provider.