opentelekomcloud.DdsBackupV3
Explore with Pulumi AI
Up-to-date reference of API arguments for DDS instance you can get at documentation portal
Manages a DDS backup resource within OpenTelekomCloud.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as opentelekomcloud from "@pulumi/opentelekomcloud";
const config = new pulumi.Config();
const instanceId = config.requireObject("instanceId");
const name = config.requireObject("name");
const backup = new opentelekomcloud.DdsBackupV3("backup", {instanceId: instanceId});
import pulumi
import pulumi_opentelekomcloud as opentelekomcloud
config = pulumi.Config()
instance_id = config.require_object("instanceId")
name = config.require_object("name")
backup = opentelekomcloud.DdsBackupV3("backup", instance_id=instance_id)
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/opentelekomcloud/opentelekomcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
instanceId := cfg.RequireObject("instanceId")
name := cfg.RequireObject("name")
_, err := opentelekomcloud.NewDdsBackupV3(ctx, "backup", &opentelekomcloud.DdsBackupV3Args{
InstanceId: pulumi.Any(instanceId),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Opentelekomcloud = Pulumi.Opentelekomcloud;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var instanceId = config.RequireObject<dynamic>("instanceId");
var name = config.RequireObject<dynamic>("name");
var backup = new Opentelekomcloud.DdsBackupV3("backup", new()
{
InstanceId = instanceId,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.opentelekomcloud.DdsBackupV3;
import com.pulumi.opentelekomcloud.DdsBackupV3Args;
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) {
final var config = ctx.config();
final var instanceId = config.get("instanceId");
final var name = config.get("name");
var backup = new DdsBackupV3("backup", DdsBackupV3Args.builder()
.instanceId(instanceId)
.build());
}
}
configuration:
instanceId:
type: dynamic
name:
type: dynamic
resources:
backup:
type: opentelekomcloud:DdsBackupV3
properties:
instanceId: ${instanceId}
Create DdsBackupV3 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DdsBackupV3(name: string, args: DdsBackupV3Args, opts?: CustomResourceOptions);
@overload
def DdsBackupV3(resource_name: str,
args: DdsBackupV3Args,
opts: Optional[ResourceOptions] = None)
@overload
def DdsBackupV3(resource_name: str,
opts: Optional[ResourceOptions] = None,
instance_id: Optional[str] = None,
dds_backup_v3_id: Optional[str] = None,
description: Optional[str] = None,
name: Optional[str] = None,
timeouts: Optional[DdsBackupV3TimeoutsArgs] = None)
func NewDdsBackupV3(ctx *Context, name string, args DdsBackupV3Args, opts ...ResourceOption) (*DdsBackupV3, error)
public DdsBackupV3(string name, DdsBackupV3Args args, CustomResourceOptions? opts = null)
public DdsBackupV3(String name, DdsBackupV3Args args)
public DdsBackupV3(String name, DdsBackupV3Args args, CustomResourceOptions options)
type: opentelekomcloud:DdsBackupV3
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 DdsBackupV3Args
- 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 DdsBackupV3Args
- 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 DdsBackupV3Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DdsBackupV3Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DdsBackupV3Args
- 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 ddsBackupV3Resource = new Opentelekomcloud.DdsBackupV3("ddsBackupV3Resource", new()
{
InstanceId = "string",
DdsBackupV3Id = "string",
Description = "string",
Name = "string",
Timeouts = new Opentelekomcloud.Inputs.DdsBackupV3TimeoutsArgs
{
Create = "string",
Delete = "string",
},
});
example, err := opentelekomcloud.NewDdsBackupV3(ctx, "ddsBackupV3Resource", &opentelekomcloud.DdsBackupV3Args{
InstanceId: pulumi.String("string"),
DdsBackupV3Id: pulumi.String("string"),
Description: pulumi.String("string"),
Name: pulumi.String("string"),
Timeouts: &opentelekomcloud.DdsBackupV3TimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
},
})
var ddsBackupV3Resource = new DdsBackupV3("ddsBackupV3Resource", DdsBackupV3Args.builder()
.instanceId("string")
.ddsBackupV3Id("string")
.description("string")
.name("string")
.timeouts(DdsBackupV3TimeoutsArgs.builder()
.create("string")
.delete("string")
.build())
.build());
dds_backup_v3_resource = opentelekomcloud.DdsBackupV3("ddsBackupV3Resource",
instance_id="string",
dds_backup_v3_id="string",
description="string",
name="string",
timeouts={
"create": "string",
"delete": "string",
})
const ddsBackupV3Resource = new opentelekomcloud.DdsBackupV3("ddsBackupV3Resource", {
instanceId: "string",
ddsBackupV3Id: "string",
description: "string",
name: "string",
timeouts: {
create: "string",
"delete": "string",
},
});
type: opentelekomcloud:DdsBackupV3
properties:
ddsBackupV3Id: string
description: string
instanceId: string
name: string
timeouts:
create: string
delete: string
DdsBackupV3 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 DdsBackupV3 resource accepts the following input properties:
- Instance
Id string - Specifies the ID of a DDS instance.
- Dds
Backup stringV3Id - The resource ID.
- Description string
- Specifies the manual backup description.
- Name string
- Specifies the manual backup name.
The value must be
4
to64
characters in length and start with a letter (from A to Z or from a to z). It is case-sensitive and can contain only letters, digits (from 0 to 9), hyphens (-), and underscores (_). - Timeouts
Dds
Backup V3Timeouts
- Instance
Id string - Specifies the ID of a DDS instance.
- Dds
Backup stringV3Id - The resource ID.
- Description string
- Specifies the manual backup description.
- Name string
- Specifies the manual backup name.
The value must be
4
to64
characters in length and start with a letter (from A to Z or from a to z). It is case-sensitive and can contain only letters, digits (from 0 to 9), hyphens (-), and underscores (_). - Timeouts
Dds
Backup V3Timeouts Args
- instance
Id String - Specifies the ID of a DDS instance.
- dds
Backup StringV3Id - The resource ID.
- description String
- Specifies the manual backup description.
- name String
- Specifies the manual backup name.
The value must be
4
to64
characters in length and start with a letter (from A to Z or from a to z). It is case-sensitive and can contain only letters, digits (from 0 to 9), hyphens (-), and underscores (_). - timeouts
Dds
Backup V3Timeouts
- instance
Id string - Specifies the ID of a DDS instance.
- dds
Backup stringV3Id - The resource ID.
- description string
- Specifies the manual backup description.
- name string
- Specifies the manual backup name.
The value must be
4
to64
characters in length and start with a letter (from A to Z or from a to z). It is case-sensitive and can contain only letters, digits (from 0 to 9), hyphens (-), and underscores (_). - timeouts
Dds
Backup V3Timeouts
- instance_
id str - Specifies the ID of a DDS instance.
- dds_
backup_ strv3_ id - The resource ID.
- description str
- Specifies the manual backup description.
- name str
- Specifies the manual backup name.
The value must be
4
to64
characters in length and start with a letter (from A to Z or from a to z). It is case-sensitive and can contain only letters, digits (from 0 to 9), hyphens (-), and underscores (_). - timeouts
Dds
Backup V3Timeouts Args
- instance
Id String - Specifies the ID of a DDS instance.
- dds
Backup StringV3Id - The resource ID.
- description String
- Specifies the manual backup description.
- name String
- Specifies the manual backup name.
The value must be
4
to64
characters in length and start with a letter (from A to Z or from a to z). It is case-sensitive and can contain only letters, digits (from 0 to 9), hyphens (-), and underscores (_). - timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the DdsBackupV3 resource produces the following output properties:
- Begin
Time string - Indicates the start time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- Datastores
List<Dds
Backup V3Datastore> - Indicates the database version. The datastore structure is documented below.
- End
Time string - Indicates the end time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- Id string
- The provider-assigned unique ID for this managed resource.
- Instance
Name string - Indicates the name of a DDS instance.
- Region string
- Indicates the region in which resource was created.
- Size double
- Indicates the backup size in KB.
- Status string
- Indicates the backup status. Valid value:
BUILDING
: Backup in progressCOMPLETED
: Backup completedFAILED
: Backup failedDISABLED
: Backup being deleted
- Type string
- Indicates the DB engine.
- Begin
Time string - Indicates the start time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- Datastores
[]Dds
Backup V3Datastore - Indicates the database version. The datastore structure is documented below.
- End
Time string - Indicates the end time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- Id string
- The provider-assigned unique ID for this managed resource.
- Instance
Name string - Indicates the name of a DDS instance.
- Region string
- Indicates the region in which resource was created.
- Size float64
- Indicates the backup size in KB.
- Status string
- Indicates the backup status. Valid value:
BUILDING
: Backup in progressCOMPLETED
: Backup completedFAILED
: Backup failedDISABLED
: Backup being deleted
- Type string
- Indicates the DB engine.
- begin
Time String - Indicates the start time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- datastores
List<Dds
Backup V3Datastore> - Indicates the database version. The datastore structure is documented below.
- end
Time String - Indicates the end time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- id String
- The provider-assigned unique ID for this managed resource.
- instance
Name String - Indicates the name of a DDS instance.
- region String
- Indicates the region in which resource was created.
- size Double
- Indicates the backup size in KB.
- status String
- Indicates the backup status. Valid value:
BUILDING
: Backup in progressCOMPLETED
: Backup completedFAILED
: Backup failedDISABLED
: Backup being deleted
- type String
- Indicates the DB engine.
- begin
Time string - Indicates the start time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- datastores
Dds
Backup V3Datastore[] - Indicates the database version. The datastore structure is documented below.
- end
Time string - Indicates the end time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- id string
- The provider-assigned unique ID for this managed resource.
- instance
Name string - Indicates the name of a DDS instance.
- region string
- Indicates the region in which resource was created.
- size number
- Indicates the backup size in KB.
- status string
- Indicates the backup status. Valid value:
BUILDING
: Backup in progressCOMPLETED
: Backup completedFAILED
: Backup failedDISABLED
: Backup being deleted
- type string
- Indicates the DB engine.
- begin_
time str - Indicates the start time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- datastores
Sequence[Dds
Backup V3Datastore] - Indicates the database version. The datastore structure is documented below.
- end_
time str - Indicates the end time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- id str
- The provider-assigned unique ID for this managed resource.
- instance_
name str - Indicates the name of a DDS instance.
- region str
- Indicates the region in which resource was created.
- size float
- Indicates the backup size in KB.
- status str
- Indicates the backup status. Valid value:
BUILDING
: Backup in progressCOMPLETED
: Backup completedFAILED
: Backup failedDISABLED
: Backup being deleted
- type str
- Indicates the DB engine.
- begin
Time String - Indicates the start time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- datastores List<Property Map>
- Indicates the database version. The datastore structure is documented below.
- end
Time String - Indicates the end time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- id String
- The provider-assigned unique ID for this managed resource.
- instance
Name String - Indicates the name of a DDS instance.
- region String
- Indicates the region in which resource was created.
- size Number
- Indicates the backup size in KB.
- status String
- Indicates the backup status. Valid value:
BUILDING
: Backup in progressCOMPLETED
: Backup completedFAILED
: Backup failedDISABLED
: Backup being deleted
- type String
- Indicates the DB engine.
Look up Existing DdsBackupV3 Resource
Get an existing DdsBackupV3 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?: DdsBackupV3State, opts?: CustomResourceOptions): DdsBackupV3
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
begin_time: Optional[str] = None,
datastores: Optional[Sequence[DdsBackupV3DatastoreArgs]] = None,
dds_backup_v3_id: Optional[str] = None,
description: Optional[str] = None,
end_time: Optional[str] = None,
instance_id: Optional[str] = None,
instance_name: Optional[str] = None,
name: Optional[str] = None,
region: Optional[str] = None,
size: Optional[float] = None,
status: Optional[str] = None,
timeouts: Optional[DdsBackupV3TimeoutsArgs] = None,
type: Optional[str] = None) -> DdsBackupV3
func GetDdsBackupV3(ctx *Context, name string, id IDInput, state *DdsBackupV3State, opts ...ResourceOption) (*DdsBackupV3, error)
public static DdsBackupV3 Get(string name, Input<string> id, DdsBackupV3State? state, CustomResourceOptions? opts = null)
public static DdsBackupV3 get(String name, Output<String> id, DdsBackupV3State state, CustomResourceOptions options)
resources: _: type: opentelekomcloud:DdsBackupV3 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.
- Begin
Time string - Indicates the start time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- Datastores
List<Dds
Backup V3Datastore> - Indicates the database version. The datastore structure is documented below.
- Dds
Backup stringV3Id - The resource ID.
- Description string
- Specifies the manual backup description.
- End
Time string - Indicates the end time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- Instance
Id string - Specifies the ID of a DDS instance.
- Instance
Name string - Indicates the name of a DDS instance.
- Name string
- Specifies the manual backup name.
The value must be
4
to64
characters in length and start with a letter (from A to Z or from a to z). It is case-sensitive and can contain only letters, digits (from 0 to 9), hyphens (-), and underscores (_). - Region string
- Indicates the region in which resource was created.
- Size double
- Indicates the backup size in KB.
- Status string
- Indicates the backup status. Valid value:
BUILDING
: Backup in progressCOMPLETED
: Backup completedFAILED
: Backup failedDISABLED
: Backup being deleted
- Timeouts
Dds
Backup V3Timeouts - Type string
- Indicates the DB engine.
- Begin
Time string - Indicates the start time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- Datastores
[]Dds
Backup V3Datastore Args - Indicates the database version. The datastore structure is documented below.
- Dds
Backup stringV3Id - The resource ID.
- Description string
- Specifies the manual backup description.
- End
Time string - Indicates the end time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- Instance
Id string - Specifies the ID of a DDS instance.
- Instance
Name string - Indicates the name of a DDS instance.
- Name string
- Specifies the manual backup name.
The value must be
4
to64
characters in length and start with a letter (from A to Z or from a to z). It is case-sensitive and can contain only letters, digits (from 0 to 9), hyphens (-), and underscores (_). - Region string
- Indicates the region in which resource was created.
- Size float64
- Indicates the backup size in KB.
- Status string
- Indicates the backup status. Valid value:
BUILDING
: Backup in progressCOMPLETED
: Backup completedFAILED
: Backup failedDISABLED
: Backup being deleted
- Timeouts
Dds
Backup V3Timeouts Args - Type string
- Indicates the DB engine.
- begin
Time String - Indicates the start time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- datastores
List<Dds
Backup V3Datastore> - Indicates the database version. The datastore structure is documented below.
- dds
Backup StringV3Id - The resource ID.
- description String
- Specifies the manual backup description.
- end
Time String - Indicates the end time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- instance
Id String - Specifies the ID of a DDS instance.
- instance
Name String - Indicates the name of a DDS instance.
- name String
- Specifies the manual backup name.
The value must be
4
to64
characters in length and start with a letter (from A to Z or from a to z). It is case-sensitive and can contain only letters, digits (from 0 to 9), hyphens (-), and underscores (_). - region String
- Indicates the region in which resource was created.
- size Double
- Indicates the backup size in KB.
- status String
- Indicates the backup status. Valid value:
BUILDING
: Backup in progressCOMPLETED
: Backup completedFAILED
: Backup failedDISABLED
: Backup being deleted
- timeouts
Dds
Backup V3Timeouts - type String
- Indicates the DB engine.
- begin
Time string - Indicates the start time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- datastores
Dds
Backup V3Datastore[] - Indicates the database version. The datastore structure is documented below.
- dds
Backup stringV3Id - The resource ID.
- description string
- Specifies the manual backup description.
- end
Time string - Indicates the end time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- instance
Id string - Specifies the ID of a DDS instance.
- instance
Name string - Indicates the name of a DDS instance.
- name string
- Specifies the manual backup name.
The value must be
4
to64
characters in length and start with a letter (from A to Z or from a to z). It is case-sensitive and can contain only letters, digits (from 0 to 9), hyphens (-), and underscores (_). - region string
- Indicates the region in which resource was created.
- size number
- Indicates the backup size in KB.
- status string
- Indicates the backup status. Valid value:
BUILDING
: Backup in progressCOMPLETED
: Backup completedFAILED
: Backup failedDISABLED
: Backup being deleted
- timeouts
Dds
Backup V3Timeouts - type string
- Indicates the DB engine.
- begin_
time str - Indicates the start time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- datastores
Sequence[Dds
Backup V3Datastore Args] - Indicates the database version. The datastore structure is documented below.
- dds_
backup_ strv3_ id - The resource ID.
- description str
- Specifies the manual backup description.
- end_
time str - Indicates the end time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- instance_
id str - Specifies the ID of a DDS instance.
- instance_
name str - Indicates the name of a DDS instance.
- name str
- Specifies the manual backup name.
The value must be
4
to64
characters in length and start with a letter (from A to Z or from a to z). It is case-sensitive and can contain only letters, digits (from 0 to 9), hyphens (-), and underscores (_). - region str
- Indicates the region in which resource was created.
- size float
- Indicates the backup size in KB.
- status str
- Indicates the backup status. Valid value:
BUILDING
: Backup in progressCOMPLETED
: Backup completedFAILED
: Backup failedDISABLED
: Backup being deleted
- timeouts
Dds
Backup V3Timeouts Args - type str
- Indicates the DB engine.
- begin
Time String - Indicates the start time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- datastores List<Property Map>
- Indicates the database version. The datastore structure is documented below.
- dds
Backup StringV3Id - The resource ID.
- description String
- Specifies the manual backup description.
- end
Time String - Indicates the end time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- instance
Id String - Specifies the ID of a DDS instance.
- instance
Name String - Indicates the name of a DDS instance.
- name String
- Specifies the manual backup name.
The value must be
4
to64
characters in length and start with a letter (from A to Z or from a to z). It is case-sensitive and can contain only letters, digits (from 0 to 9), hyphens (-), and underscores (_). - region String
- Indicates the region in which resource was created.
- size Number
- Indicates the backup size in KB.
- status String
- Indicates the backup status. Valid value:
BUILDING
: Backup in progressCOMPLETED
: Backup completedFAILED
: Backup failedDISABLED
: Backup being deleted
- timeouts Property Map
- type String
- Indicates the DB engine.
Supporting Types
DdsBackupV3Datastore, DdsBackupV3DatastoreArgs
- Storage
Engine string - Indicates the database storage engine.
- Type string
- Indicates the DB engine.
- Version string
- Indicates the database version.
- Storage
Engine string - Indicates the database storage engine.
- Type string
- Indicates the DB engine.
- Version string
- Indicates the database version.
- storage
Engine String - Indicates the database storage engine.
- type String
- Indicates the DB engine.
- version String
- Indicates the database version.
- storage
Engine string - Indicates the database storage engine.
- type string
- Indicates the DB engine.
- version string
- Indicates the database version.
- storage_
engine str - Indicates the database storage engine.
- type str
- Indicates the DB engine.
- version str
- Indicates the database version.
- storage
Engine String - Indicates the database storage engine.
- type String
- Indicates the DB engine.
- version String
- Indicates the database version.
DdsBackupV3Timeouts, DdsBackupV3TimeoutsArgs
Import
The DDS backup can be imported using the instance_id
and the id
separated by a slash, e.g.:
bash
$ pulumi import opentelekomcloud:index/ddsBackupV3:DdsBackupV3 backup <instance_id>/<id>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- opentelekomcloud opentelekomcloud/terraform-provider-opentelekomcloud
- License
- Notes
- This Pulumi package is based on the
opentelekomcloud
Terraform Provider.