Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.pulumi.gcp.networkservices.kotlin.EdgeCacheOriginArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.networkservices.kotlin
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.networkservices.EdgeCacheOriginArgs.builder
import com.pulumi.gcp.networkservices.kotlin.inputs.EdgeCacheOriginAwsV4AuthenticationArgs
import com.pulumi.gcp.networkservices.kotlin.inputs.EdgeCacheOriginAwsV4AuthenticationArgsBuilder
import com.pulumi.gcp.networkservices.kotlin.inputs.EdgeCacheOriginOriginOverrideActionArgs
import com.pulumi.gcp.networkservices.kotlin.inputs.EdgeCacheOriginOriginOverrideActionArgsBuilder
import com.pulumi.gcp.networkservices.kotlin.inputs.EdgeCacheOriginOriginRedirectArgs
import com.pulumi.gcp.networkservices.kotlin.inputs.EdgeCacheOriginOriginRedirectArgsBuilder
import com.pulumi.gcp.networkservices.kotlin.inputs.EdgeCacheOriginTimeoutArgs
import com.pulumi.gcp.networkservices.kotlin.inputs.EdgeCacheOriginTimeoutArgsBuilder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Int
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.collections.Map
import kotlin.jvm.JvmName
/**
* EdgeCacheOrigin represents a HTTP-reachable backend for an EdgeCacheService.
* To get more information about EdgeCacheOrigin, see:
* * [API documentation](https://cloud.google.com/media-cdn/docs/reference/rest/v1/projects.locations.edgeCacheOrigins)
* ## Example Usage
* ### Network Services Edge Cache Origin Basic
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* const _default = new gcp.networkservices.EdgeCacheOrigin("default", {
* name: "my-origin",
* originAddress: "gs://media-edge-default",
* description: "The default bucket for media edge test",
* });
* ```
* ```python
* import pulumi
* import pulumi_gcp as gcp
* default = gcp.networkservices.EdgeCacheOrigin("default",
* name="my-origin",
* origin_address="gs://media-edge-default",
* description="The default bucket for media edge test")
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Gcp = Pulumi.Gcp;
* return await Deployment.RunAsync(() =>
* {
* var @default = new Gcp.NetworkServices.EdgeCacheOrigin("default", new()
* {
* Name = "my-origin",
* OriginAddress = "gs://media-edge-default",
* Description = "The default bucket for media edge test",
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/networkservices"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* _, err := networkservices.NewEdgeCacheOrigin(ctx, "default", &networkservices.EdgeCacheOriginArgs{
* Name: pulumi.String("my-origin"),
* OriginAddress: pulumi.String("gs://media-edge-default"),
* Description: pulumi.String("The default bucket for media edge test"),
* })
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* package generated_program;
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.gcp.networkservices.EdgeCacheOrigin;
* import com.pulumi.gcp.networkservices.EdgeCacheOriginArgs;
* 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 default_ = new EdgeCacheOrigin("default", EdgeCacheOriginArgs.builder()
* .name("my-origin")
* .originAddress("gs://media-edge-default")
* .description("The default bucket for media edge test")
* .build());
* }
* }
* ```
* ```yaml
* resources:
* default:
* type: gcp:networkservices:EdgeCacheOrigin
* properties:
* name: my-origin
* originAddress: gs://media-edge-default
* description: The default bucket for media edge test
* ```
*
* ### Network Services Edge Cache Origin Advanced
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* const fallback = new gcp.networkservices.EdgeCacheOrigin("fallback", {
* name: "my-fallback",
* originAddress: "fallback.example.com",
* description: "The default bucket for media edge test",
* maxAttempts: 3,
* protocol: "HTTP",
* port: 80,
* retryConditions: [
* "CONNECT_FAILURE",
* "NOT_FOUND",
* "HTTP_5XX",
* "FORBIDDEN",
* ],
* timeout: {
* connectTimeout: "10s",
* maxAttemptsTimeout: "20s",
* responseTimeout: "60s",
* readTimeout: "5s",
* },
* originOverrideAction: {
* urlRewrite: {
* hostRewrite: "example.com",
* },
* headerAction: {
* requestHeadersToAdds: [{
* headerName: "x-header",
* headerValue: "value",
* replace: true,
* }],
* },
* },
* originRedirect: {
* redirectConditions: [
* "MOVED_PERMANENTLY",
* "FOUND",
* "SEE_OTHER",
* "TEMPORARY_REDIRECT",
* "PERMANENT_REDIRECT",
* ],
* },
* });
* const _default = new gcp.networkservices.EdgeCacheOrigin("default", {
* name: "my-origin",
* originAddress: "gs://media-edge-default",
* failoverOrigin: fallback.id,
* description: "The default bucket for media edge test",
* maxAttempts: 2,
* labels: {
* a: "b",
* },
* timeout: {
* connectTimeout: "10s",
* },
* });
* ```
* ```python
* import pulumi
* import pulumi_gcp as gcp
* fallback = gcp.networkservices.EdgeCacheOrigin("fallback",
* name="my-fallback",
* origin_address="fallback.example.com",
* description="The default bucket for media edge test",
* max_attempts=3,
* protocol="HTTP",
* port=80,
* retry_conditions=[
* "CONNECT_FAILURE",
* "NOT_FOUND",
* "HTTP_5XX",
* "FORBIDDEN",
* ],
* timeout={
* "connect_timeout": "10s",
* "max_attempts_timeout": "20s",
* "response_timeout": "60s",
* "read_timeout": "5s",
* },
* origin_override_action={
* "url_rewrite": {
* "host_rewrite": "example.com",
* },
* "header_action": {
* "request_headers_to_adds": [{
* "header_name": "x-header",
* "header_value": "value",
* "replace": True,
* }],
* },
* },
* origin_redirect={
* "redirect_conditions": [
* "MOVED_PERMANENTLY",
* "FOUND",
* "SEE_OTHER",
* "TEMPORARY_REDIRECT",
* "PERMANENT_REDIRECT",
* ],
* })
* default = gcp.networkservices.EdgeCacheOrigin("default",
* name="my-origin",
* origin_address="gs://media-edge-default",
* failover_origin=fallback.id,
* description="The default bucket for media edge test",
* max_attempts=2,
* labels={
* "a": "b",
* },
* timeout={
* "connect_timeout": "10s",
* })
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Gcp = Pulumi.Gcp;
* return await Deployment.RunAsync(() =>
* {
* var fallback = new Gcp.NetworkServices.EdgeCacheOrigin("fallback", new()
* {
* Name = "my-fallback",
* OriginAddress = "fallback.example.com",
* Description = "The default bucket for media edge test",
* MaxAttempts = 3,
* Protocol = "HTTP",
* Port = 80,
* RetryConditions = new[]
* {
* "CONNECT_FAILURE",
* "NOT_FOUND",
* "HTTP_5XX",
* "FORBIDDEN",
* },
* Timeout = new Gcp.NetworkServices.Inputs.EdgeCacheOriginTimeoutArgs
* {
* ConnectTimeout = "10s",
* MaxAttemptsTimeout = "20s",
* ResponseTimeout = "60s",
* ReadTimeout = "5s",
* },
* OriginOverrideAction = new Gcp.NetworkServices.Inputs.EdgeCacheOriginOriginOverrideActionArgs
* {
* UrlRewrite = new Gcp.NetworkServices.Inputs.EdgeCacheOriginOriginOverrideActionUrlRewriteArgs
* {
* HostRewrite = "example.com",
* },
* HeaderAction = new Gcp.NetworkServices.Inputs.EdgeCacheOriginOriginOverrideActionHeaderActionArgs
* {
* RequestHeadersToAdds = new[]
* {
* new Gcp.NetworkServices.Inputs.EdgeCacheOriginOriginOverrideActionHeaderActionRequestHeadersToAddArgs
* {
* HeaderName = "x-header",
* HeaderValue = "value",
* Replace = true,
* },
* },
* },
* },
* OriginRedirect = new Gcp.NetworkServices.Inputs.EdgeCacheOriginOriginRedirectArgs
* {
* RedirectConditions = new[]
* {
* "MOVED_PERMANENTLY",
* "FOUND",
* "SEE_OTHER",
* "TEMPORARY_REDIRECT",
* "PERMANENT_REDIRECT",
* },
* },
* });
* var @default = new Gcp.NetworkServices.EdgeCacheOrigin("default", new()
* {
* Name = "my-origin",
* OriginAddress = "gs://media-edge-default",
* FailoverOrigin = fallback.Id,
* Description = "The default bucket for media edge test",
* MaxAttempts = 2,
* Labels =
* {
* { "a", "b" },
* },
* Timeout = new Gcp.NetworkServices.Inputs.EdgeCacheOriginTimeoutArgs
* {
* ConnectTimeout = "10s",
* },
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/networkservices"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* fallback, err := networkservices.NewEdgeCacheOrigin(ctx, "fallback", &networkservices.EdgeCacheOriginArgs{
* Name: pulumi.String("my-fallback"),
* OriginAddress: pulumi.String("fallback.example.com"),
* Description: pulumi.String("The default bucket for media edge test"),
* MaxAttempts: pulumi.Int(3),
* Protocol: pulumi.String("HTTP"),
* Port: pulumi.Int(80),
* RetryConditions: pulumi.StringArray{
* pulumi.String("CONNECT_FAILURE"),
* pulumi.String("NOT_FOUND"),
* pulumi.String("HTTP_5XX"),
* pulumi.String("FORBIDDEN"),
* },
* Timeout: &networkservices.EdgeCacheOriginTimeoutArgs{
* ConnectTimeout: pulumi.String("10s"),
* MaxAttemptsTimeout: pulumi.String("20s"),
* ResponseTimeout: pulumi.String("60s"),
* ReadTimeout: pulumi.String("5s"),
* },
* OriginOverrideAction: &networkservices.EdgeCacheOriginOriginOverrideActionArgs{
* UrlRewrite: &networkservices.EdgeCacheOriginOriginOverrideActionUrlRewriteArgs{
* HostRewrite: pulumi.String("example.com"),
* },
* HeaderAction: &networkservices.EdgeCacheOriginOriginOverrideActionHeaderActionArgs{
* RequestHeadersToAdds: networkservices.EdgeCacheOriginOriginOverrideActionHeaderActionRequestHeadersToAddArray{
* &networkservices.EdgeCacheOriginOriginOverrideActionHeaderActionRequestHeadersToAddArgs{
* HeaderName: pulumi.String("x-header"),
* HeaderValue: pulumi.String("value"),
* Replace: pulumi.Bool(true),
* },
* },
* },
* },
* OriginRedirect: &networkservices.EdgeCacheOriginOriginRedirectArgs{
* RedirectConditions: pulumi.StringArray{
* pulumi.String("MOVED_PERMANENTLY"),
* pulumi.String("FOUND"),
* pulumi.String("SEE_OTHER"),
* pulumi.String("TEMPORARY_REDIRECT"),
* pulumi.String("PERMANENT_REDIRECT"),
* },
* },
* })
* if err != nil {
* return err
* }
* _, err = networkservices.NewEdgeCacheOrigin(ctx, "default", &networkservices.EdgeCacheOriginArgs{
* Name: pulumi.String("my-origin"),
* OriginAddress: pulumi.String("gs://media-edge-default"),
* FailoverOrigin: fallback.ID(),
* Description: pulumi.String("The default bucket for media edge test"),
* MaxAttempts: pulumi.Int(2),
* Labels: pulumi.StringMap{
* "a": pulumi.String("b"),
* },
* Timeout: &networkservices.EdgeCacheOriginTimeoutArgs{
* ConnectTimeout: pulumi.String("10s"),
* },
* })
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* package generated_program;
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.gcp.networkservices.EdgeCacheOrigin;
* import com.pulumi.gcp.networkservices.EdgeCacheOriginArgs;
* import com.pulumi.gcp.networkservices.inputs.EdgeCacheOriginTimeoutArgs;
* import com.pulumi.gcp.networkservices.inputs.EdgeCacheOriginOriginOverrideActionArgs;
* import com.pulumi.gcp.networkservices.inputs.EdgeCacheOriginOriginOverrideActionUrlRewriteArgs;
* import com.pulumi.gcp.networkservices.inputs.EdgeCacheOriginOriginOverrideActionHeaderActionArgs;
* import com.pulumi.gcp.networkservices.inputs.EdgeCacheOriginOriginRedirectArgs;
* 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 fallback = new EdgeCacheOrigin("fallback", EdgeCacheOriginArgs.builder()
* .name("my-fallback")
* .originAddress("fallback.example.com")
* .description("The default bucket for media edge test")
* .maxAttempts(3)
* .protocol("HTTP")
* .port(80)
* .retryConditions(
* "CONNECT_FAILURE",
* "NOT_FOUND",
* "HTTP_5XX",
* "FORBIDDEN")
* .timeout(EdgeCacheOriginTimeoutArgs.builder()
* .connectTimeout("10s")
* .maxAttemptsTimeout("20s")
* .responseTimeout("60s")
* .readTimeout("5s")
* .build())
* .originOverrideAction(EdgeCacheOriginOriginOverrideActionArgs.builder()
* .urlRewrite(EdgeCacheOriginOriginOverrideActionUrlRewriteArgs.builder()
* .hostRewrite("example.com")
* .build())
* .headerAction(EdgeCacheOriginOriginOverrideActionHeaderActionArgs.builder()
* .requestHeadersToAdds(EdgeCacheOriginOriginOverrideActionHeaderActionRequestHeadersToAddArgs.builder()
* .headerName("x-header")
* .headerValue("value")
* .replace(true)
* .build())
* .build())
* .build())
* .originRedirect(EdgeCacheOriginOriginRedirectArgs.builder()
* .redirectConditions(
* "MOVED_PERMANENTLY",
* "FOUND",
* "SEE_OTHER",
* "TEMPORARY_REDIRECT",
* "PERMANENT_REDIRECT")
* .build())
* .build());
* var default_ = new EdgeCacheOrigin("default", EdgeCacheOriginArgs.builder()
* .name("my-origin")
* .originAddress("gs://media-edge-default")
* .failoverOrigin(fallback.id())
* .description("The default bucket for media edge test")
* .maxAttempts(2)
* .labels(Map.of("a", "b"))
* .timeout(EdgeCacheOriginTimeoutArgs.builder()
* .connectTimeout("10s")
* .build())
* .build());
* }
* }
* ```
* ```yaml
* resources:
* fallback:
* type: gcp:networkservices:EdgeCacheOrigin
* properties:
* name: my-fallback
* originAddress: fallback.example.com
* description: The default bucket for media edge test
* maxAttempts: 3
* protocol: HTTP
* port: 80
* retryConditions:
* - CONNECT_FAILURE
* - NOT_FOUND
* - HTTP_5XX
* - FORBIDDEN
* timeout:
* connectTimeout: 10s
* maxAttemptsTimeout: 20s
* responseTimeout: 60s
* readTimeout: 5s
* originOverrideAction:
* urlRewrite:
* hostRewrite: example.com
* headerAction:
* requestHeadersToAdds:
* - headerName: x-header
* headerValue: value
* replace: true
* originRedirect:
* redirectConditions:
* - MOVED_PERMANENTLY
* - FOUND
* - SEE_OTHER
* - TEMPORARY_REDIRECT
* - PERMANENT_REDIRECT
* default:
* type: gcp:networkservices:EdgeCacheOrigin
* properties:
* name: my-origin
* originAddress: gs://media-edge-default
* failoverOrigin: ${fallback.id}
* description: The default bucket for media edge test
* maxAttempts: 2
* labels:
* a: b
* timeout:
* connectTimeout: 10s
* ```
*
* ### Network Services Edge Cache Origin V4auth
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* const secret_basic = new gcp.secretmanager.Secret("secret-basic", {
* secretId: "secret-name",
* replication: {
* auto: {},
* },
* });
* const secret_version_basic = new gcp.secretmanager.SecretVersion("secret-version-basic", {
* secret: secret_basic.id,
* secretData: "secret-data",
* });
* const _default = new gcp.networkservices.EdgeCacheOrigin("default", {
* name: "my-origin",
* originAddress: "gs://media-edge-default",
* description: "The default bucket for V4 authentication",
* awsV4Authentication: {
* accessKeyId: "ACCESSKEYID",
* secretAccessKeyVersion: secret_version_basic.id,
* originRegion: "auto",
* },
* });
* ```
* ```python
* import pulumi
* import pulumi_gcp as gcp
* secret_basic = gcp.secretmanager.Secret("secret-basic",
* secret_id="secret-name",
* replication={
* "auto": {},
* })
* secret_version_basic = gcp.secretmanager.SecretVersion("secret-version-basic",
* secret=secret_basic.id,
* secret_data="secret-data")
* default = gcp.networkservices.EdgeCacheOrigin("default",
* name="my-origin",
* origin_address="gs://media-edge-default",
* description="The default bucket for V4 authentication",
* aws_v4_authentication={
* "access_key_id": "ACCESSKEYID",
* "secret_access_key_version": secret_version_basic.id,
* "origin_region": "auto",
* })
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Gcp = Pulumi.Gcp;
* return await Deployment.RunAsync(() =>
* {
* var secret_basic = new Gcp.SecretManager.Secret("secret-basic", new()
* {
* SecretId = "secret-name",
* Replication = new Gcp.SecretManager.Inputs.SecretReplicationArgs
* {
* Auto = null,
* },
* });
* var secret_version_basic = new Gcp.SecretManager.SecretVersion("secret-version-basic", new()
* {
* Secret = secret_basic.Id,
* SecretData = "secret-data",
* });
* var @default = new Gcp.NetworkServices.EdgeCacheOrigin("default", new()
* {
* Name = "my-origin",
* OriginAddress = "gs://media-edge-default",
* Description = "The default bucket for V4 authentication",
* AwsV4Authentication = new Gcp.NetworkServices.Inputs.EdgeCacheOriginAwsV4AuthenticationArgs
* {
* AccessKeyId = "ACCESSKEYID",
* SecretAccessKeyVersion = secret_version_basic.Id,
* OriginRegion = "auto",
* },
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/networkservices"
* "github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/secretmanager"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* _, err := secretmanager.NewSecret(ctx, "secret-basic", &secretmanager.SecretArgs{
* SecretId: pulumi.String("secret-name"),
* Replication: &secretmanager.SecretReplicationArgs{
* Auto: nil,
* },
* })
* if err != nil {
* return err
* }
* _, err = secretmanager.NewSecretVersion(ctx, "secret-version-basic", &secretmanager.SecretVersionArgs{
* Secret: secret_basic.ID(),
* SecretData: pulumi.String("secret-data"),
* })
* if err != nil {
* return err
* }
* _, err = networkservices.NewEdgeCacheOrigin(ctx, "default", &networkservices.EdgeCacheOriginArgs{
* Name: pulumi.String("my-origin"),
* OriginAddress: pulumi.String("gs://media-edge-default"),
* Description: pulumi.String("The default bucket for V4 authentication"),
* AwsV4Authentication: &networkservices.EdgeCacheOriginAwsV4AuthenticationArgs{
* AccessKeyId: pulumi.String("ACCESSKEYID"),
* SecretAccessKeyVersion: secret_version_basic.ID(),
* OriginRegion: pulumi.String("auto"),
* },
* })
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* package generated_program;
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.gcp.secretmanager.Secret;
* import com.pulumi.gcp.secretmanager.SecretArgs;
* import com.pulumi.gcp.secretmanager.inputs.SecretReplicationArgs;
* import com.pulumi.gcp.secretmanager.inputs.SecretReplicationAutoArgs;
* import com.pulumi.gcp.secretmanager.SecretVersion;
* import com.pulumi.gcp.secretmanager.SecretVersionArgs;
* import com.pulumi.gcp.networkservices.EdgeCacheOrigin;
* import com.pulumi.gcp.networkservices.EdgeCacheOriginArgs;
* import com.pulumi.gcp.networkservices.inputs.EdgeCacheOriginAwsV4AuthenticationArgs;
* 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 secret_basic = new Secret("secret-basic", SecretArgs.builder()
* .secretId("secret-name")
* .replication(SecretReplicationArgs.builder()
* .auto()
* .build())
* .build());
* var secret_version_basic = new SecretVersion("secret-version-basic", SecretVersionArgs.builder()
* .secret(secret_basic.id())
* .secretData("secret-data")
* .build());
* var default_ = new EdgeCacheOrigin("default", EdgeCacheOriginArgs.builder()
* .name("my-origin")
* .originAddress("gs://media-edge-default")
* .description("The default bucket for V4 authentication")
* .awsV4Authentication(EdgeCacheOriginAwsV4AuthenticationArgs.builder()
* .accessKeyId("ACCESSKEYID")
* .secretAccessKeyVersion(secret_version_basic.id())
* .originRegion("auto")
* .build())
* .build());
* }
* }
* ```
* ```yaml
* resources:
* secret-basic:
* type: gcp:secretmanager:Secret
* properties:
* secretId: secret-name
* replication:
* auto: {}
* secret-version-basic:
* type: gcp:secretmanager:SecretVersion
* properties:
* secret: ${["secret-basic"].id}
* secretData: secret-data
* default:
* type: gcp:networkservices:EdgeCacheOrigin
* properties:
* name: my-origin
* originAddress: gs://media-edge-default
* description: The default bucket for V4 authentication
* awsV4Authentication:
* accessKeyId: ACCESSKEYID
* secretAccessKeyVersion: ${["secret-version-basic"].id}
* originRegion: auto
* ```
*
* ## Import
* EdgeCacheOrigin can be imported using any of these accepted formats:
* * `projects/{{project}}/locations/global/edgeCacheOrigins/{{name}}`
* * `{{project}}/{{name}}`
* * `{{name}}`
* When using the `pulumi import` command, EdgeCacheOrigin can be imported using one of the formats above. For example:
* ```sh
* $ pulumi import gcp:networkservices/edgeCacheOrigin:EdgeCacheOrigin default projects/{{project}}/locations/global/edgeCacheOrigins/{{name}}
* ```
* ```sh
* $ pulumi import gcp:networkservices/edgeCacheOrigin:EdgeCacheOrigin default {{project}}/{{name}}
* ```
* ```sh
* $ pulumi import gcp:networkservices/edgeCacheOrigin:EdgeCacheOrigin default {{name}}
* ```
* @property awsV4Authentication Enable AWS Signature Version 4 origin authentication.
* Structure is documented below.
* @property description A human-readable description of the resource.
* @property failoverOrigin The Origin resource to try when the current origin cannot be reached.
* After maxAttempts is reached, the configured failoverOrigin will be used to fulfil the request.
* The value of timeout.maxAttemptsTimeout dictates the timeout across all origins.
* A reference to a Topic resource.
* @property labels Set of label tags associated with the EdgeCache resource.
* **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
* Please refer to the field `effective_labels` for all of the labels present on the resource.
* @property maxAttempts The maximum number of attempts to cache fill from this origin. Another attempt is made when a cache fill fails with one of the retryConditions.
* Once maxAttempts to this origin have failed the failoverOrigin will be used, if one is specified. That failoverOrigin may specify its own maxAttempts,
* retryConditions and failoverOrigin to control its own cache fill failures.
* The total number of allowed attempts to cache fill across this and failover origins is limited to four.
* The total time allowed for cache fill attempts across this and failover origins can be controlled with maxAttemptsTimeout.
* The last valid, non-retried response from all origins will be returned to the client.
* If no origin returns a valid response, an HTTP 502 will be returned to the client.
* Defaults to 1. Must be a value greater than 0 and less than 4.
* @property name Name of the resource; provided by the client when the resource is created.
* The name must be 1-64 characters long, and match the regular expression [a-zA-Z][a-zA-Z0-9_-]* which means the first character must be a letter,
* and all following characters must be a dash, underscore, letter or digit.
* - - -
* @property originAddress A fully qualified domain name (FQDN) or IP address reachable over the public Internet, or the address of a Google Cloud Storage bucket.
* This address will be used as the origin for cache requests - e.g. FQDN: media-backend.example.com, IPv4: 35.218.1.1, IPv6: 2607:f8b0:4012:809::200e, Cloud Storage: gs://bucketname
* When providing an FQDN (hostname), it must be publicly resolvable (e.g. via Google public DNS) and IP addresses must be publicly routable. It must not contain a protocol (e.g., https://) and it must not contain any slashes.
* If a Cloud Storage bucket is provided, it must be in the canonical "gs://bucketname" format. Other forms, such as "storage.googleapis.com", will be rejected.
* @property originOverrideAction The override actions, including url rewrites and header
* additions, for requests that use this origin.
* Structure is documented below.
* @property originRedirect Follow redirects from this origin.
* Structure is documented below.
* @property port The port to connect to the origin on.
* Defaults to port 443 for HTTP2 and HTTPS protocols, and port 80 for HTTP.
* @property project The ID of the project in which the resource belongs.
* If it is not provided, the provider project is used.
* @property protocol The protocol to use to connect to the configured origin. Defaults to HTTP2, and it is strongly recommended that users use HTTP2 for both security & performance.
* When using HTTP2 or HTTPS as the protocol, a valid, publicly-signed, unexpired TLS (SSL) certificate must be presented by the origin server.
* Possible values are: `HTTP2`, `HTTPS`, `HTTP`.
* @property retryConditions Specifies one or more retry conditions for the configured origin.
* If the failure mode during a connection attempt to the origin matches the configured retryCondition(s),
* the origin request will be retried up to maxAttempts times. The failoverOrigin, if configured, will then be used to satisfy the request.
* The default retryCondition is "CONNECT_FAILURE".
* retryConditions apply to this origin, and not subsequent failoverOrigin(s),
* which may specify their own retryConditions and maxAttempts.
* Valid values are:
* - CONNECT_FAILURE: Retry on failures connecting to origins, for example due to connection timeouts.
* - HTTP_5XX: Retry if the origin responds with any 5xx response code, or if the origin does not respond at all, example: disconnects, reset, read timeout, connection failure, and refused streams.
* - GATEWAY_ERROR: Similar to 5xx, but only applies to response codes 502, 503 or 504.
* - RETRIABLE_4XX: Retry for retriable 4xx response codes, which include HTTP 409 (Conflict) and HTTP 429 (Too Many Requests)
* - NOT_FOUND: Retry if the origin returns a HTTP 404 (Not Found). This can be useful when generating video content, and the segment is not available yet.
* - FORBIDDEN: Retry if the origin returns a HTTP 403 (Forbidden).
* Each value may be one of: `CONNECT_FAILURE`, `HTTP_5XX`, `GATEWAY_ERROR`, `RETRIABLE_4XX`, `NOT_FOUND`, `FORBIDDEN`.
* @property timeout The connection and HTTP timeout configuration for this origin.
* Structure is documented below.
*/
public data class EdgeCacheOriginArgs(
public val awsV4Authentication: Output? = null,
public val description: Output? = null,
public val failoverOrigin: Output? = null,
public val labels: Output>? = null,
public val maxAttempts: Output? = null,
public val name: Output? = null,
public val originAddress: Output? = null,
public val originOverrideAction: Output? = null,
public val originRedirect: Output? = null,
public val port: Output? = null,
public val project: Output? = null,
public val protocol: Output? = null,
public val retryConditions: Output>? = null,
public val timeout: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.networkservices.EdgeCacheOriginArgs =
com.pulumi.gcp.networkservices.EdgeCacheOriginArgs.builder()
.awsV4Authentication(
awsV4Authentication?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.description(description?.applyValue({ args0 -> args0 }))
.failoverOrigin(failoverOrigin?.applyValue({ args0 -> args0 }))
.labels(labels?.applyValue({ args0 -> args0.map({ args0 -> args0.key.to(args0.value) }).toMap() }))
.maxAttempts(maxAttempts?.applyValue({ args0 -> args0 }))
.name(name?.applyValue({ args0 -> args0 }))
.originAddress(originAddress?.applyValue({ args0 -> args0 }))
.originOverrideAction(
originOverrideAction?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.originRedirect(originRedirect?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.port(port?.applyValue({ args0 -> args0 }))
.project(project?.applyValue({ args0 -> args0 }))
.protocol(protocol?.applyValue({ args0 -> args0 }))
.retryConditions(retryConditions?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.timeout(timeout?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}
/**
* Builder for [EdgeCacheOriginArgs].
*/
@PulumiTagMarker
public class EdgeCacheOriginArgsBuilder internal constructor() {
private var awsV4Authentication: Output? = null
private var description: Output? = null
private var failoverOrigin: Output? = null
private var labels: Output>? = null
private var maxAttempts: Output? = null
private var name: Output? = null
private var originAddress: Output? = null
private var originOverrideAction: Output? = null
private var originRedirect: Output? = null
private var port: Output? = null
private var project: Output? = null
private var protocol: Output? = null
private var retryConditions: Output>? = null
private var timeout: Output? = null
/**
* @param value Enable AWS Signature Version 4 origin authentication.
* Structure is documented below.
*/
@JvmName("rxyaccohswbsiwtp")
public suspend fun awsV4Authentication(`value`: Output) {
this.awsV4Authentication = value
}
/**
* @param value A human-readable description of the resource.
*/
@JvmName("qeddcyuknlrgplsx")
public suspend fun description(`value`: Output) {
this.description = value
}
/**
* @param value The Origin resource to try when the current origin cannot be reached.
* After maxAttempts is reached, the configured failoverOrigin will be used to fulfil the request.
* The value of timeout.maxAttemptsTimeout dictates the timeout across all origins.
* A reference to a Topic resource.
*/
@JvmName("cayextatwglraxpt")
public suspend fun failoverOrigin(`value`: Output) {
this.failoverOrigin = value
}
/**
* @param value Set of label tags associated with the EdgeCache resource.
* **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
* Please refer to the field `effective_labels` for all of the labels present on the resource.
*/
@JvmName("viofvnewcfkfpuwu")
public suspend fun labels(`value`: Output>) {
this.labels = value
}
/**
* @param value The maximum number of attempts to cache fill from this origin. Another attempt is made when a cache fill fails with one of the retryConditions.
* Once maxAttempts to this origin have failed the failoverOrigin will be used, if one is specified. That failoverOrigin may specify its own maxAttempts,
* retryConditions and failoverOrigin to control its own cache fill failures.
* The total number of allowed attempts to cache fill across this and failover origins is limited to four.
* The total time allowed for cache fill attempts across this and failover origins can be controlled with maxAttemptsTimeout.
* The last valid, non-retried response from all origins will be returned to the client.
* If no origin returns a valid response, an HTTP 502 will be returned to the client.
* Defaults to 1. Must be a value greater than 0 and less than 4.
*/
@JvmName("rdwgrajvqdfuknlf")
public suspend fun maxAttempts(`value`: Output) {
this.maxAttempts = value
}
/**
* @param value Name of the resource; provided by the client when the resource is created.
* The name must be 1-64 characters long, and match the regular expression [a-zA-Z][a-zA-Z0-9_-]* which means the first character must be a letter,
* and all following characters must be a dash, underscore, letter or digit.
* - - -
*/
@JvmName("bxuiqnotsbouyyen")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value A fully qualified domain name (FQDN) or IP address reachable over the public Internet, or the address of a Google Cloud Storage bucket.
* This address will be used as the origin for cache requests - e.g. FQDN: media-backend.example.com, IPv4: 35.218.1.1, IPv6: 2607:f8b0:4012:809::200e, Cloud Storage: gs://bucketname
* When providing an FQDN (hostname), it must be publicly resolvable (e.g. via Google public DNS) and IP addresses must be publicly routable. It must not contain a protocol (e.g., https://) and it must not contain any slashes.
* If a Cloud Storage bucket is provided, it must be in the canonical "gs://bucketname" format. Other forms, such as "storage.googleapis.com", will be rejected.
*/
@JvmName("retdydlhfitgjftm")
public suspend fun originAddress(`value`: Output) {
this.originAddress = value
}
/**
* @param value The override actions, including url rewrites and header
* additions, for requests that use this origin.
* Structure is documented below.
*/
@JvmName("srgpkvuwayxnbhdo")
public suspend fun originOverrideAction(`value`: Output) {
this.originOverrideAction = value
}
/**
* @param value Follow redirects from this origin.
* Structure is documented below.
*/
@JvmName("fhttbsuvxxspnmdw")
public suspend fun originRedirect(`value`: Output) {
this.originRedirect = value
}
/**
* @param value The port to connect to the origin on.
* Defaults to port 443 for HTTP2 and HTTPS protocols, and port 80 for HTTP.
*/
@JvmName("eemicmlsoyumfcom")
public suspend fun port(`value`: Output) {
this.port = value
}
/**
* @param value The ID of the project in which the resource belongs.
* If it is not provided, the provider project is used.
*/
@JvmName("yrurcnhnddipbdph")
public suspend fun project(`value`: Output) {
this.project = value
}
/**
* @param value The protocol to use to connect to the configured origin. Defaults to HTTP2, and it is strongly recommended that users use HTTP2 for both security & performance.
* When using HTTP2 or HTTPS as the protocol, a valid, publicly-signed, unexpired TLS (SSL) certificate must be presented by the origin server.
* Possible values are: `HTTP2`, `HTTPS`, `HTTP`.
*/
@JvmName("nqtepdfbebhvomoy")
public suspend fun protocol(`value`: Output) {
this.protocol = value
}
/**
* @param value Specifies one or more retry conditions for the configured origin.
* If the failure mode during a connection attempt to the origin matches the configured retryCondition(s),
* the origin request will be retried up to maxAttempts times. The failoverOrigin, if configured, will then be used to satisfy the request.
* The default retryCondition is "CONNECT_FAILURE".
* retryConditions apply to this origin, and not subsequent failoverOrigin(s),
* which may specify their own retryConditions and maxAttempts.
* Valid values are:
* - CONNECT_FAILURE: Retry on failures connecting to origins, for example due to connection timeouts.
* - HTTP_5XX: Retry if the origin responds with any 5xx response code, or if the origin does not respond at all, example: disconnects, reset, read timeout, connection failure, and refused streams.
* - GATEWAY_ERROR: Similar to 5xx, but only applies to response codes 502, 503 or 504.
* - RETRIABLE_4XX: Retry for retriable 4xx response codes, which include HTTP 409 (Conflict) and HTTP 429 (Too Many Requests)
* - NOT_FOUND: Retry if the origin returns a HTTP 404 (Not Found). This can be useful when generating video content, and the segment is not available yet.
* - FORBIDDEN: Retry if the origin returns a HTTP 403 (Forbidden).
* Each value may be one of: `CONNECT_FAILURE`, `HTTP_5XX`, `GATEWAY_ERROR`, `RETRIABLE_4XX`, `NOT_FOUND`, `FORBIDDEN`.
*/
@JvmName("xicnndhhjswvwdkp")
public suspend fun retryConditions(`value`: Output>) {
this.retryConditions = value
}
@JvmName("fwnwglrjqfsgdqox")
public suspend fun retryConditions(vararg values: Output) {
this.retryConditions = Output.all(values.asList())
}
/**
* @param values Specifies one or more retry conditions for the configured origin.
* If the failure mode during a connection attempt to the origin matches the configured retryCondition(s),
* the origin request will be retried up to maxAttempts times. The failoverOrigin, if configured, will then be used to satisfy the request.
* The default retryCondition is "CONNECT_FAILURE".
* retryConditions apply to this origin, and not subsequent failoverOrigin(s),
* which may specify their own retryConditions and maxAttempts.
* Valid values are:
* - CONNECT_FAILURE: Retry on failures connecting to origins, for example due to connection timeouts.
* - HTTP_5XX: Retry if the origin responds with any 5xx response code, or if the origin does not respond at all, example: disconnects, reset, read timeout, connection failure, and refused streams.
* - GATEWAY_ERROR: Similar to 5xx, but only applies to response codes 502, 503 or 504.
* - RETRIABLE_4XX: Retry for retriable 4xx response codes, which include HTTP 409 (Conflict) and HTTP 429 (Too Many Requests)
* - NOT_FOUND: Retry if the origin returns a HTTP 404 (Not Found). This can be useful when generating video content, and the segment is not available yet.
* - FORBIDDEN: Retry if the origin returns a HTTP 403 (Forbidden).
* Each value may be one of: `CONNECT_FAILURE`, `HTTP_5XX`, `GATEWAY_ERROR`, `RETRIABLE_4XX`, `NOT_FOUND`, `FORBIDDEN`.
*/
@JvmName("wfhgkipfvjsifwlu")
public suspend fun retryConditions(values: List>) {
this.retryConditions = Output.all(values)
}
/**
* @param value The connection and HTTP timeout configuration for this origin.
* Structure is documented below.
*/
@JvmName("spkxncqifiyowxct")
public suspend fun timeout(`value`: Output) {
this.timeout = value
}
/**
* @param value Enable AWS Signature Version 4 origin authentication.
* Structure is documented below.
*/
@JvmName("fajbvcplppwkbyur")
public suspend fun awsV4Authentication(`value`: EdgeCacheOriginAwsV4AuthenticationArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.awsV4Authentication = mapped
}
/**
* @param argument Enable AWS Signature Version 4 origin authentication.
* Structure is documented below.
*/
@JvmName("jioxvfevsmolobhx")
public suspend fun awsV4Authentication(argument: suspend EdgeCacheOriginAwsV4AuthenticationArgsBuilder.() -> Unit) {
val toBeMapped = EdgeCacheOriginAwsV4AuthenticationArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.awsV4Authentication = mapped
}
/**
* @param value A human-readable description of the resource.
*/
@JvmName("pnsvlgrwhkswvnvp")
public suspend fun description(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.description = mapped
}
/**
* @param value The Origin resource to try when the current origin cannot be reached.
* After maxAttempts is reached, the configured failoverOrigin will be used to fulfil the request.
* The value of timeout.maxAttemptsTimeout dictates the timeout across all origins.
* A reference to a Topic resource.
*/
@JvmName("vsanlpalyogddbel")
public suspend fun failoverOrigin(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.failoverOrigin = mapped
}
/**
* @param value Set of label tags associated with the EdgeCache resource.
* **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
* Please refer to the field `effective_labels` for all of the labels present on the resource.
*/
@JvmName("ulnnoixlfhcnrptb")
public suspend fun labels(`value`: Map?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.labels = mapped
}
/**
* @param values Set of label tags associated with the EdgeCache resource.
* **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
* Please refer to the field `effective_labels` for all of the labels present on the resource.
*/
@JvmName("jgksetryrhfjkwex")
public fun labels(vararg values: Pair) {
val toBeMapped = values.toMap()
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.labels = mapped
}
/**
* @param value The maximum number of attempts to cache fill from this origin. Another attempt is made when a cache fill fails with one of the retryConditions.
* Once maxAttempts to this origin have failed the failoverOrigin will be used, if one is specified. That failoverOrigin may specify its own maxAttempts,
* retryConditions and failoverOrigin to control its own cache fill failures.
* The total number of allowed attempts to cache fill across this and failover origins is limited to four.
* The total time allowed for cache fill attempts across this and failover origins can be controlled with maxAttemptsTimeout.
* The last valid, non-retried response from all origins will be returned to the client.
* If no origin returns a valid response, an HTTP 502 will be returned to the client.
* Defaults to 1. Must be a value greater than 0 and less than 4.
*/
@JvmName("kfmugkhsqmnvsaip")
public suspend fun maxAttempts(`value`: Int?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.maxAttempts = mapped
}
/**
* @param value Name of the resource; provided by the client when the resource is created.
* The name must be 1-64 characters long, and match the regular expression [a-zA-Z][a-zA-Z0-9_-]* which means the first character must be a letter,
* and all following characters must be a dash, underscore, letter or digit.
* - - -
*/
@JvmName("wkfsjnfjnfjwoxxb")
public suspend fun name(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.name = mapped
}
/**
* @param value A fully qualified domain name (FQDN) or IP address reachable over the public Internet, or the address of a Google Cloud Storage bucket.
* This address will be used as the origin for cache requests - e.g. FQDN: media-backend.example.com, IPv4: 35.218.1.1, IPv6: 2607:f8b0:4012:809::200e, Cloud Storage: gs://bucketname
* When providing an FQDN (hostname), it must be publicly resolvable (e.g. via Google public DNS) and IP addresses must be publicly routable. It must not contain a protocol (e.g., https://) and it must not contain any slashes.
* If a Cloud Storage bucket is provided, it must be in the canonical "gs://bucketname" format. Other forms, such as "storage.googleapis.com", will be rejected.
*/
@JvmName("rhgipwbfdyulinqe")
public suspend fun originAddress(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.originAddress = mapped
}
/**
* @param value The override actions, including url rewrites and header
* additions, for requests that use this origin.
* Structure is documented below.
*/
@JvmName("yypyhcfrtxrhfoir")
public suspend fun originOverrideAction(`value`: EdgeCacheOriginOriginOverrideActionArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.originOverrideAction = mapped
}
/**
* @param argument The override actions, including url rewrites and header
* additions, for requests that use this origin.
* Structure is documented below.
*/
@JvmName("xhoiqbdsfemmwfxh")
public suspend fun originOverrideAction(argument: suspend EdgeCacheOriginOriginOverrideActionArgsBuilder.() -> Unit) {
val toBeMapped = EdgeCacheOriginOriginOverrideActionArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.originOverrideAction = mapped
}
/**
* @param value Follow redirects from this origin.
* Structure is documented below.
*/
@JvmName("jgdijtgdhykixwbx")
public suspend fun originRedirect(`value`: EdgeCacheOriginOriginRedirectArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.originRedirect = mapped
}
/**
* @param argument Follow redirects from this origin.
* Structure is documented below.
*/
@JvmName("iiekvvqfmhruqjij")
public suspend fun originRedirect(argument: suspend EdgeCacheOriginOriginRedirectArgsBuilder.() -> Unit) {
val toBeMapped = EdgeCacheOriginOriginRedirectArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.originRedirect = mapped
}
/**
* @param value The port to connect to the origin on.
* Defaults to port 443 for HTTP2 and HTTPS protocols, and port 80 for HTTP.
*/
@JvmName("gwuklpxudqtqewqk")
public suspend fun port(`value`: Int?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.port = mapped
}
/**
* @param value The ID of the project in which the resource belongs.
* If it is not provided, the provider project is used.
*/
@JvmName("epperemiuhriqipu")
public suspend fun project(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.project = mapped
}
/**
* @param value The protocol to use to connect to the configured origin. Defaults to HTTP2, and it is strongly recommended that users use HTTP2 for both security & performance.
* When using HTTP2 or HTTPS as the protocol, a valid, publicly-signed, unexpired TLS (SSL) certificate must be presented by the origin server.
* Possible values are: `HTTP2`, `HTTPS`, `HTTP`.
*/
@JvmName("jhgrlaaxywbiebhh")
public suspend fun protocol(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.protocol = mapped
}
/**
* @param value Specifies one or more retry conditions for the configured origin.
* If the failure mode during a connection attempt to the origin matches the configured retryCondition(s),
* the origin request will be retried up to maxAttempts times. The failoverOrigin, if configured, will then be used to satisfy the request.
* The default retryCondition is "CONNECT_FAILURE".
* retryConditions apply to this origin, and not subsequent failoverOrigin(s),
* which may specify their own retryConditions and maxAttempts.
* Valid values are:
* - CONNECT_FAILURE: Retry on failures connecting to origins, for example due to connection timeouts.
* - HTTP_5XX: Retry if the origin responds with any 5xx response code, or if the origin does not respond at all, example: disconnects, reset, read timeout, connection failure, and refused streams.
* - GATEWAY_ERROR: Similar to 5xx, but only applies to response codes 502, 503 or 504.
* - RETRIABLE_4XX: Retry for retriable 4xx response codes, which include HTTP 409 (Conflict) and HTTP 429 (Too Many Requests)
* - NOT_FOUND: Retry if the origin returns a HTTP 404 (Not Found). This can be useful when generating video content, and the segment is not available yet.
* - FORBIDDEN: Retry if the origin returns a HTTP 403 (Forbidden).
* Each value may be one of: `CONNECT_FAILURE`, `HTTP_5XX`, `GATEWAY_ERROR`, `RETRIABLE_4XX`, `NOT_FOUND`, `FORBIDDEN`.
*/
@JvmName("avleokocopsscysr")
public suspend fun retryConditions(`value`: List?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.retryConditions = mapped
}
/**
* @param values Specifies one or more retry conditions for the configured origin.
* If the failure mode during a connection attempt to the origin matches the configured retryCondition(s),
* the origin request will be retried up to maxAttempts times. The failoverOrigin, if configured, will then be used to satisfy the request.
* The default retryCondition is "CONNECT_FAILURE".
* retryConditions apply to this origin, and not subsequent failoverOrigin(s),
* which may specify their own retryConditions and maxAttempts.
* Valid values are:
* - CONNECT_FAILURE: Retry on failures connecting to origins, for example due to connection timeouts.
* - HTTP_5XX: Retry if the origin responds with any 5xx response code, or if the origin does not respond at all, example: disconnects, reset, read timeout, connection failure, and refused streams.
* - GATEWAY_ERROR: Similar to 5xx, but only applies to response codes 502, 503 or 504.
* - RETRIABLE_4XX: Retry for retriable 4xx response codes, which include HTTP 409 (Conflict) and HTTP 429 (Too Many Requests)
* - NOT_FOUND: Retry if the origin returns a HTTP 404 (Not Found). This can be useful when generating video content, and the segment is not available yet.
* - FORBIDDEN: Retry if the origin returns a HTTP 403 (Forbidden).
* Each value may be one of: `CONNECT_FAILURE`, `HTTP_5XX`, `GATEWAY_ERROR`, `RETRIABLE_4XX`, `NOT_FOUND`, `FORBIDDEN`.
*/
@JvmName("lthppqohhxrsbvpc")
public suspend fun retryConditions(vararg values: String) {
val toBeMapped = values.toList()
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.retryConditions = mapped
}
/**
* @param value The connection and HTTP timeout configuration for this origin.
* Structure is documented below.
*/
@JvmName("euqxjlogmeicryhh")
public suspend fun timeout(`value`: EdgeCacheOriginTimeoutArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.timeout = mapped
}
/**
* @param argument The connection and HTTP timeout configuration for this origin.
* Structure is documented below.
*/
@JvmName("logxoujecnlseycg")
public suspend fun timeout(argument: suspend EdgeCacheOriginTimeoutArgsBuilder.() -> Unit) {
val toBeMapped = EdgeCacheOriginTimeoutArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.timeout = mapped
}
internal fun build(): EdgeCacheOriginArgs = EdgeCacheOriginArgs(
awsV4Authentication = awsV4Authentication,
description = description,
failoverOrigin = failoverOrigin,
labels = labels,
maxAttempts = maxAttempts,
name = name,
originAddress = originAddress,
originOverrideAction = originOverrideAction,
originRedirect = originRedirect,
port = port,
project = project,
protocol = protocol,
retryConditions = retryConditions,
timeout = timeout,
)
}