1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Waa
  5. AppAcceleration
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

oci.Waa.AppAcceleration

Explore with Pulumi AI

This resource provides the Web App Acceleration resource in Oracle Cloud Infrastructure Waa service.

Creates a new WebAppAcceleration.

Example Usage

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

const testWebAppAcceleration = new oci.waa.AppAcceleration("test_web_app_acceleration", {
    backendType: webAppAccelerationBackendType,
    compartmentId: compartmentId,
    loadBalancerId: testLoadBalancer.id,
    webAppAccelerationPolicyId: testWebAppAccelerationPolicy.id,
    definedTags: {
        "foo-namespace.bar-key": "value",
    },
    displayName: webAppAccelerationDisplayName,
    freeformTags: {
        "bar-key": "value",
    },
    systemTags: webAppAccelerationSystemTags,
});
Copy
import pulumi
import pulumi_oci as oci

test_web_app_acceleration = oci.waa.AppAcceleration("test_web_app_acceleration",
    backend_type=web_app_acceleration_backend_type,
    compartment_id=compartment_id,
    load_balancer_id=test_load_balancer["id"],
    web_app_acceleration_policy_id=test_web_app_acceleration_policy["id"],
    defined_tags={
        "foo-namespace.bar-key": "value",
    },
    display_name=web_app_acceleration_display_name,
    freeform_tags={
        "bar-key": "value",
    },
    system_tags=web_app_acceleration_system_tags)
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/waa"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := waa.NewAppAcceleration(ctx, "test_web_app_acceleration", &waa.AppAccelerationArgs{
			BackendType:                pulumi.Any(webAppAccelerationBackendType),
			CompartmentId:              pulumi.Any(compartmentId),
			LoadBalancerId:             pulumi.Any(testLoadBalancer.Id),
			WebAppAccelerationPolicyId: pulumi.Any(testWebAppAccelerationPolicy.Id),
			DefinedTags: pulumi.StringMap{
				"foo-namespace.bar-key": pulumi.String("value"),
			},
			DisplayName: pulumi.Any(webAppAccelerationDisplayName),
			FreeformTags: pulumi.StringMap{
				"bar-key": pulumi.String("value"),
			},
			SystemTags: pulumi.Any(webAppAccelerationSystemTags),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testWebAppAcceleration = new Oci.Waa.AppAcceleration("test_web_app_acceleration", new()
    {
        BackendType = webAppAccelerationBackendType,
        CompartmentId = compartmentId,
        LoadBalancerId = testLoadBalancer.Id,
        WebAppAccelerationPolicyId = testWebAppAccelerationPolicy.Id,
        DefinedTags = 
        {
            { "foo-namespace.bar-key", "value" },
        },
        DisplayName = webAppAccelerationDisplayName,
        FreeformTags = 
        {
            { "bar-key", "value" },
        },
        SystemTags = webAppAccelerationSystemTags,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Waa.AppAcceleration;
import com.pulumi.oci.Waa.AppAccelerationArgs;
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 testWebAppAcceleration = new AppAcceleration("testWebAppAcceleration", AppAccelerationArgs.builder()
            .backendType(webAppAccelerationBackendType)
            .compartmentId(compartmentId)
            .loadBalancerId(testLoadBalancer.id())
            .webAppAccelerationPolicyId(testWebAppAccelerationPolicy.id())
            .definedTags(Map.of("foo-namespace.bar-key", "value"))
            .displayName(webAppAccelerationDisplayName)
            .freeformTags(Map.of("bar-key", "value"))
            .systemTags(webAppAccelerationSystemTags)
            .build());

    }
}
Copy
resources:
  testWebAppAcceleration:
    type: oci:Waa:AppAcceleration
    name: test_web_app_acceleration
    properties:
      backendType: ${webAppAccelerationBackendType}
      compartmentId: ${compartmentId}
      loadBalancerId: ${testLoadBalancer.id}
      webAppAccelerationPolicyId: ${testWebAppAccelerationPolicy.id}
      definedTags:
        foo-namespace.bar-key: value
      displayName: ${webAppAccelerationDisplayName}
      freeformTags:
        bar-key: value
      systemTags: ${webAppAccelerationSystemTags}
Copy

Create AppAcceleration Resource

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

Constructor syntax

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

@overload
def AppAcceleration(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    backend_type: Optional[str] = None,
                    compartment_id: Optional[str] = None,
                    load_balancer_id: Optional[str] = None,
                    web_app_acceleration_policy_id: Optional[str] = None,
                    defined_tags: Optional[Mapping[str, str]] = None,
                    display_name: Optional[str] = None,
                    freeform_tags: Optional[Mapping[str, str]] = None,
                    system_tags: Optional[Mapping[str, str]] = None)
func NewAppAcceleration(ctx *Context, name string, args AppAccelerationArgs, opts ...ResourceOption) (*AppAcceleration, error)
public AppAcceleration(string name, AppAccelerationArgs args, CustomResourceOptions? opts = null)
public AppAcceleration(String name, AppAccelerationArgs args)
public AppAcceleration(String name, AppAccelerationArgs args, CustomResourceOptions options)
type: oci:Waa:AppAcceleration
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 This property is required. AppAccelerationArgs
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 This property is required. AppAccelerationArgs
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 This property is required. AppAccelerationArgs
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 This property is required. AppAccelerationArgs
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. AppAccelerationArgs
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 appAccelerationResource = new Oci.Waa.AppAcceleration("appAccelerationResource", new()
{
    BackendType = "string",
    CompartmentId = "string",
    LoadBalancerId = "string",
    WebAppAccelerationPolicyId = "string",
    DefinedTags = 
    {
        { "string", "string" },
    },
    DisplayName = "string",
    FreeformTags = 
    {
        { "string", "string" },
    },
    SystemTags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := Waa.NewAppAcceleration(ctx, "appAccelerationResource", &Waa.AppAccelerationArgs{
	BackendType:                pulumi.String("string"),
	CompartmentId:              pulumi.String("string"),
	LoadBalancerId:             pulumi.String("string"),
	WebAppAccelerationPolicyId: pulumi.String("string"),
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	DisplayName: pulumi.String("string"),
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	SystemTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var appAccelerationResource = new AppAcceleration("appAccelerationResource", AppAccelerationArgs.builder()
    .backendType("string")
    .compartmentId("string")
    .loadBalancerId("string")
    .webAppAccelerationPolicyId("string")
    .definedTags(Map.of("string", "string"))
    .displayName("string")
    .freeformTags(Map.of("string", "string"))
    .systemTags(Map.of("string", "string"))
    .build());
Copy
app_acceleration_resource = oci.waa.AppAcceleration("appAccelerationResource",
    backend_type="string",
    compartment_id="string",
    load_balancer_id="string",
    web_app_acceleration_policy_id="string",
    defined_tags={
        "string": "string",
    },
    display_name="string",
    freeform_tags={
        "string": "string",
    },
    system_tags={
        "string": "string",
    })
Copy
const appAccelerationResource = new oci.waa.AppAcceleration("appAccelerationResource", {
    backendType: "string",
    compartmentId: "string",
    loadBalancerId: "string",
    webAppAccelerationPolicyId: "string",
    definedTags: {
        string: "string",
    },
    displayName: "string",
    freeformTags: {
        string: "string",
    },
    systemTags: {
        string: "string",
    },
});
Copy
type: oci:Waa:AppAcceleration
properties:
    backendType: string
    compartmentId: string
    definedTags:
        string: string
    displayName: string
    freeformTags:
        string: string
    loadBalancerId: string
    systemTags:
        string: string
    webAppAccelerationPolicyId: string
Copy

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

BackendType
This property is required.
Changes to this property will trigger replacement.
string
Type of the WebAppFirewall, as example LOAD_BALANCER.
CompartmentId This property is required. string
(Updatable) The OCID of the compartment.
LoadBalancerId
This property is required.
Changes to this property will trigger replacement.
string
LoadBalancer OCID to which the WebAppAccelerationPolicy is attached to.
WebAppAccelerationPolicyId This property is required. string

(Updatable) The OCID of WebAppAccelerationPolicy, which is attached to the resource.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

DefinedTags Dictionary<string, string>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
DisplayName string
(Updatable) WebAppAcceleration display name, can be renamed.
FreeformTags Dictionary<string, string>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
SystemTags Dictionary<string, string>
(Updatable) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
BackendType
This property is required.
Changes to this property will trigger replacement.
string
Type of the WebAppFirewall, as example LOAD_BALANCER.
CompartmentId This property is required. string
(Updatable) The OCID of the compartment.
LoadBalancerId
This property is required.
Changes to this property will trigger replacement.
string
LoadBalancer OCID to which the WebAppAccelerationPolicy is attached to.
WebAppAccelerationPolicyId This property is required. string

(Updatable) The OCID of WebAppAccelerationPolicy, which is attached to the resource.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

DefinedTags map[string]string
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
DisplayName string
(Updatable) WebAppAcceleration display name, can be renamed.
FreeformTags map[string]string
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
SystemTags map[string]string
(Updatable) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
backendType
This property is required.
Changes to this property will trigger replacement.
String
Type of the WebAppFirewall, as example LOAD_BALANCER.
compartmentId This property is required. String
(Updatable) The OCID of the compartment.
loadBalancerId
This property is required.
Changes to this property will trigger replacement.
String
LoadBalancer OCID to which the WebAppAccelerationPolicy is attached to.
webAppAccelerationPolicyId This property is required. String

(Updatable) The OCID of WebAppAccelerationPolicy, which is attached to the resource.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

definedTags Map<String,String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
displayName String
(Updatable) WebAppAcceleration display name, can be renamed.
freeformTags Map<String,String>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
systemTags Map<String,String>
(Updatable) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
backendType
This property is required.
Changes to this property will trigger replacement.
string
Type of the WebAppFirewall, as example LOAD_BALANCER.
compartmentId This property is required. string
(Updatable) The OCID of the compartment.
loadBalancerId
This property is required.
Changes to this property will trigger replacement.
string
LoadBalancer OCID to which the WebAppAccelerationPolicy is attached to.
webAppAccelerationPolicyId This property is required. string

(Updatable) The OCID of WebAppAccelerationPolicy, which is attached to the resource.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

definedTags {[key: string]: string}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
displayName string
(Updatable) WebAppAcceleration display name, can be renamed.
freeformTags {[key: string]: string}
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
systemTags {[key: string]: string}
(Updatable) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
backend_type
This property is required.
Changes to this property will trigger replacement.
str
Type of the WebAppFirewall, as example LOAD_BALANCER.
compartment_id This property is required. str
(Updatable) The OCID of the compartment.
load_balancer_id
This property is required.
Changes to this property will trigger replacement.
str
LoadBalancer OCID to which the WebAppAccelerationPolicy is attached to.
web_app_acceleration_policy_id This property is required. str

(Updatable) The OCID of WebAppAccelerationPolicy, which is attached to the resource.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

defined_tags Mapping[str, str]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
display_name str
(Updatable) WebAppAcceleration display name, can be renamed.
freeform_tags Mapping[str, str]
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
system_tags Mapping[str, str]
(Updatable) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
backendType
This property is required.
Changes to this property will trigger replacement.
String
Type of the WebAppFirewall, as example LOAD_BALANCER.
compartmentId This property is required. String
(Updatable) The OCID of the compartment.
loadBalancerId
This property is required.
Changes to this property will trigger replacement.
String
LoadBalancer OCID to which the WebAppAccelerationPolicy is attached to.
webAppAccelerationPolicyId This property is required. String

(Updatable) The OCID of WebAppAccelerationPolicy, which is attached to the resource.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

definedTags Map<String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
displayName String
(Updatable) WebAppAcceleration display name, can be renamed.
freeformTags Map<String>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
systemTags Map<String>
(Updatable) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}

Outputs

All input properties are implicitly available as output properties. Additionally, the AppAcceleration resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
LifecycleDetails string
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in FAILED state.
State string
The current state of the WebAppAcceleration.
TimeCreated string
The time the WebAppAcceleration was created. An RFC3339 formatted datetime string.
TimeUpdated string
The time the WebAppAcceleration was updated. An RFC3339 formatted datetime string.
Id string
The provider-assigned unique ID for this managed resource.
LifecycleDetails string
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in FAILED state.
State string
The current state of the WebAppAcceleration.
TimeCreated string
The time the WebAppAcceleration was created. An RFC3339 formatted datetime string.
TimeUpdated string
The time the WebAppAcceleration was updated. An RFC3339 formatted datetime string.
id String
The provider-assigned unique ID for this managed resource.
lifecycleDetails String
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in FAILED state.
state String
The current state of the WebAppAcceleration.
timeCreated String
The time the WebAppAcceleration was created. An RFC3339 formatted datetime string.
timeUpdated String
The time the WebAppAcceleration was updated. An RFC3339 formatted datetime string.
id string
The provider-assigned unique ID for this managed resource.
lifecycleDetails string
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in FAILED state.
state string
The current state of the WebAppAcceleration.
timeCreated string
The time the WebAppAcceleration was created. An RFC3339 formatted datetime string.
timeUpdated string
The time the WebAppAcceleration was updated. An RFC3339 formatted datetime string.
id str
The provider-assigned unique ID for this managed resource.
lifecycle_details str
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in FAILED state.
state str
The current state of the WebAppAcceleration.
time_created str
The time the WebAppAcceleration was created. An RFC3339 formatted datetime string.
time_updated str
The time the WebAppAcceleration was updated. An RFC3339 formatted datetime string.
id String
The provider-assigned unique ID for this managed resource.
lifecycleDetails String
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in FAILED state.
state String
The current state of the WebAppAcceleration.
timeCreated String
The time the WebAppAcceleration was created. An RFC3339 formatted datetime string.
timeUpdated String
The time the WebAppAcceleration was updated. An RFC3339 formatted datetime string.

Look up Existing AppAcceleration Resource

Get an existing AppAcceleration 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?: AppAccelerationState, opts?: CustomResourceOptions): AppAcceleration
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        backend_type: Optional[str] = None,
        compartment_id: Optional[str] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        display_name: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        lifecycle_details: Optional[str] = None,
        load_balancer_id: Optional[str] = None,
        state: Optional[str] = None,
        system_tags: Optional[Mapping[str, str]] = None,
        time_created: Optional[str] = None,
        time_updated: Optional[str] = None,
        web_app_acceleration_policy_id: Optional[str] = None) -> AppAcceleration
func GetAppAcceleration(ctx *Context, name string, id IDInput, state *AppAccelerationState, opts ...ResourceOption) (*AppAcceleration, error)
public static AppAcceleration Get(string name, Input<string> id, AppAccelerationState? state, CustomResourceOptions? opts = null)
public static AppAcceleration get(String name, Output<String> id, AppAccelerationState state, CustomResourceOptions options)
resources:  _:    type: oci:Waa:AppAcceleration    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:
BackendType Changes to this property will trigger replacement. string
Type of the WebAppFirewall, as example LOAD_BALANCER.
CompartmentId string
(Updatable) The OCID of the compartment.
DefinedTags Dictionary<string, string>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
DisplayName string
(Updatable) WebAppAcceleration display name, can be renamed.
FreeformTags Dictionary<string, string>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
LifecycleDetails string
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in FAILED state.
LoadBalancerId Changes to this property will trigger replacement. string
LoadBalancer OCID to which the WebAppAccelerationPolicy is attached to.
State string
The current state of the WebAppAcceleration.
SystemTags Dictionary<string, string>
(Updatable) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated string
The time the WebAppAcceleration was created. An RFC3339 formatted datetime string.
TimeUpdated string
The time the WebAppAcceleration was updated. An RFC3339 formatted datetime string.
WebAppAccelerationPolicyId string

(Updatable) The OCID of WebAppAccelerationPolicy, which is attached to the resource.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

BackendType Changes to this property will trigger replacement. string
Type of the WebAppFirewall, as example LOAD_BALANCER.
CompartmentId string
(Updatable) The OCID of the compartment.
DefinedTags map[string]string
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
DisplayName string
(Updatable) WebAppAcceleration display name, can be renamed.
FreeformTags map[string]string
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
LifecycleDetails string
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in FAILED state.
LoadBalancerId Changes to this property will trigger replacement. string
LoadBalancer OCID to which the WebAppAccelerationPolicy is attached to.
State string
The current state of the WebAppAcceleration.
SystemTags map[string]string
(Updatable) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated string
The time the WebAppAcceleration was created. An RFC3339 formatted datetime string.
TimeUpdated string
The time the WebAppAcceleration was updated. An RFC3339 formatted datetime string.
WebAppAccelerationPolicyId string

(Updatable) The OCID of WebAppAccelerationPolicy, which is attached to the resource.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

backendType Changes to this property will trigger replacement. String
Type of the WebAppFirewall, as example LOAD_BALANCER.
compartmentId String
(Updatable) The OCID of the compartment.
definedTags Map<String,String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
displayName String
(Updatable) WebAppAcceleration display name, can be renamed.
freeformTags Map<String,String>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
lifecycleDetails String
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in FAILED state.
loadBalancerId Changes to this property will trigger replacement. String
LoadBalancer OCID to which the WebAppAccelerationPolicy is attached to.
state String
The current state of the WebAppAcceleration.
systemTags Map<String,String>
(Updatable) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated String
The time the WebAppAcceleration was created. An RFC3339 formatted datetime string.
timeUpdated String
The time the WebAppAcceleration was updated. An RFC3339 formatted datetime string.
webAppAccelerationPolicyId String

(Updatable) The OCID of WebAppAccelerationPolicy, which is attached to the resource.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

backendType Changes to this property will trigger replacement. string
Type of the WebAppFirewall, as example LOAD_BALANCER.
compartmentId string
(Updatable) The OCID of the compartment.
definedTags {[key: string]: string}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
displayName string
(Updatable) WebAppAcceleration display name, can be renamed.
freeformTags {[key: string]: string}
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
lifecycleDetails string
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in FAILED state.
loadBalancerId Changes to this property will trigger replacement. string
LoadBalancer OCID to which the WebAppAccelerationPolicy is attached to.
state string
The current state of the WebAppAcceleration.
systemTags {[key: string]: string}
(Updatable) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated string
The time the WebAppAcceleration was created. An RFC3339 formatted datetime string.
timeUpdated string
The time the WebAppAcceleration was updated. An RFC3339 formatted datetime string.
webAppAccelerationPolicyId string

(Updatable) The OCID of WebAppAccelerationPolicy, which is attached to the resource.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

backend_type Changes to this property will trigger replacement. str
Type of the WebAppFirewall, as example LOAD_BALANCER.
compartment_id str
(Updatable) The OCID of the compartment.
defined_tags Mapping[str, str]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
display_name str
(Updatable) WebAppAcceleration display name, can be renamed.
freeform_tags Mapping[str, str]
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
lifecycle_details str
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in FAILED state.
load_balancer_id Changes to this property will trigger replacement. str
LoadBalancer OCID to which the WebAppAccelerationPolicy is attached to.
state str
The current state of the WebAppAcceleration.
system_tags Mapping[str, str]
(Updatable) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
time_created str
The time the WebAppAcceleration was created. An RFC3339 formatted datetime string.
time_updated str
The time the WebAppAcceleration was updated. An RFC3339 formatted datetime string.
web_app_acceleration_policy_id str

(Updatable) The OCID of WebAppAccelerationPolicy, which is attached to the resource.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

backendType Changes to this property will trigger replacement. String
Type of the WebAppFirewall, as example LOAD_BALANCER.
compartmentId String
(Updatable) The OCID of the compartment.
definedTags Map<String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
displayName String
(Updatable) WebAppAcceleration display name, can be renamed.
freeformTags Map<String>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
lifecycleDetails String
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in FAILED state.
loadBalancerId Changes to this property will trigger replacement. String
LoadBalancer OCID to which the WebAppAccelerationPolicy is attached to.
state String
The current state of the WebAppAcceleration.
systemTags Map<String>
(Updatable) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated String
The time the WebAppAcceleration was created. An RFC3339 formatted datetime string.
timeUpdated String
The time the WebAppAcceleration was updated. An RFC3339 formatted datetime string.
webAppAccelerationPolicyId String

(Updatable) The OCID of WebAppAccelerationPolicy, which is attached to the resource.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

Import

WebAppAccelerations can be imported using the id, e.g.

$ pulumi import oci:Waa/appAcceleration:AppAcceleration test_web_app_acceleration "id"
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.