ionoscloud.InmemorydbReplicaset
Explore with Pulumi AI
Create InmemorydbReplicaset Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new InmemorydbReplicaset(name: string, args: InmemorydbReplicasetArgs, opts?: CustomResourceOptions);
@overload
def InmemorydbReplicaset(resource_name: str,
args: InmemorydbReplicasetArgs,
opts: Optional[ResourceOptions] = None)
@overload
def InmemorydbReplicaset(resource_name: str,
opts: Optional[ResourceOptions] = None,
replicas: Optional[float] = None,
credentials: Optional[InmemorydbReplicasetCredentialsArgs] = None,
display_name: Optional[str] = None,
eviction_policy: Optional[str] = None,
persistence_mode: Optional[str] = None,
connections: Optional[InmemorydbReplicasetConnectionsArgs] = None,
resources: Optional[InmemorydbReplicasetResourcesArgs] = None,
version: Optional[str] = None,
initial_snapshot_id: Optional[str] = None,
inmemorydb_replicaset_id: Optional[str] = None,
location: Optional[str] = None,
maintenance_window: Optional[InmemorydbReplicasetMaintenanceWindowArgs] = None,
timeouts: Optional[InmemorydbReplicasetTimeoutsArgs] = None)
func NewInmemorydbReplicaset(ctx *Context, name string, args InmemorydbReplicasetArgs, opts ...ResourceOption) (*InmemorydbReplicaset, error)
public InmemorydbReplicaset(string name, InmemorydbReplicasetArgs args, CustomResourceOptions? opts = null)
public InmemorydbReplicaset(String name, InmemorydbReplicasetArgs args)
public InmemorydbReplicaset(String name, InmemorydbReplicasetArgs args, CustomResourceOptions options)
type: ionoscloud:InmemorydbReplicaset
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 InmemorydbReplicasetArgs
- 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 InmemorydbReplicasetArgs
- 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 InmemorydbReplicasetArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args InmemorydbReplicasetArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args InmemorydbReplicasetArgs
- 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 inmemorydbReplicasetResource = new Ionoscloud.InmemorydbReplicaset("inmemorydbReplicasetResource", new()
{
Replicas = 0,
Credentials = new Ionoscloud.Inputs.InmemorydbReplicasetCredentialsArgs
{
Username = "string",
HashedPassword = new Ionoscloud.Inputs.InmemorydbReplicasetCredentialsHashedPasswordArgs
{
Algorithm = "string",
Hash = "string",
},
PlainTextPassword = "string",
},
DisplayName = "string",
EvictionPolicy = "string",
PersistenceMode = "string",
Connections = new Ionoscloud.Inputs.InmemorydbReplicasetConnectionsArgs
{
Cidr = "string",
DatacenterId = "string",
LanId = "string",
},
Resources = new Ionoscloud.Inputs.InmemorydbReplicasetResourcesArgs
{
Cores = 0,
Ram = 0,
Storage = 0,
},
Version = "string",
InitialSnapshotId = "string",
InmemorydbReplicasetId = "string",
Location = "string",
MaintenanceWindow = new Ionoscloud.Inputs.InmemorydbReplicasetMaintenanceWindowArgs
{
DayOfTheWeek = "string",
Time = "string",
},
Timeouts = new Ionoscloud.Inputs.InmemorydbReplicasetTimeoutsArgs
{
Create = "string",
Default = "string",
Delete = "string",
Update = "string",
},
});
example, err := ionoscloud.NewInmemorydbReplicaset(ctx, "inmemorydbReplicasetResource", &ionoscloud.InmemorydbReplicasetArgs{
Replicas: pulumi.Float64(0),
Credentials: &ionoscloud.InmemorydbReplicasetCredentialsArgs{
Username: pulumi.String("string"),
HashedPassword: &ionoscloud.InmemorydbReplicasetCredentialsHashedPasswordArgs{
Algorithm: pulumi.String("string"),
Hash: pulumi.String("string"),
},
PlainTextPassword: pulumi.String("string"),
},
DisplayName: pulumi.String("string"),
EvictionPolicy: pulumi.String("string"),
PersistenceMode: pulumi.String("string"),
Connections: &ionoscloud.InmemorydbReplicasetConnectionsArgs{
Cidr: pulumi.String("string"),
DatacenterId: pulumi.String("string"),
LanId: pulumi.String("string"),
},
Resources: &ionoscloud.InmemorydbReplicasetResourcesArgs{
Cores: pulumi.Float64(0),
Ram: pulumi.Float64(0),
Storage: pulumi.Float64(0),
},
Version: pulumi.String("string"),
InitialSnapshotId: pulumi.String("string"),
InmemorydbReplicasetId: pulumi.String("string"),
Location: pulumi.String("string"),
MaintenanceWindow: &ionoscloud.InmemorydbReplicasetMaintenanceWindowArgs{
DayOfTheWeek: pulumi.String("string"),
Time: pulumi.String("string"),
},
Timeouts: &ionoscloud.InmemorydbReplicasetTimeoutsArgs{
Create: pulumi.String("string"),
Default: pulumi.String("string"),
Delete: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
var inmemorydbReplicasetResource = new InmemorydbReplicaset("inmemorydbReplicasetResource", InmemorydbReplicasetArgs.builder()
.replicas(0)
.credentials(InmemorydbReplicasetCredentialsArgs.builder()
.username("string")
.hashedPassword(InmemorydbReplicasetCredentialsHashedPasswordArgs.builder()
.algorithm("string")
.hash("string")
.build())
.plainTextPassword("string")
.build())
.displayName("string")
.evictionPolicy("string")
.persistenceMode("string")
.connections(InmemorydbReplicasetConnectionsArgs.builder()
.cidr("string")
.datacenterId("string")
.lanId("string")
.build())
.resources(InmemorydbReplicasetResourcesArgs.builder()
.cores(0)
.ram(0)
.storage(0)
.build())
.version("string")
.initialSnapshotId("string")
.inmemorydbReplicasetId("string")
.location("string")
.maintenanceWindow(InmemorydbReplicasetMaintenanceWindowArgs.builder()
.dayOfTheWeek("string")
.time("string")
.build())
.timeouts(InmemorydbReplicasetTimeoutsArgs.builder()
.create("string")
.default_("string")
.delete("string")
.update("string")
.build())
.build());
inmemorydb_replicaset_resource = ionoscloud.InmemorydbReplicaset("inmemorydbReplicasetResource",
replicas=0,
credentials={
"username": "string",
"hashed_password": {
"algorithm": "string",
"hash": "string",
},
"plain_text_password": "string",
},
display_name="string",
eviction_policy="string",
persistence_mode="string",
connections={
"cidr": "string",
"datacenter_id": "string",
"lan_id": "string",
},
resources={
"cores": 0,
"ram": 0,
"storage": 0,
},
version="string",
initial_snapshot_id="string",
inmemorydb_replicaset_id="string",
location="string",
maintenance_window={
"day_of_the_week": "string",
"time": "string",
},
timeouts={
"create": "string",
"default": "string",
"delete": "string",
"update": "string",
})
const inmemorydbReplicasetResource = new ionoscloud.InmemorydbReplicaset("inmemorydbReplicasetResource", {
replicas: 0,
credentials: {
username: "string",
hashedPassword: {
algorithm: "string",
hash: "string",
},
plainTextPassword: "string",
},
displayName: "string",
evictionPolicy: "string",
persistenceMode: "string",
connections: {
cidr: "string",
datacenterId: "string",
lanId: "string",
},
resources: {
cores: 0,
ram: 0,
storage: 0,
},
version: "string",
initialSnapshotId: "string",
inmemorydbReplicasetId: "string",
location: "string",
maintenanceWindow: {
dayOfTheWeek: "string",
time: "string",
},
timeouts: {
create: "string",
"default": "string",
"delete": "string",
update: "string",
},
});
type: ionoscloud:InmemorydbReplicaset
properties:
connections:
cidr: string
datacenterId: string
lanId: string
credentials:
hashedPassword:
algorithm: string
hash: string
plainTextPassword: string
username: string
displayName: string
evictionPolicy: string
initialSnapshotId: string
inmemorydbReplicasetId: string
location: string
maintenanceWindow:
dayOfTheWeek: string
time: string
persistenceMode: string
replicas: 0
resources:
cores: 0
ram: 0
storage: 0
timeouts:
create: string
default: string
delete: string
update: string
version: string
InmemorydbReplicaset 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 InmemorydbReplicaset resource accepts the following input properties:
- Connections
Inmemorydb
Replicaset Connections - The network connection for your replica set. Only one connection is allowed.
- Credentials
Inmemorydb
Replicaset Credentials - Credentials for the InMemoryDB replicaset.
- Display
Name string - The human readable name of your replica set.
- Eviction
Policy string - The eviction policy for the replica set.
- Persistence
Mode string - Specifies How and If data is persisted.
- Replicas double
- The total number of replicas in the replica set (one active and n-1 passive). In case of a standalone instance, the value is 1. In all other cases, the value is > 1. The replicas will not be available as read replicas, they are only standby for a failure of the active instance.
- Resources
Inmemorydb
Replicaset Resources - The resources of the individual replicas.
- Version string
- The InMemoryDB version of your replica set.
- Initial
Snapshot stringId - The ID of a snapshot to restore the replica set from. If set, the replica set will be created from the snapshot.
- Inmemorydb
Replicaset stringId - Location string
- The replica set location
- Maintenance
Window InmemorydbReplicaset Maintenance Window - A weekly 4 hour-long window, during which maintenance might occur.
- Timeouts
Inmemorydb
Replicaset Timeouts
- Connections
Inmemorydb
Replicaset Connections Args - The network connection for your replica set. Only one connection is allowed.
- Credentials
Inmemorydb
Replicaset Credentials Args - Credentials for the InMemoryDB replicaset.
- Display
Name string - The human readable name of your replica set.
- Eviction
Policy string - The eviction policy for the replica set.
- Persistence
Mode string - Specifies How and If data is persisted.
- Replicas float64
- The total number of replicas in the replica set (one active and n-1 passive). In case of a standalone instance, the value is 1. In all other cases, the value is > 1. The replicas will not be available as read replicas, they are only standby for a failure of the active instance.
- Resources
Inmemorydb
Replicaset Resources Args - The resources of the individual replicas.
- Version string
- The InMemoryDB version of your replica set.
- Initial
Snapshot stringId - The ID of a snapshot to restore the replica set from. If set, the replica set will be created from the snapshot.
- Inmemorydb
Replicaset stringId - Location string
- The replica set location
- Maintenance
Window InmemorydbReplicaset Maintenance Window Args - A weekly 4 hour-long window, during which maintenance might occur.
- Timeouts
Inmemorydb
Replicaset Timeouts Args
- connections
Inmemorydb
Replicaset Connections - The network connection for your replica set. Only one connection is allowed.
- credentials
Inmemorydb
Replicaset Credentials - Credentials for the InMemoryDB replicaset.
- display
Name String - The human readable name of your replica set.
- eviction
Policy String - The eviction policy for the replica set.
- persistence
Mode String - Specifies How and If data is persisted.
- replicas Double
- The total number of replicas in the replica set (one active and n-1 passive). In case of a standalone instance, the value is 1. In all other cases, the value is > 1. The replicas will not be available as read replicas, they are only standby for a failure of the active instance.
- resources
Inmemorydb
Replicaset Resources - The resources of the individual replicas.
- version String
- The InMemoryDB version of your replica set.
- initial
Snapshot StringId - The ID of a snapshot to restore the replica set from. If set, the replica set will be created from the snapshot.
- inmemorydb
Replicaset StringId - location String
- The replica set location
- maintenance
Window InmemorydbReplicaset Maintenance Window - A weekly 4 hour-long window, during which maintenance might occur.
- timeouts
Inmemorydb
Replicaset Timeouts
- connections
Inmemorydb
Replicaset Connections - The network connection for your replica set. Only one connection is allowed.
- credentials
Inmemorydb
Replicaset Credentials - Credentials for the InMemoryDB replicaset.
- display
Name string - The human readable name of your replica set.
- eviction
Policy string - The eviction policy for the replica set.
- persistence
Mode string - Specifies How and If data is persisted.
- replicas number
- The total number of replicas in the replica set (one active and n-1 passive). In case of a standalone instance, the value is 1. In all other cases, the value is > 1. The replicas will not be available as read replicas, they are only standby for a failure of the active instance.
- resources
Inmemorydb
Replicaset Resources - The resources of the individual replicas.
- version string
- The InMemoryDB version of your replica set.
- initial
Snapshot stringId - The ID of a snapshot to restore the replica set from. If set, the replica set will be created from the snapshot.
- inmemorydb
Replicaset stringId - location string
- The replica set location
- maintenance
Window InmemorydbReplicaset Maintenance Window - A weekly 4 hour-long window, during which maintenance might occur.
- timeouts
Inmemorydb
Replicaset Timeouts
- connections
Inmemorydb
Replicaset Connections Args - The network connection for your replica set. Only one connection is allowed.
- credentials
Inmemorydb
Replicaset Credentials Args - Credentials for the InMemoryDB replicaset.
- display_
name str - The human readable name of your replica set.
- eviction_
policy str - The eviction policy for the replica set.
- persistence_
mode str - Specifies How and If data is persisted.
- replicas float
- The total number of replicas in the replica set (one active and n-1 passive). In case of a standalone instance, the value is 1. In all other cases, the value is > 1. The replicas will not be available as read replicas, they are only standby for a failure of the active instance.
- resources
Inmemorydb
Replicaset Resources Args - The resources of the individual replicas.
- version str
- The InMemoryDB version of your replica set.
- initial_
snapshot_ strid - The ID of a snapshot to restore the replica set from. If set, the replica set will be created from the snapshot.
- inmemorydb_
replicaset_ strid - location str
- The replica set location
- maintenance_
window InmemorydbReplicaset Maintenance Window Args - A weekly 4 hour-long window, during which maintenance might occur.
- timeouts
Inmemorydb
Replicaset Timeouts Args
- connections Property Map
- The network connection for your replica set. Only one connection is allowed.
- credentials Property Map
- Credentials for the InMemoryDB replicaset.
- display
Name String - The human readable name of your replica set.
- eviction
Policy String - The eviction policy for the replica set.
- persistence
Mode String - Specifies How and If data is persisted.
- replicas Number
- The total number of replicas in the replica set (one active and n-1 passive). In case of a standalone instance, the value is 1. In all other cases, the value is > 1. The replicas will not be available as read replicas, they are only standby for a failure of the active instance.
- resources Property Map
- The resources of the individual replicas.
- version String
- The InMemoryDB version of your replica set.
- initial
Snapshot StringId - The ID of a snapshot to restore the replica set from. If set, the replica set will be created from the snapshot.
- inmemorydb
Replicaset StringId - location String
- The replica set location
- maintenance
Window Property Map - A weekly 4 hour-long window, during which maintenance might occur.
- timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the InmemorydbReplicaset resource produces the following output properties:
Look up Existing InmemorydbReplicaset Resource
Get an existing InmemorydbReplicaset 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?: InmemorydbReplicasetState, opts?: CustomResourceOptions): InmemorydbReplicaset
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
connections: Optional[InmemorydbReplicasetConnectionsArgs] = None,
credentials: Optional[InmemorydbReplicasetCredentialsArgs] = None,
display_name: Optional[str] = None,
dns_name: Optional[str] = None,
eviction_policy: Optional[str] = None,
initial_snapshot_id: Optional[str] = None,
inmemorydb_replicaset_id: Optional[str] = None,
location: Optional[str] = None,
maintenance_window: Optional[InmemorydbReplicasetMaintenanceWindowArgs] = None,
persistence_mode: Optional[str] = None,
replicas: Optional[float] = None,
resources: Optional[InmemorydbReplicasetResourcesArgs] = None,
timeouts: Optional[InmemorydbReplicasetTimeoutsArgs] = None,
version: Optional[str] = None) -> InmemorydbReplicaset
func GetInmemorydbReplicaset(ctx *Context, name string, id IDInput, state *InmemorydbReplicasetState, opts ...ResourceOption) (*InmemorydbReplicaset, error)
public static InmemorydbReplicaset Get(string name, Input<string> id, InmemorydbReplicasetState? state, CustomResourceOptions? opts = null)
public static InmemorydbReplicaset get(String name, Output<String> id, InmemorydbReplicasetState state, CustomResourceOptions options)
resources: _: type: ionoscloud:InmemorydbReplicaset 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.
- Connections
Inmemorydb
Replicaset Connections - The network connection for your replica set. Only one connection is allowed.
- Credentials
Inmemorydb
Replicaset Credentials - Credentials for the InMemoryDB replicaset.
- Display
Name string - The human readable name of your replica set.
- Dns
Name string - The DNS name pointing to your replica set. Will be used to connect to the active/standalone instance.
- Eviction
Policy string - The eviction policy for the replica set.
- Initial
Snapshot stringId - The ID of a snapshot to restore the replica set from. If set, the replica set will be created from the snapshot.
- Inmemorydb
Replicaset stringId - Location string
- The replica set location
- Maintenance
Window InmemorydbReplicaset Maintenance Window - A weekly 4 hour-long window, during which maintenance might occur.
- Persistence
Mode string - Specifies How and If data is persisted.
- Replicas double
- The total number of replicas in the replica set (one active and n-1 passive). In case of a standalone instance, the value is 1. In all other cases, the value is > 1. The replicas will not be available as read replicas, they are only standby for a failure of the active instance.
- Resources
Inmemorydb
Replicaset Resources - The resources of the individual replicas.
- Timeouts
Inmemorydb
Replicaset Timeouts - Version string
- The InMemoryDB version of your replica set.
- Connections
Inmemorydb
Replicaset Connections Args - The network connection for your replica set. Only one connection is allowed.
- Credentials
Inmemorydb
Replicaset Credentials Args - Credentials for the InMemoryDB replicaset.
- Display
Name string - The human readable name of your replica set.
- Dns
Name string - The DNS name pointing to your replica set. Will be used to connect to the active/standalone instance.
- Eviction
Policy string - The eviction policy for the replica set.
- Initial
Snapshot stringId - The ID of a snapshot to restore the replica set from. If set, the replica set will be created from the snapshot.
- Inmemorydb
Replicaset stringId - Location string
- The replica set location
- Maintenance
Window InmemorydbReplicaset Maintenance Window Args - A weekly 4 hour-long window, during which maintenance might occur.
- Persistence
Mode string - Specifies How and If data is persisted.
- Replicas float64
- The total number of replicas in the replica set (one active and n-1 passive). In case of a standalone instance, the value is 1. In all other cases, the value is > 1. The replicas will not be available as read replicas, they are only standby for a failure of the active instance.
- Resources
Inmemorydb
Replicaset Resources Args - The resources of the individual replicas.
- Timeouts
Inmemorydb
Replicaset Timeouts Args - Version string
- The InMemoryDB version of your replica set.
- connections
Inmemorydb
Replicaset Connections - The network connection for your replica set. Only one connection is allowed.
- credentials
Inmemorydb
Replicaset Credentials - Credentials for the InMemoryDB replicaset.
- display
Name String - The human readable name of your replica set.
- dns
Name String - The DNS name pointing to your replica set. Will be used to connect to the active/standalone instance.
- eviction
Policy String - The eviction policy for the replica set.
- initial
Snapshot StringId - The ID of a snapshot to restore the replica set from. If set, the replica set will be created from the snapshot.
- inmemorydb
Replicaset StringId - location String
- The replica set location
- maintenance
Window InmemorydbReplicaset Maintenance Window - A weekly 4 hour-long window, during which maintenance might occur.
- persistence
Mode String - Specifies How and If data is persisted.
- replicas Double
- The total number of replicas in the replica set (one active and n-1 passive). In case of a standalone instance, the value is 1. In all other cases, the value is > 1. The replicas will not be available as read replicas, they are only standby for a failure of the active instance.
- resources
Inmemorydb
Replicaset Resources - The resources of the individual replicas.
- timeouts
Inmemorydb
Replicaset Timeouts - version String
- The InMemoryDB version of your replica set.
- connections
Inmemorydb
Replicaset Connections - The network connection for your replica set. Only one connection is allowed.
- credentials
Inmemorydb
Replicaset Credentials - Credentials for the InMemoryDB replicaset.
- display
Name string - The human readable name of your replica set.
- dns
Name string - The DNS name pointing to your replica set. Will be used to connect to the active/standalone instance.
- eviction
Policy string - The eviction policy for the replica set.
- initial
Snapshot stringId - The ID of a snapshot to restore the replica set from. If set, the replica set will be created from the snapshot.
- inmemorydb
Replicaset stringId - location string
- The replica set location
- maintenance
Window InmemorydbReplicaset Maintenance Window - A weekly 4 hour-long window, during which maintenance might occur.
- persistence
Mode string - Specifies How and If data is persisted.
- replicas number
- The total number of replicas in the replica set (one active and n-1 passive). In case of a standalone instance, the value is 1. In all other cases, the value is > 1. The replicas will not be available as read replicas, they are only standby for a failure of the active instance.
- resources
Inmemorydb
Replicaset Resources - The resources of the individual replicas.
- timeouts
Inmemorydb
Replicaset Timeouts - version string
- The InMemoryDB version of your replica set.
- connections
Inmemorydb
Replicaset Connections Args - The network connection for your replica set. Only one connection is allowed.
- credentials
Inmemorydb
Replicaset Credentials Args - Credentials for the InMemoryDB replicaset.
- display_
name str - The human readable name of your replica set.
- dns_
name str - The DNS name pointing to your replica set. Will be used to connect to the active/standalone instance.
- eviction_
policy str - The eviction policy for the replica set.
- initial_
snapshot_ strid - The ID of a snapshot to restore the replica set from. If set, the replica set will be created from the snapshot.
- inmemorydb_
replicaset_ strid - location str
- The replica set location
- maintenance_
window InmemorydbReplicaset Maintenance Window Args - A weekly 4 hour-long window, during which maintenance might occur.
- persistence_
mode str - Specifies How and If data is persisted.
- replicas float
- The total number of replicas in the replica set (one active and n-1 passive). In case of a standalone instance, the value is 1. In all other cases, the value is > 1. The replicas will not be available as read replicas, they are only standby for a failure of the active instance.
- resources
Inmemorydb
Replicaset Resources Args - The resources of the individual replicas.
- timeouts
Inmemorydb
Replicaset Timeouts Args - version str
- The InMemoryDB version of your replica set.
- connections Property Map
- The network connection for your replica set. Only one connection is allowed.
- credentials Property Map
- Credentials for the InMemoryDB replicaset.
- display
Name String - The human readable name of your replica set.
- dns
Name String - The DNS name pointing to your replica set. Will be used to connect to the active/standalone instance.
- eviction
Policy String - The eviction policy for the replica set.
- initial
Snapshot StringId - The ID of a snapshot to restore the replica set from. If set, the replica set will be created from the snapshot.
- inmemorydb
Replicaset StringId - location String
- The replica set location
- maintenance
Window Property Map - A weekly 4 hour-long window, during which maintenance might occur.
- persistence
Mode String - Specifies How and If data is persisted.
- replicas Number
- The total number of replicas in the replica set (one active and n-1 passive). In case of a standalone instance, the value is 1. In all other cases, the value is > 1. The replicas will not be available as read replicas, they are only standby for a failure of the active instance.
- resources Property Map
- The resources of the individual replicas.
- timeouts Property Map
- version String
- The InMemoryDB version of your replica set.
Supporting Types
InmemorydbReplicasetConnections, InmemorydbReplicasetConnectionsArgs
- Cidr string
- The IP and subnet for your instance. Note the following unavailable IP ranges: 10.233.64.0/18, 10.233.0.0/18, 10.233.114.0/24
- Datacenter
Id string - The datacenter to connect your instance to.
- Lan
Id string - The numeric LAN ID to connect your instance to.
- Cidr string
- The IP and subnet for your instance. Note the following unavailable IP ranges: 10.233.64.0/18, 10.233.0.0/18, 10.233.114.0/24
- Datacenter
Id string - The datacenter to connect your instance to.
- Lan
Id string - The numeric LAN ID to connect your instance to.
- cidr String
- The IP and subnet for your instance. Note the following unavailable IP ranges: 10.233.64.0/18, 10.233.0.0/18, 10.233.114.0/24
- datacenter
Id String - The datacenter to connect your instance to.
- lan
Id String - The numeric LAN ID to connect your instance to.
- cidr string
- The IP and subnet for your instance. Note the following unavailable IP ranges: 10.233.64.0/18, 10.233.0.0/18, 10.233.114.0/24
- datacenter
Id string - The datacenter to connect your instance to.
- lan
Id string - The numeric LAN ID to connect your instance to.
- cidr str
- The IP and subnet for your instance. Note the following unavailable IP ranges: 10.233.64.0/18, 10.233.0.0/18, 10.233.114.0/24
- datacenter_
id str - The datacenter to connect your instance to.
- lan_
id str - The numeric LAN ID to connect your instance to.
- cidr String
- The IP and subnet for your instance. Note the following unavailable IP ranges: 10.233.64.0/18, 10.233.0.0/18, 10.233.114.0/24
- datacenter
Id String - The datacenter to connect your instance to.
- lan
Id String - The numeric LAN ID to connect your instance to.
InmemorydbReplicasetCredentials, InmemorydbReplicasetCredentialsArgs
- Username string
- The username for the initial InMemoryDB user. Some system usernames are restricted (e.g. 'admin', 'standby').
- Hashed
Password InmemorydbReplicaset Credentials Hashed Password - The hashed password for a InMemoryDB user.
- Plain
Text stringPassword - The password for a InMemoryDB user.
- Username string
- The username for the initial InMemoryDB user. Some system usernames are restricted (e.g. 'admin', 'standby').
- Hashed
Password InmemorydbReplicaset Credentials Hashed Password - The hashed password for a InMemoryDB user.
- Plain
Text stringPassword - The password for a InMemoryDB user.
- username String
- The username for the initial InMemoryDB user. Some system usernames are restricted (e.g. 'admin', 'standby').
- hashed
Password InmemorydbReplicaset Credentials Hashed Password - The hashed password for a InMemoryDB user.
- plain
Text StringPassword - The password for a InMemoryDB user.
- username string
- The username for the initial InMemoryDB user. Some system usernames are restricted (e.g. 'admin', 'standby').
- hashed
Password InmemorydbReplicaset Credentials Hashed Password - The hashed password for a InMemoryDB user.
- plain
Text stringPassword - The password for a InMemoryDB user.
- username str
- The username for the initial InMemoryDB user. Some system usernames are restricted (e.g. 'admin', 'standby').
- hashed_
password InmemorydbReplicaset Credentials Hashed Password - The hashed password for a InMemoryDB user.
- plain_
text_ strpassword - The password for a InMemoryDB user.
- username String
- The username for the initial InMemoryDB user. Some system usernames are restricted (e.g. 'admin', 'standby').
- hashed
Password Property Map - The hashed password for a InMemoryDB user.
- plain
Text StringPassword - The password for a InMemoryDB user.
InmemorydbReplicasetCredentialsHashedPassword, InmemorydbReplicasetCredentialsHashedPasswordArgs
InmemorydbReplicasetMaintenanceWindow, InmemorydbReplicasetMaintenanceWindowArgs
- Day
Of stringThe Week - The name of the week day.
- Time string
- Start of the maintenance window in UTC time.
- Day
Of stringThe Week - The name of the week day.
- Time string
- Start of the maintenance window in UTC time.
- day
Of StringThe Week - The name of the week day.
- time String
- Start of the maintenance window in UTC time.
- day
Of stringThe Week - The name of the week day.
- time string
- Start of the maintenance window in UTC time.
- day_
of_ strthe_ week - The name of the week day.
- time str
- Start of the maintenance window in UTC time.
- day
Of StringThe Week - The name of the week day.
- time String
- Start of the maintenance window in UTC time.
InmemorydbReplicasetResources, InmemorydbReplicasetResourcesArgs
InmemorydbReplicasetTimeouts, InmemorydbReplicasetTimeoutsArgs
Package Details
- Repository
- ionoscloud ionos-cloud/terraform-provider-ionoscloud
- License
- Notes
- This Pulumi package is based on the
ionoscloud
Terraform Provider.