published on Thursday, Mar 12, 2026 by kong
published on Thursday, Mar 12, 2026 by kong
CloudGatewayAddon Resource
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as konnect from "@pulumi/konnect";
const myCloudgatewayaddon = new konnect.CloudGatewayAddon("my_cloudgatewayaddon", {
config: {},
name: "my-add-on",
owner: {
controlPlaneGroup: {
controlPlaneGroupGeo: "me",
controlPlaneGroupId: "123e4567-e89b-12d3-a456-426614174000",
},
},
});
import pulumi
import pulumi_konnect as konnect
my_cloudgatewayaddon = konnect.CloudGatewayAddon("my_cloudgatewayaddon",
config={},
name="my-add-on",
owner={
"control_plane_group": {
"control_plane_group_geo": "me",
"control_plane_group_id": "123e4567-e89b-12d3-a456-426614174000",
},
})
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/konnect/v3/konnect"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := konnect.NewCloudGatewayAddon(ctx, "my_cloudgatewayaddon", &konnect.CloudGatewayAddonArgs{
Config: &konnect.CloudGatewayAddonConfigArgs{},
Name: pulumi.String("my-add-on"),
Owner: &konnect.CloudGatewayAddonOwnerArgs{
ControlPlaneGroup: &konnect.CloudGatewayAddonOwnerControlPlaneGroupArgs{
ControlPlaneGroupGeo: pulumi.String("me"),
ControlPlaneGroupId: pulumi.String("123e4567-e89b-12d3-a456-426614174000"),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Konnect = Pulumi.Konnect;
return await Deployment.RunAsync(() =>
{
var myCloudgatewayaddon = new Konnect.CloudGatewayAddon("my_cloudgatewayaddon", new()
{
Config = null,
Name = "my-add-on",
Owner = new Konnect.Inputs.CloudGatewayAddonOwnerArgs
{
ControlPlaneGroup = new Konnect.Inputs.CloudGatewayAddonOwnerControlPlaneGroupArgs
{
ControlPlaneGroupGeo = "me",
ControlPlaneGroupId = "123e4567-e89b-12d3-a456-426614174000",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.konnect.CloudGatewayAddon;
import com.pulumi.konnect.CloudGatewayAddonArgs;
import com.pulumi.konnect.inputs.CloudGatewayAddonConfigArgs;
import com.pulumi.konnect.inputs.CloudGatewayAddonOwnerArgs;
import com.pulumi.konnect.inputs.CloudGatewayAddonOwnerControlPlaneGroupArgs;
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 myCloudgatewayaddon = new CloudGatewayAddon("myCloudgatewayaddon", CloudGatewayAddonArgs.builder()
.config(CloudGatewayAddonConfigArgs.builder()
.build())
.name("my-add-on")
.owner(CloudGatewayAddonOwnerArgs.builder()
.controlPlaneGroup(CloudGatewayAddonOwnerControlPlaneGroupArgs.builder()
.controlPlaneGroupGeo("me")
.controlPlaneGroupId("123e4567-e89b-12d3-a456-426614174000")
.build())
.build())
.build());
}
}
resources:
myCloudgatewayaddon:
type: konnect:CloudGatewayAddon
name: my_cloudgatewayaddon
properties:
config: {}
name: my-add-on
owner:
controlPlaneGroup:
controlPlaneGroupGeo: me
controlPlaneGroupId: 123e4567-e89b-12d3-a456-426614174000
Create CloudGatewayAddon Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CloudGatewayAddon(name: string, args: CloudGatewayAddonArgs, opts?: CustomResourceOptions);@overload
def CloudGatewayAddon(resource_name: str,
args: CloudGatewayAddonArgs,
opts: Optional[ResourceOptions] = None)
@overload
def CloudGatewayAddon(resource_name: str,
opts: Optional[ResourceOptions] = None,
config: Optional[CloudGatewayAddonConfigArgs] = None,
owner: Optional[CloudGatewayAddonOwnerArgs] = None,
name: Optional[str] = None)func NewCloudGatewayAddon(ctx *Context, name string, args CloudGatewayAddonArgs, opts ...ResourceOption) (*CloudGatewayAddon, error)public CloudGatewayAddon(string name, CloudGatewayAddonArgs args, CustomResourceOptions? opts = null)
public CloudGatewayAddon(String name, CloudGatewayAddonArgs args)
public CloudGatewayAddon(String name, CloudGatewayAddonArgs args, CustomResourceOptions options)
type: konnect:CloudGatewayAddon
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 CloudGatewayAddonArgs
- 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 CloudGatewayAddonArgs
- 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 CloudGatewayAddonArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CloudGatewayAddonArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CloudGatewayAddonArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var cloudGatewayAddonResource = new Konnect.CloudGatewayAddon("cloudGatewayAddonResource", new()
{
Config = new Konnect.Inputs.CloudGatewayAddonConfigArgs
{
ManagedCache = new Konnect.Inputs.CloudGatewayAddonConfigManagedCacheArgs
{
CapacityConfig = new Konnect.Inputs.CloudGatewayAddonConfigManagedCacheCapacityConfigArgs
{
Tiered = new Konnect.Inputs.CloudGatewayAddonConfigManagedCacheCapacityConfigTieredArgs
{
Tier = "string",
},
},
},
ManagedCacheAddOnConfigResponse = new Konnect.Inputs.CloudGatewayAddonConfigManagedCacheAddOnConfigResponseArgs
{
CapacityConfig = new Konnect.Inputs.CloudGatewayAddonConfigManagedCacheAddOnConfigResponseCapacityConfigArgs
{
Tiered = new Konnect.Inputs.CloudGatewayAddonConfigManagedCacheAddOnConfigResponseCapacityConfigTieredArgs
{
Tier = "string",
},
},
DataPlaneGroups = new[]
{
new Konnect.Inputs.CloudGatewayAddonConfigManagedCacheAddOnConfigResponseDataPlaneGroupArgs
{
CloudGatewayNetworkId = "string",
Id = "string",
Provider = "string",
Region = "string",
State = "string",
StateMetadata = new Konnect.Inputs.CloudGatewayAddonConfigManagedCacheAddOnConfigResponseDataPlaneGroupStateMetadataArgs
{
ErrorReason = "string",
},
},
},
StateMetadata = new Konnect.Inputs.CloudGatewayAddonConfigManagedCacheAddOnConfigResponseStateMetadataArgs
{
CacheConfigId = "string",
CacheHost = "string",
CachePort = "string",
CacheServerName = "string",
CacheUsername = "string",
CloudAuthentication = new Konnect.Inputs.CloudGatewayAddonConfigManagedCacheAddOnConfigResponseStateMetadataCloudAuthenticationArgs
{
AuthProvider = "string",
AwsAssumeRoleArn = "string",
AwsCacheName = "string",
AwsRegion = "string",
AzureTenantId = "string",
},
},
},
},
Owner = new Konnect.Inputs.CloudGatewayAddonOwnerArgs
{
ControlPlane = new Konnect.Inputs.CloudGatewayAddonOwnerControlPlaneArgs
{
ControlPlaneGeo = "string",
ControlPlaneId = "string",
},
ControlPlaneGroup = new Konnect.Inputs.CloudGatewayAddonOwnerControlPlaneGroupArgs
{
ControlPlaneGroupGeo = "string",
ControlPlaneGroupId = "string",
},
},
Name = "string",
});
example, err := konnect.NewCloudGatewayAddon(ctx, "cloudGatewayAddonResource", &konnect.CloudGatewayAddonArgs{
Config: &konnect.CloudGatewayAddonConfigArgs{
ManagedCache: &konnect.CloudGatewayAddonConfigManagedCacheArgs{
CapacityConfig: &konnect.CloudGatewayAddonConfigManagedCacheCapacityConfigArgs{
Tiered: &konnect.CloudGatewayAddonConfigManagedCacheCapacityConfigTieredArgs{
Tier: pulumi.String("string"),
},
},
},
ManagedCacheAddOnConfigResponse: &konnect.CloudGatewayAddonConfigManagedCacheAddOnConfigResponseArgs{
CapacityConfig: &konnect.CloudGatewayAddonConfigManagedCacheAddOnConfigResponseCapacityConfigArgs{
Tiered: &konnect.CloudGatewayAddonConfigManagedCacheAddOnConfigResponseCapacityConfigTieredArgs{
Tier: pulumi.String("string"),
},
},
DataPlaneGroups: konnect.CloudGatewayAddonConfigManagedCacheAddOnConfigResponseDataPlaneGroupArray{
&konnect.CloudGatewayAddonConfigManagedCacheAddOnConfigResponseDataPlaneGroupArgs{
CloudGatewayNetworkId: pulumi.String("string"),
Id: pulumi.String("string"),
Provider: pulumi.String("string"),
Region: pulumi.String("string"),
State: pulumi.String("string"),
StateMetadata: &konnect.CloudGatewayAddonConfigManagedCacheAddOnConfigResponseDataPlaneGroupStateMetadataArgs{
ErrorReason: pulumi.String("string"),
},
},
},
StateMetadata: &konnect.CloudGatewayAddonConfigManagedCacheAddOnConfigResponseStateMetadataArgs{
CacheConfigId: pulumi.String("string"),
CacheHost: pulumi.String("string"),
CachePort: pulumi.String("string"),
CacheServerName: pulumi.String("string"),
CacheUsername: pulumi.String("string"),
CloudAuthentication: &konnect.CloudGatewayAddonConfigManagedCacheAddOnConfigResponseStateMetadataCloudAuthenticationArgs{
AuthProvider: pulumi.String("string"),
AwsAssumeRoleArn: pulumi.String("string"),
AwsCacheName: pulumi.String("string"),
AwsRegion: pulumi.String("string"),
AzureTenantId: pulumi.String("string"),
},
},
},
},
Owner: &konnect.CloudGatewayAddonOwnerArgs{
ControlPlane: &konnect.CloudGatewayAddonOwnerControlPlaneArgs{
ControlPlaneGeo: pulumi.String("string"),
ControlPlaneId: pulumi.String("string"),
},
ControlPlaneGroup: &konnect.CloudGatewayAddonOwnerControlPlaneGroupArgs{
ControlPlaneGroupGeo: pulumi.String("string"),
ControlPlaneGroupId: pulumi.String("string"),
},
},
Name: pulumi.String("string"),
})
var cloudGatewayAddonResource = new CloudGatewayAddon("cloudGatewayAddonResource", CloudGatewayAddonArgs.builder()
.config(CloudGatewayAddonConfigArgs.builder()
.managedCache(CloudGatewayAddonConfigManagedCacheArgs.builder()
.capacityConfig(CloudGatewayAddonConfigManagedCacheCapacityConfigArgs.builder()
.tiered(CloudGatewayAddonConfigManagedCacheCapacityConfigTieredArgs.builder()
.tier("string")
.build())
.build())
.build())
.managedCacheAddOnConfigResponse(CloudGatewayAddonConfigManagedCacheAddOnConfigResponseArgs.builder()
.capacityConfig(CloudGatewayAddonConfigManagedCacheAddOnConfigResponseCapacityConfigArgs.builder()
.tiered(CloudGatewayAddonConfigManagedCacheAddOnConfigResponseCapacityConfigTieredArgs.builder()
.tier("string")
.build())
.build())
.dataPlaneGroups(CloudGatewayAddonConfigManagedCacheAddOnConfigResponseDataPlaneGroupArgs.builder()
.cloudGatewayNetworkId("string")
.id("string")
.provider("string")
.region("string")
.state("string")
.stateMetadata(CloudGatewayAddonConfigManagedCacheAddOnConfigResponseDataPlaneGroupStateMetadataArgs.builder()
.errorReason("string")
.build())
.build())
.stateMetadata(CloudGatewayAddonConfigManagedCacheAddOnConfigResponseStateMetadataArgs.builder()
.cacheConfigId("string")
.cacheHost("string")
.cachePort("string")
.cacheServerName("string")
.cacheUsername("string")
.cloudAuthentication(CloudGatewayAddonConfigManagedCacheAddOnConfigResponseStateMetadataCloudAuthenticationArgs.builder()
.authProvider("string")
.awsAssumeRoleArn("string")
.awsCacheName("string")
.awsRegion("string")
.azureTenantId("string")
.build())
.build())
.build())
.build())
.owner(CloudGatewayAddonOwnerArgs.builder()
.controlPlane(CloudGatewayAddonOwnerControlPlaneArgs.builder()
.controlPlaneGeo("string")
.controlPlaneId("string")
.build())
.controlPlaneGroup(CloudGatewayAddonOwnerControlPlaneGroupArgs.builder()
.controlPlaneGroupGeo("string")
.controlPlaneGroupId("string")
.build())
.build())
.name("string")
.build());
cloud_gateway_addon_resource = konnect.CloudGatewayAddon("cloudGatewayAddonResource",
config={
"managed_cache": {
"capacity_config": {
"tiered": {
"tier": "string",
},
},
},
"managed_cache_add_on_config_response": {
"capacity_config": {
"tiered": {
"tier": "string",
},
},
"data_plane_groups": [{
"cloud_gateway_network_id": "string",
"id": "string",
"provider": "string",
"region": "string",
"state": "string",
"state_metadata": {
"error_reason": "string",
},
}],
"state_metadata": {
"cache_config_id": "string",
"cache_host": "string",
"cache_port": "string",
"cache_server_name": "string",
"cache_username": "string",
"cloud_authentication": {
"auth_provider": "string",
"aws_assume_role_arn": "string",
"aws_cache_name": "string",
"aws_region": "string",
"azure_tenant_id": "string",
},
},
},
},
owner={
"control_plane": {
"control_plane_geo": "string",
"control_plane_id": "string",
},
"control_plane_group": {
"control_plane_group_geo": "string",
"control_plane_group_id": "string",
},
},
name="string")
const cloudGatewayAddonResource = new konnect.CloudGatewayAddon("cloudGatewayAddonResource", {
config: {
managedCache: {
capacityConfig: {
tiered: {
tier: "string",
},
},
},
managedCacheAddOnConfigResponse: {
capacityConfig: {
tiered: {
tier: "string",
},
},
dataPlaneGroups: [{
cloudGatewayNetworkId: "string",
id: "string",
provider: "string",
region: "string",
state: "string",
stateMetadata: {
errorReason: "string",
},
}],
stateMetadata: {
cacheConfigId: "string",
cacheHost: "string",
cachePort: "string",
cacheServerName: "string",
cacheUsername: "string",
cloudAuthentication: {
authProvider: "string",
awsAssumeRoleArn: "string",
awsCacheName: "string",
awsRegion: "string",
azureTenantId: "string",
},
},
},
},
owner: {
controlPlane: {
controlPlaneGeo: "string",
controlPlaneId: "string",
},
controlPlaneGroup: {
controlPlaneGroupGeo: "string",
controlPlaneGroupId: "string",
},
},
name: "string",
});
type: konnect:CloudGatewayAddon
properties:
config:
managedCache:
capacityConfig:
tiered:
tier: string
managedCacheAddOnConfigResponse:
capacityConfig:
tiered:
tier: string
dataPlaneGroups:
- cloudGatewayNetworkId: string
id: string
provider: string
region: string
state: string
stateMetadata:
errorReason: string
stateMetadata:
cacheConfigId: string
cacheHost: string
cachePort: string
cacheServerName: string
cacheUsername: string
cloudAuthentication:
authProvider: string
awsAssumeRoleArn: string
awsCacheName: string
awsRegion: string
azureTenantId: string
name: string
owner:
controlPlane:
controlPlaneGeo: string
controlPlaneId: string
controlPlaneGroup:
controlPlaneGroupGeo: string
controlPlaneGroupId: string
CloudGatewayAddon Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The CloudGatewayAddon resource accepts the following input properties:
- Config
Cloud
Gateway Addon Config - Configuration for creating different types of add-ons. Requires replacement if changed.
- Owner
Cloud
Gateway Addon Owner - Owner for the add-on. Requires replacement if changed.
- Name string
- Unique human-readable name of the add-on. Requires replacement if changed.
- Config
Cloud
Gateway Addon Config Args - Configuration for creating different types of add-ons. Requires replacement if changed.
- Owner
Cloud
Gateway Addon Owner Args - Owner for the add-on. Requires replacement if changed.
- Name string
- Unique human-readable name of the add-on. Requires replacement if changed.
- config
Cloud
Gateway Addon Config - Configuration for creating different types of add-ons. Requires replacement if changed.
- owner
Cloud
Gateway Addon Owner - Owner for the add-on. Requires replacement if changed.
- name String
- Unique human-readable name of the add-on. Requires replacement if changed.
- config
Cloud
Gateway Addon Config - Configuration for creating different types of add-ons. Requires replacement if changed.
- owner
Cloud
Gateway Addon Owner - Owner for the add-on. Requires replacement if changed.
- name string
- Unique human-readable name of the add-on. Requires replacement if changed.
- config
Cloud
Gateway Addon Config Args - Configuration for creating different types of add-ons. Requires replacement if changed.
- owner
Cloud
Gateway Addon Owner Args - Owner for the add-on. Requires replacement if changed.
- name str
- Unique human-readable name of the add-on. Requires replacement if changed.
- config Property Map
- Configuration for creating different types of add-ons. Requires replacement if changed.
- owner Property Map
- Owner for the add-on. Requires replacement if changed.
- name String
- Unique human-readable name of the add-on. Requires replacement if changed.
Outputs
All input properties are implicitly available as output properties. Additionally, the CloudGatewayAddon resource produces the following output properties:
- Created
At string - RFC-3339 timestamp representation of add-on creation date.
- Entity
Version double - Monotonically-increasing version count of the add-on, to indicate the order of updates to the add-on.
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- The current state of the add-on. Possible values:
initializing- The add-on is in the process of being initialized/updated.ready- The add-on is fully operational.terminating- The add-on is in the process of being deleted.
- Updated
At string - RFC-3339 timestamp representation of add-on update date.
- Created
At string - RFC-3339 timestamp representation of add-on creation date.
- Entity
Version float64 - Monotonically-increasing version count of the add-on, to indicate the order of updates to the add-on.
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- The current state of the add-on. Possible values:
initializing- The add-on is in the process of being initialized/updated.ready- The add-on is fully operational.terminating- The add-on is in the process of being deleted.
- Updated
At string - RFC-3339 timestamp representation of add-on update date.
- created
At String - RFC-3339 timestamp representation of add-on creation date.
- entity
Version Double - Monotonically-increasing version count of the add-on, to indicate the order of updates to the add-on.
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- The current state of the add-on. Possible values:
initializing- The add-on is in the process of being initialized/updated.ready- The add-on is fully operational.terminating- The add-on is in the process of being deleted.
- updated
At String - RFC-3339 timestamp representation of add-on update date.
- created
At string - RFC-3339 timestamp representation of add-on creation date.
- entity
Version number - Monotonically-increasing version count of the add-on, to indicate the order of updates to the add-on.
- id string
- The provider-assigned unique ID for this managed resource.
- state string
- The current state of the add-on. Possible values:
initializing- The add-on is in the process of being initialized/updated.ready- The add-on is fully operational.terminating- The add-on is in the process of being deleted.
- updated
At string - RFC-3339 timestamp representation of add-on update date.
- created_
at str - RFC-3339 timestamp representation of add-on creation date.
- entity_
version float - Monotonically-increasing version count of the add-on, to indicate the order of updates to the add-on.
- id str
- The provider-assigned unique ID for this managed resource.
- state str
- The current state of the add-on. Possible values:
initializing- The add-on is in the process of being initialized/updated.ready- The add-on is fully operational.terminating- The add-on is in the process of being deleted.
- updated_
at str - RFC-3339 timestamp representation of add-on update date.
- created
At String - RFC-3339 timestamp representation of add-on creation date.
- entity
Version Number - Monotonically-increasing version count of the add-on, to indicate the order of updates to the add-on.
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- The current state of the add-on. Possible values:
initializing- The add-on is in the process of being initialized/updated.ready- The add-on is fully operational.terminating- The add-on is in the process of being deleted.
- updated
At String - RFC-3339 timestamp representation of add-on update date.
Look up Existing CloudGatewayAddon Resource
Get an existing CloudGatewayAddon 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?: CloudGatewayAddonState, opts?: CustomResourceOptions): CloudGatewayAddon@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
config: Optional[CloudGatewayAddonConfigArgs] = None,
created_at: Optional[str] = None,
entity_version: Optional[float] = None,
name: Optional[str] = None,
owner: Optional[CloudGatewayAddonOwnerArgs] = None,
state: Optional[str] = None,
updated_at: Optional[str] = None) -> CloudGatewayAddonfunc GetCloudGatewayAddon(ctx *Context, name string, id IDInput, state *CloudGatewayAddonState, opts ...ResourceOption) (*CloudGatewayAddon, error)public static CloudGatewayAddon Get(string name, Input<string> id, CloudGatewayAddonState? state, CustomResourceOptions? opts = null)public static CloudGatewayAddon get(String name, Output<String> id, CloudGatewayAddonState state, CustomResourceOptions options)resources: _: type: konnect:CloudGatewayAddon get: id: ${id}- 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.
- Config
Cloud
Gateway Addon Config - Configuration for creating different types of add-ons. Requires replacement if changed.
- Created
At string - RFC-3339 timestamp representation of add-on creation date.
- Entity
Version double - Monotonically-increasing version count of the add-on, to indicate the order of updates to the add-on.
- Name string
- Unique human-readable name of the add-on. Requires replacement if changed.
- Owner
Cloud
Gateway Addon Owner - Owner for the add-on. Requires replacement if changed.
- State string
- The current state of the add-on. Possible values:
initializing- The add-on is in the process of being initialized/updated.ready- The add-on is fully operational.terminating- The add-on is in the process of being deleted.
- Updated
At string - RFC-3339 timestamp representation of add-on update date.
- Config
Cloud
Gateway Addon Config Args - Configuration for creating different types of add-ons. Requires replacement if changed.
- Created
At string - RFC-3339 timestamp representation of add-on creation date.
- Entity
Version float64 - Monotonically-increasing version count of the add-on, to indicate the order of updates to the add-on.
- Name string
- Unique human-readable name of the add-on. Requires replacement if changed.
- Owner
Cloud
Gateway Addon Owner Args - Owner for the add-on. Requires replacement if changed.
- State string
- The current state of the add-on. Possible values:
initializing- The add-on is in the process of being initialized/updated.ready- The add-on is fully operational.terminating- The add-on is in the process of being deleted.
- Updated
At string - RFC-3339 timestamp representation of add-on update date.
- config
Cloud
Gateway Addon Config - Configuration for creating different types of add-ons. Requires replacement if changed.
- created
At String - RFC-3339 timestamp representation of add-on creation date.
- entity
Version Double - Monotonically-increasing version count of the add-on, to indicate the order of updates to the add-on.
- name String
- Unique human-readable name of the add-on. Requires replacement if changed.
- owner
Cloud
Gateway Addon Owner - Owner for the add-on. Requires replacement if changed.
- state String
- The current state of the add-on. Possible values:
initializing- The add-on is in the process of being initialized/updated.ready- The add-on is fully operational.terminating- The add-on is in the process of being deleted.
- updated
At String - RFC-3339 timestamp representation of add-on update date.
- config
Cloud
Gateway Addon Config - Configuration for creating different types of add-ons. Requires replacement if changed.
- created
At string - RFC-3339 timestamp representation of add-on creation date.
- entity
Version number - Monotonically-increasing version count of the add-on, to indicate the order of updates to the add-on.
- name string
- Unique human-readable name of the add-on. Requires replacement if changed.
- owner
Cloud
Gateway Addon Owner - Owner for the add-on. Requires replacement if changed.
- state string
- The current state of the add-on. Possible values:
initializing- The add-on is in the process of being initialized/updated.ready- The add-on is fully operational.terminating- The add-on is in the process of being deleted.
- updated
At string - RFC-3339 timestamp representation of add-on update date.
- config
Cloud
Gateway Addon Config Args - Configuration for creating different types of add-ons. Requires replacement if changed.
- created_
at str - RFC-3339 timestamp representation of add-on creation date.
- entity_
version float - Monotonically-increasing version count of the add-on, to indicate the order of updates to the add-on.
- name str
- Unique human-readable name of the add-on. Requires replacement if changed.
- owner
Cloud
Gateway Addon Owner Args - Owner for the add-on. Requires replacement if changed.
- state str
- The current state of the add-on. Possible values:
initializing- The add-on is in the process of being initialized/updated.ready- The add-on is fully operational.terminating- The add-on is in the process of being deleted.
- updated_
at str - RFC-3339 timestamp representation of add-on update date.
- config Property Map
- Configuration for creating different types of add-ons. Requires replacement if changed.
- created
At String - RFC-3339 timestamp representation of add-on creation date.
- entity
Version Number - Monotonically-increasing version count of the add-on, to indicate the order of updates to the add-on.
- name String
- Unique human-readable name of the add-on. Requires replacement if changed.
- owner Property Map
- Owner for the add-on. Requires replacement if changed.
- state String
- The current state of the add-on. Possible values:
initializing- The add-on is in the process of being initialized/updated.ready- The add-on is fully operational.terminating- The add-on is in the process of being deleted.
- updated
At String - RFC-3339 timestamp representation of add-on update date.
Supporting Types
CloudGatewayAddonConfig, CloudGatewayAddonConfigArgs
- Managed
Cache CloudGateway Addon Config Managed Cache - Configuration for creating a managed cache add-on. Requires replacement if changed.
- Managed
Cache CloudAdd On Config Response Gateway Addon Config Managed Cache Add On Config Response - Configuration for managed cache add-on.
- Managed
Cache CloudGateway Addon Config Managed Cache - Configuration for creating a managed cache add-on. Requires replacement if changed.
- Managed
Cache CloudAdd On Config Response Gateway Addon Config Managed Cache Add On Config Response - Configuration for managed cache add-on.
- managed
Cache CloudGateway Addon Config Managed Cache - Configuration for creating a managed cache add-on. Requires replacement if changed.
- managed
Cache CloudAdd On Config Response Gateway Addon Config Managed Cache Add On Config Response - Configuration for managed cache add-on.
- managed
Cache CloudGateway Addon Config Managed Cache - Configuration for creating a managed cache add-on. Requires replacement if changed.
- managed
Cache CloudAdd On Config Response Gateway Addon Config Managed Cache Add On Config Response - Configuration for managed cache add-on.
- managed_
cache CloudGateway Addon Config Managed Cache - Configuration for creating a managed cache add-on. Requires replacement if changed.
- managed_
cache_ Cloudadd_ on_ config_ response Gateway Addon Config Managed Cache Add On Config Response - Configuration for managed cache add-on.
- managed
Cache Property Map - Configuration for creating a managed cache add-on. Requires replacement if changed.
- managed
Cache Property MapAdd On Config Response - Configuration for managed cache add-on.
CloudGatewayAddonConfigManagedCache, CloudGatewayAddonConfigManagedCacheArgs
- Capacity
Config CloudGateway Addon Config Managed Cache Capacity Config - Configuration for managed cache capacity and performance characteristics. Requires replacement if changed.
- Capacity
Config CloudGateway Addon Config Managed Cache Capacity Config - Configuration for managed cache capacity and performance characteristics. Requires replacement if changed.
- capacity
Config CloudGateway Addon Config Managed Cache Capacity Config - Configuration for managed cache capacity and performance characteristics. Requires replacement if changed.
- capacity
Config CloudGateway Addon Config Managed Cache Capacity Config - Configuration for managed cache capacity and performance characteristics. Requires replacement if changed.
- capacity_
config CloudGateway Addon Config Managed Cache Capacity Config - Configuration for managed cache capacity and performance characteristics. Requires replacement if changed.
- capacity
Config Property Map - Configuration for managed cache capacity and performance characteristics. Requires replacement if changed.
CloudGatewayAddonConfigManagedCacheAddOnConfigResponse, CloudGatewayAddonConfigManagedCacheAddOnConfigResponseArgs
- Capacity
Config CloudGateway Addon Config Managed Cache Add On Config Response Capacity Config - Configuration for managed cache capacity and performance characteristics.
- Data
Plane List<CloudGroups Gateway Addon Config Managed Cache Add On Config Response Data Plane Group> - List of data-plane groups where the managed cache is deployed.
- State
Metadata CloudGateway Addon Config Managed Cache Add On Config Response State Metadata - Metadata describing the state of the managed cache add-on.
- Capacity
Config CloudGateway Addon Config Managed Cache Add On Config Response Capacity Config - Configuration for managed cache capacity and performance characteristics.
- Data
Plane []CloudGroups Gateway Addon Config Managed Cache Add On Config Response Data Plane Group - List of data-plane groups where the managed cache is deployed.
- State
Metadata CloudGateway Addon Config Managed Cache Add On Config Response State Metadata - Metadata describing the state of the managed cache add-on.
- capacity
Config CloudGateway Addon Config Managed Cache Add On Config Response Capacity Config - Configuration for managed cache capacity and performance characteristics.
- data
Plane List<CloudGroups Gateway Addon Config Managed Cache Add On Config Response Data Plane Group> - List of data-plane groups where the managed cache is deployed.
- state
Metadata CloudGateway Addon Config Managed Cache Add On Config Response State Metadata - Metadata describing the state of the managed cache add-on.
- capacity
Config CloudGateway Addon Config Managed Cache Add On Config Response Capacity Config - Configuration for managed cache capacity and performance characteristics.
- data
Plane CloudGroups Gateway Addon Config Managed Cache Add On Config Response Data Plane Group[] - List of data-plane groups where the managed cache is deployed.
- state
Metadata CloudGateway Addon Config Managed Cache Add On Config Response State Metadata - Metadata describing the state of the managed cache add-on.
- capacity_
config CloudGateway Addon Config Managed Cache Add On Config Response Capacity Config - Configuration for managed cache capacity and performance characteristics.
- data_
plane_ Sequence[Cloudgroups Gateway Addon Config Managed Cache Add On Config Response Data Plane Group] - List of data-plane groups where the managed cache is deployed.
- state_
metadata CloudGateway Addon Config Managed Cache Add On Config Response State Metadata - Metadata describing the state of the managed cache add-on.
- capacity
Config Property Map - Configuration for managed cache capacity and performance characteristics.
- data
Plane List<Property Map>Groups - List of data-plane groups where the managed cache is deployed.
- state
Metadata Property Map - Metadata describing the state of the managed cache add-on.
CloudGatewayAddonConfigManagedCacheAddOnConfigResponseCapacityConfig, CloudGatewayAddonConfigManagedCacheAddOnConfigResponseCapacityConfigArgs
- Tiered
Cloud
Gateway Addon Config Managed Cache Add On Config Response Capacity Config Tiered - Capacity tiers with pre-configured size and performance characteristics.
- Tiered
Cloud
Gateway Addon Config Managed Cache Add On Config Response Capacity Config Tiered - Capacity tiers with pre-configured size and performance characteristics.
- tiered
Cloud
Gateway Addon Config Managed Cache Add On Config Response Capacity Config Tiered - Capacity tiers with pre-configured size and performance characteristics.
- tiered
Cloud
Gateway Addon Config Managed Cache Add On Config Response Capacity Config Tiered - Capacity tiers with pre-configured size and performance characteristics.
- tiered
Cloud
Gateway Addon Config Managed Cache Add On Config Response Capacity Config Tiered - Capacity tiers with pre-configured size and performance characteristics.
- tiered Property Map
- Capacity tiers with pre-configured size and performance characteristics.
CloudGatewayAddonConfigManagedCacheAddOnConfigResponseCapacityConfigTiered, CloudGatewayAddonConfigManagedCacheAddOnConfigResponseCapacityConfigTieredArgs
- Tier string
- Capacity tier that determines both cache size and performance characteristics:
- micro: ~0.5 GiB capacity
- small: ~1 GiB capacity
- medium: ~3 GiB capacity
- large: ~6 GiB capacity
- xlarge: ~12 GiB capacity
- 2xlarge: ~25 GiB capacity
- 4xlarge: ~52 GiB capacity
- Tier string
- Capacity tier that determines both cache size and performance characteristics:
- micro: ~0.5 GiB capacity
- small: ~1 GiB capacity
- medium: ~3 GiB capacity
- large: ~6 GiB capacity
- xlarge: ~12 GiB capacity
- 2xlarge: ~25 GiB capacity
- 4xlarge: ~52 GiB capacity
- tier String
- Capacity tier that determines both cache size and performance characteristics:
- micro: ~0.5 GiB capacity
- small: ~1 GiB capacity
- medium: ~3 GiB capacity
- large: ~6 GiB capacity
- xlarge: ~12 GiB capacity
- 2xlarge: ~25 GiB capacity
- 4xlarge: ~52 GiB capacity
- tier string
- Capacity tier that determines both cache size and performance characteristics:
- micro: ~0.5 GiB capacity
- small: ~1 GiB capacity
- medium: ~3 GiB capacity
- large: ~6 GiB capacity
- xlarge: ~12 GiB capacity
- 2xlarge: ~25 GiB capacity
- 4xlarge: ~52 GiB capacity
- tier str
- Capacity tier that determines both cache size and performance characteristics:
- micro: ~0.5 GiB capacity
- small: ~1 GiB capacity
- medium: ~3 GiB capacity
- large: ~6 GiB capacity
- xlarge: ~12 GiB capacity
- 2xlarge: ~25 GiB capacity
- 4xlarge: ~52 GiB capacity
- tier String
- Capacity tier that determines both cache size and performance characteristics:
- micro: ~0.5 GiB capacity
- small: ~1 GiB capacity
- medium: ~3 GiB capacity
- large: ~6 GiB capacity
- xlarge: ~12 GiB capacity
- 2xlarge: ~25 GiB capacity
- 4xlarge: ~52 GiB capacity
CloudGatewayAddonConfigManagedCacheAddOnConfigResponseDataPlaneGroup, CloudGatewayAddonConfigManagedCacheAddOnConfigResponseDataPlaneGroupArgs
- Cloud
Gateway stringNetwork Id - Network ID this data-plane group is attached to.
- Id string
- ID of the data-plane group.
- Provider string
- Name of cloud provider.
- Region string
- Region of cloud provider the data-plane group is deployed to.
- State string
- The current state of the managed cache add-on in the data-plane group. Possible values:
initializing- The add-on is in the process of being initialized/updated and is setting up necessary resources for this data-plane group.ready- The add-on is fully operational for this data-plane group.error- The add-on is in an error state, and is not operational for this data-plane group.terminating- The add-on is in the process of being deleted for this data-plane group.
- State
Metadata CloudGateway Addon Config Managed Cache Add On Config Response Data Plane Group State Metadata - Metadata describing the state of the managed cache add-on in the data-plane group.
- Cloud
Gateway stringNetwork Id - Network ID this data-plane group is attached to.
- Id string
- ID of the data-plane group.
- Provider string
- Name of cloud provider.
- Region string
- Region of cloud provider the data-plane group is deployed to.
- State string
- The current state of the managed cache add-on in the data-plane group. Possible values:
initializing- The add-on is in the process of being initialized/updated and is setting up necessary resources for this data-plane group.ready- The add-on is fully operational for this data-plane group.error- The add-on is in an error state, and is not operational for this data-plane group.terminating- The add-on is in the process of being deleted for this data-plane group.
- State
Metadata CloudGateway Addon Config Managed Cache Add On Config Response Data Plane Group State Metadata - Metadata describing the state of the managed cache add-on in the data-plane group.
- cloud
Gateway StringNetwork Id - Network ID this data-plane group is attached to.
- id String
- ID of the data-plane group.
- provider String
- Name of cloud provider.
- region String
- Region of cloud provider the data-plane group is deployed to.
- state String
- The current state of the managed cache add-on in the data-plane group. Possible values:
initializing- The add-on is in the process of being initialized/updated and is setting up necessary resources for this data-plane group.ready- The add-on is fully operational for this data-plane group.error- The add-on is in an error state, and is not operational for this data-plane group.terminating- The add-on is in the process of being deleted for this data-plane group.
- state
Metadata CloudGateway Addon Config Managed Cache Add On Config Response Data Plane Group State Metadata - Metadata describing the state of the managed cache add-on in the data-plane group.
- cloud
Gateway stringNetwork Id - Network ID this data-plane group is attached to.
- id string
- ID of the data-plane group.
- provider string
- Name of cloud provider.
- region string
- Region of cloud provider the data-plane group is deployed to.
- state string
- The current state of the managed cache add-on in the data-plane group. Possible values:
initializing- The add-on is in the process of being initialized/updated and is setting up necessary resources for this data-plane group.ready- The add-on is fully operational for this data-plane group.error- The add-on is in an error state, and is not operational for this data-plane group.terminating- The add-on is in the process of being deleted for this data-plane group.
- state
Metadata CloudGateway Addon Config Managed Cache Add On Config Response Data Plane Group State Metadata - Metadata describing the state of the managed cache add-on in the data-plane group.
- cloud_
gateway_ strnetwork_ id - Network ID this data-plane group is attached to.
- id str
- ID of the data-plane group.
- provider str
- Name of cloud provider.
- region str
- Region of cloud provider the data-plane group is deployed to.
- state str
- The current state of the managed cache add-on in the data-plane group. Possible values:
initializing- The add-on is in the process of being initialized/updated and is setting up necessary resources for this data-plane group.ready- The add-on is fully operational for this data-plane group.error- The add-on is in an error state, and is not operational for this data-plane group.terminating- The add-on is in the process of being deleted for this data-plane group.
- state_
metadata CloudGateway Addon Config Managed Cache Add On Config Response Data Plane Group State Metadata - Metadata describing the state of the managed cache add-on in the data-plane group.
- cloud
Gateway StringNetwork Id - Network ID this data-plane group is attached to.
- id String
- ID of the data-plane group.
- provider String
- Name of cloud provider.
- region String
- Region of cloud provider the data-plane group is deployed to.
- state String
- The current state of the managed cache add-on in the data-plane group. Possible values:
initializing- The add-on is in the process of being initialized/updated and is setting up necessary resources for this data-plane group.ready- The add-on is fully operational for this data-plane group.error- The add-on is in an error state, and is not operational for this data-plane group.terminating- The add-on is in the process of being deleted for this data-plane group.
- state
Metadata Property Map - Metadata describing the state of the managed cache add-on in the data-plane group.
CloudGatewayAddonConfigManagedCacheAddOnConfigResponseDataPlaneGroupStateMetadata, CloudGatewayAddonConfigManagedCacheAddOnConfigResponseDataPlaneGroupStateMetadataArgs
- Error
Reason string - Reason why the managed cache add-on may be in an error state, reported from backing infrastructure.
- Error
Reason string - Reason why the managed cache add-on may be in an error state, reported from backing infrastructure.
- error
Reason String - Reason why the managed cache add-on may be in an error state, reported from backing infrastructure.
- error
Reason string - Reason why the managed cache add-on may be in an error state, reported from backing infrastructure.
- error_
reason str - Reason why the managed cache add-on may be in an error state, reported from backing infrastructure.
- error
Reason String - Reason why the managed cache add-on may be in an error state, reported from backing infrastructure.
CloudGatewayAddonConfigManagedCacheAddOnConfigResponseStateMetadata, CloudGatewayAddonConfigManagedCacheAddOnConfigResponseStateMetadataArgs
- Cache
Config stringId - Reference to cache configuration for this add-on.
- Cache
Host string - Env vault path to cache hostname.
- Cache
Port string - Env vault path to cache port.
- Cache
Server stringName - Env vault path to cache server name.
- Cache
Username string - Env vault path to cache username.
- Cloud
Authentication CloudGateway Addon Config Managed Cache Add On Config Response State Metadata Cloud Authentication - Metadata describing the cloud authentication details for managed cache add-on.
- Cache
Config stringId - Reference to cache configuration for this add-on.
- Cache
Host string - Env vault path to cache hostname.
- Cache
Port string - Env vault path to cache port.
- Cache
Server stringName - Env vault path to cache server name.
- Cache
Username string - Env vault path to cache username.
- Cloud
Authentication CloudGateway Addon Config Managed Cache Add On Config Response State Metadata Cloud Authentication - Metadata describing the cloud authentication details for managed cache add-on.
- cache
Config StringId - Reference to cache configuration for this add-on.
- cache
Host String - Env vault path to cache hostname.
- cache
Port String - Env vault path to cache port.
- cache
Server StringName - Env vault path to cache server name.
- cache
Username String - Env vault path to cache username.
- cloud
Authentication CloudGateway Addon Config Managed Cache Add On Config Response State Metadata Cloud Authentication - Metadata describing the cloud authentication details for managed cache add-on.
- cache
Config stringId - Reference to cache configuration for this add-on.
- cache
Host string - Env vault path to cache hostname.
- cache
Port string - Env vault path to cache port.
- cache
Server stringName - Env vault path to cache server name.
- cache
Username string - Env vault path to cache username.
- cloud
Authentication CloudGateway Addon Config Managed Cache Add On Config Response State Metadata Cloud Authentication - Metadata describing the cloud authentication details for managed cache add-on.
- cache_
config_ strid - Reference to cache configuration for this add-on.
- cache_
host str - Env vault path to cache hostname.
- cache_
port str - Env vault path to cache port.
- cache_
server_ strname - Env vault path to cache server name.
- cache_
username str - Env vault path to cache username.
- cloud_
authentication CloudGateway Addon Config Managed Cache Add On Config Response State Metadata Cloud Authentication - Metadata describing the cloud authentication details for managed cache add-on.
- cache
Config StringId - Reference to cache configuration for this add-on.
- cache
Host String - Env vault path to cache hostname.
- cache
Port String - Env vault path to cache port.
- cache
Server StringName - Env vault path to cache server name.
- cache
Username String - Env vault path to cache username.
- cloud
Authentication Property Map - Metadata describing the cloud authentication details for managed cache add-on.
CloudGatewayAddonConfigManagedCacheAddOnConfigResponseStateMetadataCloudAuthentication, CloudGatewayAddonConfigManagedCacheAddOnConfigResponseStateMetadataCloudAuthenticationArgs
- Auth
Provider string - Env vault path to cache auth provider.
- Aws
Assume stringRole Arn - Env vault path to aws assume role arn.
- Aws
Cache stringName - Env vault path to aws cache name.
- Aws
Region string - Env vault path to aws region.
- Azure
Tenant stringId - Env vault path to azure tenant id.
- Auth
Provider string - Env vault path to cache auth provider.
- Aws
Assume stringRole Arn - Env vault path to aws assume role arn.
- Aws
Cache stringName - Env vault path to aws cache name.
- Aws
Region string - Env vault path to aws region.
- Azure
Tenant stringId - Env vault path to azure tenant id.
- auth
Provider String - Env vault path to cache auth provider.
- aws
Assume StringRole Arn - Env vault path to aws assume role arn.
- aws
Cache StringName - Env vault path to aws cache name.
- aws
Region String - Env vault path to aws region.
- azure
Tenant StringId - Env vault path to azure tenant id.
- auth
Provider string - Env vault path to cache auth provider.
- aws
Assume stringRole Arn - Env vault path to aws assume role arn.
- aws
Cache stringName - Env vault path to aws cache name.
- aws
Region string - Env vault path to aws region.
- azure
Tenant stringId - Env vault path to azure tenant id.
- auth_
provider str - Env vault path to cache auth provider.
- aws_
assume_ strrole_ arn - Env vault path to aws assume role arn.
- aws_
cache_ strname - Env vault path to aws cache name.
- aws_
region str - Env vault path to aws region.
- azure_
tenant_ strid - Env vault path to azure tenant id.
- auth
Provider String - Env vault path to cache auth provider.
- aws
Assume StringRole Arn - Env vault path to aws assume role arn.
- aws
Cache StringName - Env vault path to aws cache name.
- aws
Region String - Env vault path to aws region.
- azure
Tenant StringId - Env vault path to azure tenant id.
CloudGatewayAddonConfigManagedCacheCapacityConfig, CloudGatewayAddonConfigManagedCacheCapacityConfigArgs
- Tiered
Cloud
Gateway Addon Config Managed Cache Capacity Config Tiered - Capacity tiers with pre-configured size and performance characteristics. Requires replacement if changed.
- Tiered
Cloud
Gateway Addon Config Managed Cache Capacity Config Tiered - Capacity tiers with pre-configured size and performance characteristics. Requires replacement if changed.
- tiered
Cloud
Gateway Addon Config Managed Cache Capacity Config Tiered - Capacity tiers with pre-configured size and performance characteristics. Requires replacement if changed.
- tiered
Cloud
Gateway Addon Config Managed Cache Capacity Config Tiered - Capacity tiers with pre-configured size and performance characteristics. Requires replacement if changed.
- tiered
Cloud
Gateway Addon Config Managed Cache Capacity Config Tiered - Capacity tiers with pre-configured size and performance characteristics. Requires replacement if changed.
- tiered Property Map
- Capacity tiers with pre-configured size and performance characteristics. Requires replacement if changed.
CloudGatewayAddonConfigManagedCacheCapacityConfigTiered, CloudGatewayAddonConfigManagedCacheCapacityConfigTieredArgs
- Tier string
- Capacity tier that determines both cache size and performance characteristics:
- micro: ~0.5 GiB capacity
- small: ~1 GiB capacity
- medium: ~3 GiB capacity
- large: ~6 GiB capacity
- xlarge: ~12 GiB capacity
- 2xlarge: ~25 GiB capacity
- 4xlarge: ~52 GiB capacity must be one of ["micro", "small", "medium", "large", "xlarge", "2xlarge", "4xlarge"]; Requires replacement if changed.
- Tier string
- Capacity tier that determines both cache size and performance characteristics:
- micro: ~0.5 GiB capacity
- small: ~1 GiB capacity
- medium: ~3 GiB capacity
- large: ~6 GiB capacity
- xlarge: ~12 GiB capacity
- 2xlarge: ~25 GiB capacity
- 4xlarge: ~52 GiB capacity must be one of ["micro", "small", "medium", "large", "xlarge", "2xlarge", "4xlarge"]; Requires replacement if changed.
- tier String
- Capacity tier that determines both cache size and performance characteristics:
- micro: ~0.5 GiB capacity
- small: ~1 GiB capacity
- medium: ~3 GiB capacity
- large: ~6 GiB capacity
- xlarge: ~12 GiB capacity
- 2xlarge: ~25 GiB capacity
- 4xlarge: ~52 GiB capacity must be one of ["micro", "small", "medium", "large", "xlarge", "2xlarge", "4xlarge"]; Requires replacement if changed.
- tier string
- Capacity tier that determines both cache size and performance characteristics:
- micro: ~0.5 GiB capacity
- small: ~1 GiB capacity
- medium: ~3 GiB capacity
- large: ~6 GiB capacity
- xlarge: ~12 GiB capacity
- 2xlarge: ~25 GiB capacity
- 4xlarge: ~52 GiB capacity must be one of ["micro", "small", "medium", "large", "xlarge", "2xlarge", "4xlarge"]; Requires replacement if changed.
- tier str
- Capacity tier that determines both cache size and performance characteristics:
- micro: ~0.5 GiB capacity
- small: ~1 GiB capacity
- medium: ~3 GiB capacity
- large: ~6 GiB capacity
- xlarge: ~12 GiB capacity
- 2xlarge: ~25 GiB capacity
- 4xlarge: ~52 GiB capacity must be one of ["micro", "small", "medium", "large", "xlarge", "2xlarge", "4xlarge"]; Requires replacement if changed.
- tier String
- Capacity tier that determines both cache size and performance characteristics:
- micro: ~0.5 GiB capacity
- small: ~1 GiB capacity
- medium: ~3 GiB capacity
- large: ~6 GiB capacity
- xlarge: ~12 GiB capacity
- 2xlarge: ~25 GiB capacity
- 4xlarge: ~52 GiB capacity must be one of ["micro", "small", "medium", "large", "xlarge", "2xlarge", "4xlarge"]; Requires replacement if changed.
CloudGatewayAddonOwner, CloudGatewayAddonOwnerArgs
- Control
Plane CloudGateway Addon Owner Control Plane - Control Plane is the owner for the add-on. Requires replacement if changed.
- Control
Plane CloudGroup Gateway Addon Owner Control Plane Group - Control Plane Group is the owner for the add-on. Requires replacement if changed.
- Control
Plane CloudGateway Addon Owner Control Plane - Control Plane is the owner for the add-on. Requires replacement if changed.
- Control
Plane CloudGroup Gateway Addon Owner Control Plane Group - Control Plane Group is the owner for the add-on. Requires replacement if changed.
- control
Plane CloudGateway Addon Owner Control Plane - Control Plane is the owner for the add-on. Requires replacement if changed.
- control
Plane CloudGroup Gateway Addon Owner Control Plane Group - Control Plane Group is the owner for the add-on. Requires replacement if changed.
- control
Plane CloudGateway Addon Owner Control Plane - Control Plane is the owner for the add-on. Requires replacement if changed.
- control
Plane CloudGroup Gateway Addon Owner Control Plane Group - Control Plane Group is the owner for the add-on. Requires replacement if changed.
- control_
plane CloudGateway Addon Owner Control Plane - Control Plane is the owner for the add-on. Requires replacement if changed.
- control_
plane_ Cloudgroup Gateway Addon Owner Control Plane Group - Control Plane Group is the owner for the add-on. Requires replacement if changed.
- control
Plane Property Map - Control Plane is the owner for the add-on. Requires replacement if changed.
- control
Plane Property MapGroup - Control Plane Group is the owner for the add-on. Requires replacement if changed.
CloudGatewayAddonOwnerControlPlane, CloudGatewayAddonOwnerControlPlaneArgs
- Control
Plane stringGeo - Set of control-plane geos supported for deploying cloud-gateways configurations. Not Null; must be one of ["us", "eu", "au", "me", "in", "sg"]; Requires replacement if changed.
- Control
Plane stringId - ID of the control-plane that owns this add-on. Not Null; Requires replacement if changed.
- Control
Plane stringGeo - Set of control-plane geos supported for deploying cloud-gateways configurations. Not Null; must be one of ["us", "eu", "au", "me", "in", "sg"]; Requires replacement if changed.
- Control
Plane stringId - ID of the control-plane that owns this add-on. Not Null; Requires replacement if changed.
- control
Plane StringGeo - Set of control-plane geos supported for deploying cloud-gateways configurations. Not Null; must be one of ["us", "eu", "au", "me", "in", "sg"]; Requires replacement if changed.
- control
Plane StringId - ID of the control-plane that owns this add-on. Not Null; Requires replacement if changed.
- control
Plane stringGeo - Set of control-plane geos supported for deploying cloud-gateways configurations. Not Null; must be one of ["us", "eu", "au", "me", "in", "sg"]; Requires replacement if changed.
- control
Plane stringId - ID of the control-plane that owns this add-on. Not Null; Requires replacement if changed.
- control_
plane_ strgeo - Set of control-plane geos supported for deploying cloud-gateways configurations. Not Null; must be one of ["us", "eu", "au", "me", "in", "sg"]; Requires replacement if changed.
- control_
plane_ strid - ID of the control-plane that owns this add-on. Not Null; Requires replacement if changed.
- control
Plane StringGeo - Set of control-plane geos supported for deploying cloud-gateways configurations. Not Null; must be one of ["us", "eu", "au", "me", "in", "sg"]; Requires replacement if changed.
- control
Plane StringId - ID of the control-plane that owns this add-on. Not Null; Requires replacement if changed.
CloudGatewayAddonOwnerControlPlaneGroup, CloudGatewayAddonOwnerControlPlaneGroupArgs
- Control
Plane stringGroup Geo - Set of control-plane geos supported for deploying cloud-gateways configurations. Not Null; must be one of ["us", "eu", "au", "me", "in", "sg"]; Requires replacement if changed.
- Control
Plane stringGroup Id - ID of the control-plane group that owns this add-on. Not Null; Requires replacement if changed.
- Control
Plane stringGroup Geo - Set of control-plane geos supported for deploying cloud-gateways configurations. Not Null; must be one of ["us", "eu", "au", "me", "in", "sg"]; Requires replacement if changed.
- Control
Plane stringGroup Id - ID of the control-plane group that owns this add-on. Not Null; Requires replacement if changed.
- control
Plane StringGroup Geo - Set of control-plane geos supported for deploying cloud-gateways configurations. Not Null; must be one of ["us", "eu", "au", "me", "in", "sg"]; Requires replacement if changed.
- control
Plane StringGroup Id - ID of the control-plane group that owns this add-on. Not Null; Requires replacement if changed.
- control
Plane stringGroup Geo - Set of control-plane geos supported for deploying cloud-gateways configurations. Not Null; must be one of ["us", "eu", "au", "me", "in", "sg"]; Requires replacement if changed.
- control
Plane stringGroup Id - ID of the control-plane group that owns this add-on. Not Null; Requires replacement if changed.
- control_
plane_ strgroup_ geo - Set of control-plane geos supported for deploying cloud-gateways configurations. Not Null; must be one of ["us", "eu", "au", "me", "in", "sg"]; Requires replacement if changed.
- control_
plane_ strgroup_ id - ID of the control-plane group that owns this add-on. Not Null; Requires replacement if changed.
- control
Plane StringGroup Geo - Set of control-plane geos supported for deploying cloud-gateways configurations. Not Null; must be one of ["us", "eu", "au", "me", "in", "sg"]; Requires replacement if changed.
- control
Plane StringGroup Id - ID of the control-plane group that owns this add-on. Not Null; Requires replacement if changed.
Import
In Terraform v1.5.0 and later, the import block can be used with the id attribute, for example:
terraform
import {
to = konnect_cloud_gateway_addon.my_konnect_cloud_gateway_addon
id = “550e8400-e29b-41d4-a716-446655440000”
}
The pulumi import command can be used, for example:
$ pulumi import konnect:index/cloudGatewayAddon:CloudGatewayAddon my_konnect_cloud_gateway_addon "550e8400-e29b-41d4-a716-446655440000"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- konnect kong/terraform-provider-konnect
- License
- Notes
- This Pulumi package is based on the
konnectTerraform Provider.
published on Thursday, Mar 12, 2026 by kong
