Viewing docs for Akamai v11.2.0
published on Thursday, May 14, 2026 by Pulumi
published on Thursday, May 14, 2026 by Pulumi
Akamai
I want to use the Pulumi Akamai package (akamai) in my project.
## Provider details
- Package: akamai
- Version: v11.2.0
- Publisher: Pulumi
- Source: pulumi
- Repository: https://github.com/pulumi/pulumi-akamai
## Documentation
The Pulumi Cloud Registry API serves canonical, up-to-date docs for this package — including private packages and every published version. Send the "Accept: text/markdown" header for clean readable content, or "application/json" for structured data.
Start at the navigation tree, which cross-links to the readme, installation guide, and per-resource docs URL template:
- https://api.pulumi.com/api/registry/packages/pulumi/pulumi/akamai/versions/latest/nav
Returns a summary by default. The full tree can be hundreds of kB for large providers, so prefer targeted search: append "?q=<query>&depth=full" to filter by resource/function title or token (for example "?q=bucket&depth=full"). Only request the full nav without a query if you actually need to enumerate every resource.
Other endpoints:
- Overview and getting started: https://api.pulumi.com/api/registry/packages/pulumi/pulumi/akamai/versions/latest/readme
- Installation and configuration: https://api.pulumi.com/api/registry/packages/pulumi/pulumi/akamai/versions/latest/installation
- Per-resource/function docs: https://api.pulumi.com/api/registry/packages/pulumi/pulumi/akamai/versions/latest/docs/{token}?lang={lang}
Replace {token} with the percent-encoded token from the nav response (for example aws:s3/bucket:Bucket).
Replace {lang} with typescript, python, go, csharp, java, or yaml.
Fetch the installation endpoint above for the correct setup steps — install instructions vary between native providers, bridged Terraform providers, and component packages.
Help me get started using this provider. Show me a complete Pulumi program that provisions a common resource, including all necessary configuration and imports.
Viewing docs for Akamai v11.2.0
published on Thursday, May 14, 2026 by Pulumi
published on Thursday, May 14, 2026 by Pulumi
The Akamai provider for Pulumi can be used to provision any of the cloud resources available in Akamai. The Akamai provider must be configured with credentials to deploy and update resources in Akamai.
Example
import * as akamai from "@pulumi/akamai";
const contractId = akamai.getContract().then(x => x.id)
const groupId = akamai.getGroup().then(x => x.id)
const tsdomain = new akamai.properties.EdgeHostName("test", {
contract: contractId,
group: groupId,
product: "prd_Fresca",
edgeHostname: "test-ts.mycompany.io",
ipv4: true,
});
import pulumi_akamai as akamai
contract_id = pulumi.Output.from_input(akamai.get_contract()).id
group_id = pulumi.Output.from_input(akamai.get_group()).id
pydomain = akamai.properties.EdgeHostName("test",
contract=contract_id,
group=group_id,
product="prd_Fresca",
edge_hostname="test-py.mycompany.io",
ipv4="true")
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi-akamai/sdk/v2/go/akamai"
"github.com/pulumi/pulumi-akamai/sdk/v2/go/akam/properties"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
contract, err := akamai.GetContract(ctx)
if err != nil {
return err
}
group, err := akamai.GetGroup(ctx)
if err != nil {
return err
}
user, err := properties.NewEdgeHostName(ctx, "demo", &properties.EdgeHostNameArgs{
Contract: pulumi.String(contract.Id),
Group: pulumi.String(group.Id),
Product: pulumi.String("prd_Fresca"),
EdgeHostname: pulumi.String("test-go.mycompany.io"),
Ipv4: pulumi.Bool(true),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Threading.Tasks;
using Pulumi;
using Pulumi.Akamai;
using Properties = Pulumi.Akamai.Properties;
await Deployment.RunAsync(() =>
{
var group = GetGroup.Invoke();
var contract = GetContract.Invoke();
var hostname = new Properties.EdgeHostName("demo", new Properties.EdgeHostNameArgs
{
Contract = contract.Id,
Group = group.Id,
Product = "prd_Fresca",
EdgeHostName = "test-cs.mycompany.io",
Ipv4 = true,
});
});
Viewing docs for Akamai v11.2.0
published on Thursday, May 14, 2026 by Pulumi
published on Thursday, May 14, 2026 by Pulumi
