1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Waa
  5. AppAccelerationPolicy
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

oci.Waa.AppAccelerationPolicy

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

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

    Creates a new WebAppAccelerationPolicy.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testWebAppAccelerationPolicy = new oci.waa.AppAccelerationPolicy("testWebAppAccelerationPolicy", {
        compartmentId: _var.compartment_id,
        definedTags: {
            "foo-namespace.bar-key": "value",
        },
        displayName: _var.web_app_acceleration_policy_display_name,
        freeformTags: {
            "bar-key": "value",
        },
        responseCachingPolicy: {
            isResponseHeaderBasedCachingEnabled: _var.web_app_acceleration_policy_response_caching_policy_is_response_header_based_caching_enabled,
        },
        responseCompressionPolicy: {
            gzipCompression: {
                isEnabled: _var.web_app_acceleration_policy_response_compression_policy_gzip_compression_is_enabled,
            },
        },
        systemTags: _var.web_app_acceleration_policy_system_tags,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_web_app_acceleration_policy = oci.waa.AppAccelerationPolicy("testWebAppAccelerationPolicy",
        compartment_id=var["compartment_id"],
        defined_tags={
            "foo-namespace.bar-key": "value",
        },
        display_name=var["web_app_acceleration_policy_display_name"],
        freeform_tags={
            "bar-key": "value",
        },
        response_caching_policy=oci.waa.AppAccelerationPolicyResponseCachingPolicyArgs(
            is_response_header_based_caching_enabled=var["web_app_acceleration_policy_response_caching_policy_is_response_header_based_caching_enabled"],
        ),
        response_compression_policy=oci.waa.AppAccelerationPolicyResponseCompressionPolicyArgs(
            gzip_compression=oci.waa.AppAccelerationPolicyResponseCompressionPolicyGzipCompressionArgs(
                is_enabled=var["web_app_acceleration_policy_response_compression_policy_gzip_compression_is_enabled"],
            ),
        ),
        system_tags=var["web_app_acceleration_policy_system_tags"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/Waa"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := Waa.NewAppAccelerationPolicy(ctx, "testWebAppAccelerationPolicy", &Waa.AppAccelerationPolicyArgs{
    			CompartmentId: pulumi.Any(_var.Compartment_id),
    			DefinedTags: pulumi.Map{
    				"foo-namespace.bar-key": pulumi.Any("value"),
    			},
    			DisplayName: pulumi.Any(_var.Web_app_acceleration_policy_display_name),
    			FreeformTags: pulumi.Map{
    				"bar-key": pulumi.Any("value"),
    			},
    			ResponseCachingPolicy: &waa.AppAccelerationPolicyResponseCachingPolicyArgs{
    				IsResponseHeaderBasedCachingEnabled: pulumi.Any(_var.Web_app_acceleration_policy_response_caching_policy_is_response_header_based_caching_enabled),
    			},
    			ResponseCompressionPolicy: &waa.AppAccelerationPolicyResponseCompressionPolicyArgs{
    				GzipCompression: &waa.AppAccelerationPolicyResponseCompressionPolicyGzipCompressionArgs{
    					IsEnabled: pulumi.Any(_var.Web_app_acceleration_policy_response_compression_policy_gzip_compression_is_enabled),
    				},
    			},
    			SystemTags: pulumi.Any(_var.Web_app_acceleration_policy_system_tags),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testWebAppAccelerationPolicy = new Oci.Waa.AppAccelerationPolicy("testWebAppAccelerationPolicy", new()
        {
            CompartmentId = @var.Compartment_id,
            DefinedTags = 
            {
                { "foo-namespace.bar-key", "value" },
            },
            DisplayName = @var.Web_app_acceleration_policy_display_name,
            FreeformTags = 
            {
                { "bar-key", "value" },
            },
            ResponseCachingPolicy = new Oci.Waa.Inputs.AppAccelerationPolicyResponseCachingPolicyArgs
            {
                IsResponseHeaderBasedCachingEnabled = @var.Web_app_acceleration_policy_response_caching_policy_is_response_header_based_caching_enabled,
            },
            ResponseCompressionPolicy = new Oci.Waa.Inputs.AppAccelerationPolicyResponseCompressionPolicyArgs
            {
                GzipCompression = new Oci.Waa.Inputs.AppAccelerationPolicyResponseCompressionPolicyGzipCompressionArgs
                {
                    IsEnabled = @var.Web_app_acceleration_policy_response_compression_policy_gzip_compression_is_enabled,
                },
            },
            SystemTags = @var.Web_app_acceleration_policy_system_tags,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Waa.AppAccelerationPolicy;
    import com.pulumi.oci.Waa.AppAccelerationPolicyArgs;
    import com.pulumi.oci.Waa.inputs.AppAccelerationPolicyResponseCachingPolicyArgs;
    import com.pulumi.oci.Waa.inputs.AppAccelerationPolicyResponseCompressionPolicyArgs;
    import com.pulumi.oci.Waa.inputs.AppAccelerationPolicyResponseCompressionPolicyGzipCompressionArgs;
    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 testWebAppAccelerationPolicy = new AppAccelerationPolicy("testWebAppAccelerationPolicy", AppAccelerationPolicyArgs.builder()        
                .compartmentId(var_.compartment_id())
                .definedTags(Map.of("foo-namespace.bar-key", "value"))
                .displayName(var_.web_app_acceleration_policy_display_name())
                .freeformTags(Map.of("bar-key", "value"))
                .responseCachingPolicy(AppAccelerationPolicyResponseCachingPolicyArgs.builder()
                    .isResponseHeaderBasedCachingEnabled(var_.web_app_acceleration_policy_response_caching_policy_is_response_header_based_caching_enabled())
                    .build())
                .responseCompressionPolicy(AppAccelerationPolicyResponseCompressionPolicyArgs.builder()
                    .gzipCompression(AppAccelerationPolicyResponseCompressionPolicyGzipCompressionArgs.builder()
                        .isEnabled(var_.web_app_acceleration_policy_response_compression_policy_gzip_compression_is_enabled())
                        .build())
                    .build())
                .systemTags(var_.web_app_acceleration_policy_system_tags())
                .build());
    
        }
    }
    
    resources:
      testWebAppAccelerationPolicy:
        type: oci:Waa:AppAccelerationPolicy
        properties:
          #Required
          compartmentId: ${var.compartment_id}
          #Optional
          definedTags:
            foo-namespace.bar-key: value
          displayName: ${var.web_app_acceleration_policy_display_name}
          freeformTags:
            bar-key: value
          responseCachingPolicy:
            isResponseHeaderBasedCachingEnabled: ${var.web_app_acceleration_policy_response_caching_policy_is_response_header_based_caching_enabled}
          responseCompressionPolicy:
            gzipCompression:
              isEnabled: ${var.web_app_acceleration_policy_response_compression_policy_gzip_compression_is_enabled}
          systemTags: ${var.web_app_acceleration_policy_system_tags}
    

    Create AppAccelerationPolicy Resource

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

    Constructor syntax

    new AppAccelerationPolicy(name: string, args: AppAccelerationPolicyArgs, opts?: CustomResourceOptions);
    @overload
    def AppAccelerationPolicy(resource_name: str,
                              args: AppAccelerationPolicyArgs,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def AppAccelerationPolicy(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              compartment_id: Optional[str] = None,
                              defined_tags: Optional[Mapping[str, Any]] = None,
                              display_name: Optional[str] = None,
                              freeform_tags: Optional[Mapping[str, Any]] = None,
                              response_caching_policy: Optional[_waa.AppAccelerationPolicyResponseCachingPolicyArgs] = None,
                              response_compression_policy: Optional[_waa.AppAccelerationPolicyResponseCompressionPolicyArgs] = None,
                              system_tags: Optional[Mapping[str, Any]] = None)
    func NewAppAccelerationPolicy(ctx *Context, name string, args AppAccelerationPolicyArgs, opts ...ResourceOption) (*AppAccelerationPolicy, error)
    public AppAccelerationPolicy(string name, AppAccelerationPolicyArgs args, CustomResourceOptions? opts = null)
    public AppAccelerationPolicy(String name, AppAccelerationPolicyArgs args)
    public AppAccelerationPolicy(String name, AppAccelerationPolicyArgs args, CustomResourceOptions options)
    
    type: oci:Waa:AppAccelerationPolicy
    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 AppAccelerationPolicyArgs
    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 AppAccelerationPolicyArgs
    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 AppAccelerationPolicyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AppAccelerationPolicyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AppAccelerationPolicyArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var appAccelerationPolicyResource = new Oci.Waa.AppAccelerationPolicy("appAccelerationPolicyResource", new()
    {
        CompartmentId = "string",
        DefinedTags = 
        {
            { "string", "any" },
        },
        DisplayName = "string",
        FreeformTags = 
        {
            { "string", "any" },
        },
        ResponseCachingPolicy = new Oci.Waa.Inputs.AppAccelerationPolicyResponseCachingPolicyArgs
        {
            IsResponseHeaderBasedCachingEnabled = false,
        },
        ResponseCompressionPolicy = new Oci.Waa.Inputs.AppAccelerationPolicyResponseCompressionPolicyArgs
        {
            GzipCompression = new Oci.Waa.Inputs.AppAccelerationPolicyResponseCompressionPolicyGzipCompressionArgs
            {
                IsEnabled = false,
            },
        },
        SystemTags = 
        {
            { "string", "any" },
        },
    });
    
    example, err := Waa.NewAppAccelerationPolicy(ctx, "appAccelerationPolicyResource", &Waa.AppAccelerationPolicyArgs{
    	CompartmentId: pulumi.String("string"),
    	DefinedTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	DisplayName: pulumi.String("string"),
    	FreeformTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	ResponseCachingPolicy: &waa.AppAccelerationPolicyResponseCachingPolicyArgs{
    		IsResponseHeaderBasedCachingEnabled: pulumi.Bool(false),
    	},
    	ResponseCompressionPolicy: &waa.AppAccelerationPolicyResponseCompressionPolicyArgs{
    		GzipCompression: &waa.AppAccelerationPolicyResponseCompressionPolicyGzipCompressionArgs{
    			IsEnabled: pulumi.Bool(false),
    		},
    	},
    	SystemTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    })
    
    var appAccelerationPolicyResource = new AppAccelerationPolicy("appAccelerationPolicyResource", AppAccelerationPolicyArgs.builder()        
        .compartmentId("string")
        .definedTags(Map.of("string", "any"))
        .displayName("string")
        .freeformTags(Map.of("string", "any"))
        .responseCachingPolicy(AppAccelerationPolicyResponseCachingPolicyArgs.builder()
            .isResponseHeaderBasedCachingEnabled(false)
            .build())
        .responseCompressionPolicy(AppAccelerationPolicyResponseCompressionPolicyArgs.builder()
            .gzipCompression(AppAccelerationPolicyResponseCompressionPolicyGzipCompressionArgs.builder()
                .isEnabled(false)
                .build())
            .build())
        .systemTags(Map.of("string", "any"))
        .build());
    
    app_acceleration_policy_resource = oci.waa.AppAccelerationPolicy("appAccelerationPolicyResource",
        compartment_id="string",
        defined_tags={
            "string": "any",
        },
        display_name="string",
        freeform_tags={
            "string": "any",
        },
        response_caching_policy=oci.waa.AppAccelerationPolicyResponseCachingPolicyArgs(
            is_response_header_based_caching_enabled=False,
        ),
        response_compression_policy=oci.waa.AppAccelerationPolicyResponseCompressionPolicyArgs(
            gzip_compression=oci.waa.AppAccelerationPolicyResponseCompressionPolicyGzipCompressionArgs(
                is_enabled=False,
            ),
        ),
        system_tags={
            "string": "any",
        })
    
    const appAccelerationPolicyResource = new oci.waa.AppAccelerationPolicy("appAccelerationPolicyResource", {
        compartmentId: "string",
        definedTags: {
            string: "any",
        },
        displayName: "string",
        freeformTags: {
            string: "any",
        },
        responseCachingPolicy: {
            isResponseHeaderBasedCachingEnabled: false,
        },
        responseCompressionPolicy: {
            gzipCompression: {
                isEnabled: false,
            },
        },
        systemTags: {
            string: "any",
        },
    });
    
    type: oci:Waa:AppAccelerationPolicy
    properties:
        compartmentId: string
        definedTags:
            string: any
        displayName: string
        freeformTags:
            string: any
        responseCachingPolicy:
            isResponseHeaderBasedCachingEnabled: false
        responseCompressionPolicy:
            gzipCompression:
                isEnabled: false
        systemTags:
            string: any
    

    AppAccelerationPolicy Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The AppAccelerationPolicy resource accepts the following input properties:

    CompartmentId string
    (Updatable) The OCID of the compartment.
    DefinedTags Dictionary<string, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    DisplayName string
    (Updatable) WebAppAccelerationPolicy display name, can be renamed.
    FreeformTags Dictionary<string, object>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    ResponseCachingPolicy AppAccelerationPolicyResponseCachingPolicy
    (Updatable) An object that specifies an HTTP response caching policy.
    ResponseCompressionPolicy AppAccelerationPolicyResponseCompressionPolicy

    (Updatable) An object that specifies a compression policy for HTTP response from ENABLEMENT POINT to the client.

    This compression policy can be used to enable support for HTTP response compression algorithms like gzip and configure the conditions of when a compression algorithm will be used.

    HTTP responses will only be compressed if the client indicates support for one of the enabled compression algorithms via the "Accept-Encoding" request header.

    SystemTags Dictionary<string, object>

    (Updatable) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}

    ** 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

    CompartmentId string
    (Updatable) The OCID of the compartment.
    DefinedTags map[string]interface{}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    DisplayName string
    (Updatable) WebAppAccelerationPolicy display name, can be renamed.
    FreeformTags map[string]interface{}
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    ResponseCachingPolicy AppAccelerationPolicyResponseCachingPolicyArgs
    (Updatable) An object that specifies an HTTP response caching policy.
    ResponseCompressionPolicy AppAccelerationPolicyResponseCompressionPolicyArgs

    (Updatable) An object that specifies a compression policy for HTTP response from ENABLEMENT POINT to the client.

    This compression policy can be used to enable support for HTTP response compression algorithms like gzip and configure the conditions of when a compression algorithm will be used.

    HTTP responses will only be compressed if the client indicates support for one of the enabled compression algorithms via the "Accept-Encoding" request header.

    SystemTags map[string]interface{}

    (Updatable) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}

    ** 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

    compartmentId String
    (Updatable) The OCID of the compartment.
    definedTags Map<String,Object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    displayName String
    (Updatable) WebAppAccelerationPolicy display name, can be renamed.
    freeformTags Map<String,Object>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    responseCachingPolicy AppAccelerationPolicyResponseCachingPolicy
    (Updatable) An object that specifies an HTTP response caching policy.
    responseCompressionPolicy AppAccelerationPolicyResponseCompressionPolicy

    (Updatable) An object that specifies a compression policy for HTTP response from ENABLEMENT POINT to the client.

    This compression policy can be used to enable support for HTTP response compression algorithms like gzip and configure the conditions of when a compression algorithm will be used.

    HTTP responses will only be compressed if the client indicates support for one of the enabled compression algorithms via the "Accept-Encoding" request header.

    systemTags Map<String,Object>

    (Updatable) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}

    ** 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

    compartmentId string
    (Updatable) The OCID of the compartment.
    definedTags {[key: string]: any}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    displayName string
    (Updatable) WebAppAccelerationPolicy display name, can be renamed.
    freeformTags {[key: string]: any}
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    responseCachingPolicy AppAccelerationPolicyResponseCachingPolicy
    (Updatable) An object that specifies an HTTP response caching policy.
    responseCompressionPolicy AppAccelerationPolicyResponseCompressionPolicy

    (Updatable) An object that specifies a compression policy for HTTP response from ENABLEMENT POINT to the client.

    This compression policy can be used to enable support for HTTP response compression algorithms like gzip and configure the conditions of when a compression algorithm will be used.

    HTTP responses will only be compressed if the client indicates support for one of the enabled compression algorithms via the "Accept-Encoding" request header.

    systemTags {[key: string]: any}

    (Updatable) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}

    ** 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

    compartment_id str
    (Updatable) The OCID of the compartment.
    defined_tags Mapping[str, Any]
    (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) WebAppAccelerationPolicy display name, can be renamed.
    freeform_tags Mapping[str, Any]
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    response_caching_policy waa.AppAccelerationPolicyResponseCachingPolicyArgs
    (Updatable) An object that specifies an HTTP response caching policy.
    response_compression_policy waa.AppAccelerationPolicyResponseCompressionPolicyArgs

    (Updatable) An object that specifies a compression policy for HTTP response from ENABLEMENT POINT to the client.

    This compression policy can be used to enable support for HTTP response compression algorithms like gzip and configure the conditions of when a compression algorithm will be used.

    HTTP responses will only be compressed if the client indicates support for one of the enabled compression algorithms via the "Accept-Encoding" request header.

    system_tags Mapping[str, Any]

    (Updatable) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}

    ** 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

    compartmentId String
    (Updatable) The OCID of the compartment.
    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    displayName String
    (Updatable) WebAppAccelerationPolicy display name, can be renamed.
    freeformTags Map<Any>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    responseCachingPolicy Property Map
    (Updatable) An object that specifies an HTTP response caching policy.
    responseCompressionPolicy Property Map

    (Updatable) An object that specifies a compression policy for HTTP response from ENABLEMENT POINT to the client.

    This compression policy can be used to enable support for HTTP response compression algorithms like gzip and configure the conditions of when a compression algorithm will be used.

    HTTP responses will only be compressed if the client indicates support for one of the enabled compression algorithms via the "Accept-Encoding" request header.

    systemTags Map<Any>

    (Updatable) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}

    ** 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

    Outputs

    All input properties are implicitly available as output properties. Additionally, the AppAccelerationPolicy 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 WebAppAccelerationPolicy.
    TimeCreated string
    The time the WebAppAccelerationPolicy was created. An RFC3339 formatted datetime string.
    TimeUpdated string
    The time the WebAppAccelerationPolicy 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 WebAppAccelerationPolicy.
    TimeCreated string
    The time the WebAppAccelerationPolicy was created. An RFC3339 formatted datetime string.
    TimeUpdated string
    The time the WebAppAccelerationPolicy 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 WebAppAccelerationPolicy.
    timeCreated String
    The time the WebAppAccelerationPolicy was created. An RFC3339 formatted datetime string.
    timeUpdated String
    The time the WebAppAccelerationPolicy 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 WebAppAccelerationPolicy.
    timeCreated string
    The time the WebAppAccelerationPolicy was created. An RFC3339 formatted datetime string.
    timeUpdated string
    The time the WebAppAccelerationPolicy 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 WebAppAccelerationPolicy.
    time_created str
    The time the WebAppAccelerationPolicy was created. An RFC3339 formatted datetime string.
    time_updated str
    The time the WebAppAccelerationPolicy 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 WebAppAccelerationPolicy.
    timeCreated String
    The time the WebAppAccelerationPolicy was created. An RFC3339 formatted datetime string.
    timeUpdated String
    The time the WebAppAccelerationPolicy was updated. An RFC3339 formatted datetime string.

    Look up Existing AppAccelerationPolicy Resource

    Get an existing AppAccelerationPolicy 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?: AppAccelerationPolicyState, opts?: CustomResourceOptions): AppAccelerationPolicy
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            compartment_id: Optional[str] = None,
            defined_tags: Optional[Mapping[str, Any]] = None,
            display_name: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, Any]] = None,
            lifecycle_details: Optional[str] = None,
            response_caching_policy: Optional[_waa.AppAccelerationPolicyResponseCachingPolicyArgs] = None,
            response_compression_policy: Optional[_waa.AppAccelerationPolicyResponseCompressionPolicyArgs] = None,
            state: Optional[str] = None,
            system_tags: Optional[Mapping[str, Any]] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None) -> AppAccelerationPolicy
    func GetAppAccelerationPolicy(ctx *Context, name string, id IDInput, state *AppAccelerationPolicyState, opts ...ResourceOption) (*AppAccelerationPolicy, error)
    public static AppAccelerationPolicy Get(string name, Input<string> id, AppAccelerationPolicyState? state, CustomResourceOptions? opts = null)
    public static AppAccelerationPolicy get(String name, Output<String> id, AppAccelerationPolicyState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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.
    The following state arguments are supported:
    CompartmentId string
    (Updatable) The OCID of the compartment.
    DefinedTags Dictionary<string, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    DisplayName string
    (Updatable) WebAppAccelerationPolicy display name, can be renamed.
    FreeformTags Dictionary<string, object>
    (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.
    ResponseCachingPolicy AppAccelerationPolicyResponseCachingPolicy
    (Updatable) An object that specifies an HTTP response caching policy.
    ResponseCompressionPolicy AppAccelerationPolicyResponseCompressionPolicy

    (Updatable) An object that specifies a compression policy for HTTP response from ENABLEMENT POINT to the client.

    This compression policy can be used to enable support for HTTP response compression algorithms like gzip and configure the conditions of when a compression algorithm will be used.

    HTTP responses will only be compressed if the client indicates support for one of the enabled compression algorithms via the "Accept-Encoding" request header.

    State string
    The current state of the WebAppAccelerationPolicy.
    SystemTags Dictionary<string, object>

    (Updatable) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}

    ** 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

    TimeCreated string
    The time the WebAppAccelerationPolicy was created. An RFC3339 formatted datetime string.
    TimeUpdated string
    The time the WebAppAccelerationPolicy was updated. An RFC3339 formatted datetime string.
    CompartmentId string
    (Updatable) The OCID of the compartment.
    DefinedTags map[string]interface{}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    DisplayName string
    (Updatable) WebAppAccelerationPolicy display name, can be renamed.
    FreeformTags map[string]interface{}
    (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.
    ResponseCachingPolicy AppAccelerationPolicyResponseCachingPolicyArgs
    (Updatable) An object that specifies an HTTP response caching policy.
    ResponseCompressionPolicy AppAccelerationPolicyResponseCompressionPolicyArgs

    (Updatable) An object that specifies a compression policy for HTTP response from ENABLEMENT POINT to the client.

    This compression policy can be used to enable support for HTTP response compression algorithms like gzip and configure the conditions of when a compression algorithm will be used.

    HTTP responses will only be compressed if the client indicates support for one of the enabled compression algorithms via the "Accept-Encoding" request header.

    State string
    The current state of the WebAppAccelerationPolicy.
    SystemTags map[string]interface{}

    (Updatable) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}

    ** 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

    TimeCreated string
    The time the WebAppAccelerationPolicy was created. An RFC3339 formatted datetime string.
    TimeUpdated string
    The time the WebAppAccelerationPolicy was updated. An RFC3339 formatted datetime string.
    compartmentId String
    (Updatable) The OCID of the compartment.
    definedTags Map<String,Object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    displayName String
    (Updatable) WebAppAccelerationPolicy display name, can be renamed.
    freeformTags Map<String,Object>
    (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.
    responseCachingPolicy AppAccelerationPolicyResponseCachingPolicy
    (Updatable) An object that specifies an HTTP response caching policy.
    responseCompressionPolicy AppAccelerationPolicyResponseCompressionPolicy

    (Updatable) An object that specifies a compression policy for HTTP response from ENABLEMENT POINT to the client.

    This compression policy can be used to enable support for HTTP response compression algorithms like gzip and configure the conditions of when a compression algorithm will be used.

    HTTP responses will only be compressed if the client indicates support for one of the enabled compression algorithms via the "Accept-Encoding" request header.

    state String
    The current state of the WebAppAccelerationPolicy.
    systemTags Map<String,Object>

    (Updatable) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}

    ** 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

    timeCreated String
    The time the WebAppAccelerationPolicy was created. An RFC3339 formatted datetime string.
    timeUpdated String
    The time the WebAppAccelerationPolicy was updated. An RFC3339 formatted datetime string.
    compartmentId string
    (Updatable) The OCID of the compartment.
    definedTags {[key: string]: any}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    displayName string
    (Updatable) WebAppAccelerationPolicy display name, can be renamed.
    freeformTags {[key: string]: any}
    (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.
    responseCachingPolicy AppAccelerationPolicyResponseCachingPolicy
    (Updatable) An object that specifies an HTTP response caching policy.
    responseCompressionPolicy AppAccelerationPolicyResponseCompressionPolicy

    (Updatable) An object that specifies a compression policy for HTTP response from ENABLEMENT POINT to the client.

    This compression policy can be used to enable support for HTTP response compression algorithms like gzip and configure the conditions of when a compression algorithm will be used.

    HTTP responses will only be compressed if the client indicates support for one of the enabled compression algorithms via the "Accept-Encoding" request header.

    state string
    The current state of the WebAppAccelerationPolicy.
    systemTags {[key: string]: any}

    (Updatable) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}

    ** 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

    timeCreated string
    The time the WebAppAccelerationPolicy was created. An RFC3339 formatted datetime string.
    timeUpdated string
    The time the WebAppAccelerationPolicy was updated. An RFC3339 formatted datetime string.
    compartment_id str
    (Updatable) The OCID of the compartment.
    defined_tags Mapping[str, Any]
    (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) WebAppAccelerationPolicy display name, can be renamed.
    freeform_tags Mapping[str, Any]
    (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.
    response_caching_policy waa.AppAccelerationPolicyResponseCachingPolicyArgs
    (Updatable) An object that specifies an HTTP response caching policy.
    response_compression_policy waa.AppAccelerationPolicyResponseCompressionPolicyArgs

    (Updatable) An object that specifies a compression policy for HTTP response from ENABLEMENT POINT to the client.

    This compression policy can be used to enable support for HTTP response compression algorithms like gzip and configure the conditions of when a compression algorithm will be used.

    HTTP responses will only be compressed if the client indicates support for one of the enabled compression algorithms via the "Accept-Encoding" request header.

    state str
    The current state of the WebAppAccelerationPolicy.
    system_tags Mapping[str, Any]

    (Updatable) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}

    ** 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

    time_created str
    The time the WebAppAccelerationPolicy was created. An RFC3339 formatted datetime string.
    time_updated str
    The time the WebAppAccelerationPolicy was updated. An RFC3339 formatted datetime string.
    compartmentId String
    (Updatable) The OCID of the compartment.
    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    displayName String
    (Updatable) WebAppAccelerationPolicy display name, can be renamed.
    freeformTags Map<Any>
    (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.
    responseCachingPolicy Property Map
    (Updatable) An object that specifies an HTTP response caching policy.
    responseCompressionPolicy Property Map

    (Updatable) An object that specifies a compression policy for HTTP response from ENABLEMENT POINT to the client.

    This compression policy can be used to enable support for HTTP response compression algorithms like gzip and configure the conditions of when a compression algorithm will be used.

    HTTP responses will only be compressed if the client indicates support for one of the enabled compression algorithms via the "Accept-Encoding" request header.

    state String
    The current state of the WebAppAccelerationPolicy.
    systemTags Map<Any>

    (Updatable) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}

    ** 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

    timeCreated String
    The time the WebAppAccelerationPolicy was created. An RFC3339 formatted datetime string.
    timeUpdated String
    The time the WebAppAccelerationPolicy was updated. An RFC3339 formatted datetime string.

    Supporting Types

    AppAccelerationPolicyResponseCachingPolicy, AppAccelerationPolicyResponseCachingPolicyArgs

    IsResponseHeaderBasedCachingEnabled bool

    (Updatable) When false, responses will not be cached by the backend based on response headers.

    When true, responses that contain one of the supported cache control headers will be cached according to the values specified in the cache control headers.

    The "X-Accel-Expires" header field sets caching time of a response in seconds. The zero value disables caching for a response. If the value starts with the @ prefix, it sets an absolute time in seconds since Epoch, up to which the response may be cached.

    If the header does not include the "X-Accel-Expires" field, parameters of caching may be set in the header fields "Expires" or "Cache-Control".

    If the header includes the "Set-Cookie" field, such a response will not be cached.

    If the header includes the "Vary" field with the special value "*", such a response will not be cached. If the header includes the "Vary" field with another value, such a response will be cached taking into account the corresponding request header fields.

    IsResponseHeaderBasedCachingEnabled bool

    (Updatable) When false, responses will not be cached by the backend based on response headers.

    When true, responses that contain one of the supported cache control headers will be cached according to the values specified in the cache control headers.

    The "X-Accel-Expires" header field sets caching time of a response in seconds. The zero value disables caching for a response. If the value starts with the @ prefix, it sets an absolute time in seconds since Epoch, up to which the response may be cached.

    If the header does not include the "X-Accel-Expires" field, parameters of caching may be set in the header fields "Expires" or "Cache-Control".

    If the header includes the "Set-Cookie" field, such a response will not be cached.

    If the header includes the "Vary" field with the special value "*", such a response will not be cached. If the header includes the "Vary" field with another value, such a response will be cached taking into account the corresponding request header fields.

    isResponseHeaderBasedCachingEnabled Boolean

    (Updatable) When false, responses will not be cached by the backend based on response headers.

    When true, responses that contain one of the supported cache control headers will be cached according to the values specified in the cache control headers.

    The "X-Accel-Expires" header field sets caching time of a response in seconds. The zero value disables caching for a response. If the value starts with the @ prefix, it sets an absolute time in seconds since Epoch, up to which the response may be cached.

    If the header does not include the "X-Accel-Expires" field, parameters of caching may be set in the header fields "Expires" or "Cache-Control".

    If the header includes the "Set-Cookie" field, such a response will not be cached.

    If the header includes the "Vary" field with the special value "*", such a response will not be cached. If the header includes the "Vary" field with another value, such a response will be cached taking into account the corresponding request header fields.

    isResponseHeaderBasedCachingEnabled boolean

    (Updatable) When false, responses will not be cached by the backend based on response headers.

    When true, responses that contain one of the supported cache control headers will be cached according to the values specified in the cache control headers.

    The "X-Accel-Expires" header field sets caching time of a response in seconds. The zero value disables caching for a response. If the value starts with the @ prefix, it sets an absolute time in seconds since Epoch, up to which the response may be cached.

    If the header does not include the "X-Accel-Expires" field, parameters of caching may be set in the header fields "Expires" or "Cache-Control".

    If the header includes the "Set-Cookie" field, such a response will not be cached.

    If the header includes the "Vary" field with the special value "*", such a response will not be cached. If the header includes the "Vary" field with another value, such a response will be cached taking into account the corresponding request header fields.

    is_response_header_based_caching_enabled bool

    (Updatable) When false, responses will not be cached by the backend based on response headers.

    When true, responses that contain one of the supported cache control headers will be cached according to the values specified in the cache control headers.

    The "X-Accel-Expires" header field sets caching time of a response in seconds. The zero value disables caching for a response. If the value starts with the @ prefix, it sets an absolute time in seconds since Epoch, up to which the response may be cached.

    If the header does not include the "X-Accel-Expires" field, parameters of caching may be set in the header fields "Expires" or "Cache-Control".

    If the header includes the "Set-Cookie" field, such a response will not be cached.

    If the header includes the "Vary" field with the special value "*", such a response will not be cached. If the header includes the "Vary" field with another value, such a response will be cached taking into account the corresponding request header fields.

    isResponseHeaderBasedCachingEnabled Boolean

    (Updatable) When false, responses will not be cached by the backend based on response headers.

    When true, responses that contain one of the supported cache control headers will be cached according to the values specified in the cache control headers.

    The "X-Accel-Expires" header field sets caching time of a response in seconds. The zero value disables caching for a response. If the value starts with the @ prefix, it sets an absolute time in seconds since Epoch, up to which the response may be cached.

    If the header does not include the "X-Accel-Expires" field, parameters of caching may be set in the header fields "Expires" or "Cache-Control".

    If the header includes the "Set-Cookie" field, such a response will not be cached.

    If the header includes the "Vary" field with the special value "*", such a response will not be cached. If the header includes the "Vary" field with another value, such a response will be cached taking into account the corresponding request header fields.

    AppAccelerationPolicyResponseCompressionPolicy, AppAccelerationPolicyResponseCompressionPolicyArgs

    GzipCompression AppAccelerationPolicyResponseCompressionPolicyGzipCompression
    (Updatable) An object that specifies the gzip compression policy.
    GzipCompression AppAccelerationPolicyResponseCompressionPolicyGzipCompression
    (Updatable) An object that specifies the gzip compression policy.
    gzipCompression AppAccelerationPolicyResponseCompressionPolicyGzipCompression
    (Updatable) An object that specifies the gzip compression policy.
    gzipCompression AppAccelerationPolicyResponseCompressionPolicyGzipCompression
    (Updatable) An object that specifies the gzip compression policy.
    gzip_compression waa.AppAccelerationPolicyResponseCompressionPolicyGzipCompression
    (Updatable) An object that specifies the gzip compression policy.
    gzipCompression Property Map
    (Updatable) An object that specifies the gzip compression policy.

    AppAccelerationPolicyResponseCompressionPolicyGzipCompression, AppAccelerationPolicyResponseCompressionPolicyGzipCompressionArgs

    IsEnabled bool

    (Updatable) When true, support for gzip compression is enabled. HTTP responses will be compressed with gzip only if the client indicates support for gzip via the "Accept-Encoding: gzip" request header.

    When false, support for gzip compression is disabled and HTTP responses will not be compressed with gzip even if the client indicates support for gzip.

    IsEnabled bool

    (Updatable) When true, support for gzip compression is enabled. HTTP responses will be compressed with gzip only if the client indicates support for gzip via the "Accept-Encoding: gzip" request header.

    When false, support for gzip compression is disabled and HTTP responses will not be compressed with gzip even if the client indicates support for gzip.

    isEnabled Boolean

    (Updatable) When true, support for gzip compression is enabled. HTTP responses will be compressed with gzip only if the client indicates support for gzip via the "Accept-Encoding: gzip" request header.

    When false, support for gzip compression is disabled and HTTP responses will not be compressed with gzip even if the client indicates support for gzip.

    isEnabled boolean

    (Updatable) When true, support for gzip compression is enabled. HTTP responses will be compressed with gzip only if the client indicates support for gzip via the "Accept-Encoding: gzip" request header.

    When false, support for gzip compression is disabled and HTTP responses will not be compressed with gzip even if the client indicates support for gzip.

    is_enabled bool

    (Updatable) When true, support for gzip compression is enabled. HTTP responses will be compressed with gzip only if the client indicates support for gzip via the "Accept-Encoding: gzip" request header.

    When false, support for gzip compression is disabled and HTTP responses will not be compressed with gzip even if the client indicates support for gzip.

    isEnabled Boolean

    (Updatable) When true, support for gzip compression is enabled. HTTP responses will be compressed with gzip only if the client indicates support for gzip via the "Accept-Encoding: gzip" request header.

    When false, support for gzip compression is disabled and HTTP responses will not be compressed with gzip even if the client indicates support for gzip.

    Import

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

    $ pulumi import oci:Waa/appAccelerationPolicy:AppAccelerationPolicy test_web_app_acceleration_policy "id"
    

    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.
    oci logo
    Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi