oci.GoldenGate.DeploymentBackup
Explore with Pulumi AI
This resource provides the Deployment Backup resource in Oracle Cloud Infrastructure Golden Gate service.
Creates a new DeploymentBackup.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testDeploymentBackup = new Oci.GoldenGate.DeploymentBackup("testDeploymentBackup", new()
{
Bucket = @var.Deployment_backup_bucket,
CompartmentId = @var.Compartment_id,
DeploymentId = oci_golden_gate_deployment.Test_deployment.Id,
DisplayName = @var.Deployment_backup_display_name,
Namespace = @var.Deployment_backup_namespace,
Object = @var.Deployment_backup_object,
DefinedTags =
{
{ "foo-namespace.bar-key", "value" },
},
FreeformTags =
{
{ "bar-key", "value" },
},
});
});
package main
import (
"github.com/pulumi/pulumi-oci/sdk/go/oci/GoldenGate"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := GoldenGate.NewDeploymentBackup(ctx, "testDeploymentBackup", &GoldenGate.DeploymentBackupArgs{
Bucket: pulumi.Any(_var.Deployment_backup_bucket),
CompartmentId: pulumi.Any(_var.Compartment_id),
DeploymentId: pulumi.Any(oci_golden_gate_deployment.Test_deployment.Id),
DisplayName: pulumi.Any(_var.Deployment_backup_display_name),
Namespace: pulumi.Any(_var.Deployment_backup_namespace),
Object: pulumi.Any(_var.Deployment_backup_object),
DefinedTags: pulumi.Map{
"foo-namespace.bar-key": pulumi.Any("value"),
},
FreeformTags: pulumi.Map{
"bar-key": pulumi.Any("value"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.GoldenGate.DeploymentBackup;
import com.pulumi.oci.GoldenGate.DeploymentBackupArgs;
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 testDeploymentBackup = new DeploymentBackup("testDeploymentBackup", DeploymentBackupArgs.builder()
.bucket(var_.deployment_backup_bucket())
.compartmentId(var_.compartment_id())
.deploymentId(oci_golden_gate_deployment.test_deployment().id())
.displayName(var_.deployment_backup_display_name())
.namespace(var_.deployment_backup_namespace())
.object(var_.deployment_backup_object())
.definedTags(Map.of("foo-namespace.bar-key", "value"))
.freeformTags(Map.of("bar-key", "value"))
.build());
}
}
import pulumi
import pulumi_oci as oci
test_deployment_backup = oci.golden_gate.DeploymentBackup("testDeploymentBackup",
bucket=var["deployment_backup_bucket"],
compartment_id=var["compartment_id"],
deployment_id=oci_golden_gate_deployment["test_deployment"]["id"],
display_name=var["deployment_backup_display_name"],
namespace=var["deployment_backup_namespace"],
object=var["deployment_backup_object"],
defined_tags={
"foo-namespace.bar-key": "value",
},
freeform_tags={
"bar-key": "value",
})
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testDeploymentBackup = new oci.goldengate.DeploymentBackup("testDeploymentBackup", {
bucket: _var.deployment_backup_bucket,
compartmentId: _var.compartment_id,
deploymentId: oci_golden_gate_deployment.test_deployment.id,
displayName: _var.deployment_backup_display_name,
namespace: _var.deployment_backup_namespace,
object: _var.deployment_backup_object,
definedTags: {
"foo-namespace.bar-key": "value",
},
freeformTags: {
"bar-key": "value",
},
});
resources:
testDeploymentBackup:
type: oci:GoldenGate:DeploymentBackup
properties:
#Required
bucket: ${var.deployment_backup_bucket}
compartmentId: ${var.compartment_id}
deploymentId: ${oci_golden_gate_deployment.test_deployment.id}
displayName: ${var.deployment_backup_display_name}
namespace: ${var.deployment_backup_namespace}
object: ${var.deployment_backup_object}
#Optional
definedTags:
foo-namespace.bar-key: value
freeformTags:
bar-key: value
Create DeploymentBackup Resource
new DeploymentBackup(name: string, args: DeploymentBackupArgs, opts?: CustomResourceOptions);
@overload
def DeploymentBackup(resource_name: str,
opts: Optional[ResourceOptions] = None,
bucket: Optional[str] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
deployment_id: Optional[str] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
namespace: Optional[str] = None,
object: Optional[str] = None)
@overload
def DeploymentBackup(resource_name: str,
args: DeploymentBackupArgs,
opts: Optional[ResourceOptions] = None)
func NewDeploymentBackup(ctx *Context, name string, args DeploymentBackupArgs, opts ...ResourceOption) (*DeploymentBackup, error)
public DeploymentBackup(string name, DeploymentBackupArgs args, CustomResourceOptions? opts = null)
public DeploymentBackup(String name, DeploymentBackupArgs args)
public DeploymentBackup(String name, DeploymentBackupArgs args, CustomResourceOptions options)
type: oci:GoldenGate:DeploymentBackup
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DeploymentBackupArgs
- 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 DeploymentBackupArgs
- 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 DeploymentBackupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DeploymentBackupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DeploymentBackupArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
DeploymentBackup Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The DeploymentBackup resource accepts the following input properties:
- Bucket string
Name of the bucket where the object is to be uploaded in the object storage
- Compartment
Id string (Updatable) The OCID of the compartment being referenced.
- Deployment
Id string The OCID of the deployment being referenced.
- Display
Name string An object's Display Name.
- Namespace string
Name of namespace that serves as a container for all of your buckets
- Object string
Name of the object to be uploaded to object storage
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Dictionary<string, object>
(Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Dictionary<string, object>
(Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Bucket string
Name of the bucket where the object is to be uploaded in the object storage
- Compartment
Id string (Updatable) The OCID of the compartment being referenced.
- Deployment
Id string The OCID of the deployment being referenced.
- Display
Name string An object's Display Name.
- Namespace string
Name of namespace that serves as a container for all of your buckets
- Object string
Name of the object to be uploaded to object storage
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- map[string]interface{}
(Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- map[string]interface{}
(Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- bucket String
Name of the bucket where the object is to be uploaded in the object storage
- compartment
Id String (Updatable) The OCID of the compartment being referenced.
- deployment
Id String The OCID of the deployment being referenced.
- display
Name String An object's Display Name.
- namespace String
Name of namespace that serves as a container for all of your buckets
- object String
Name of the object to be uploaded to object storage
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Map<String,Object>
(Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Map<String,Object>
(Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- bucket string
Name of the bucket where the object is to be uploaded in the object storage
- compartment
Id string (Updatable) The OCID of the compartment being referenced.
- deployment
Id string The OCID of the deployment being referenced.
- display
Name string An object's Display Name.
- namespace string
Name of namespace that serves as a container for all of your buckets
- object string
Name of the object to be uploaded to object storage
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- {[key: string]: any}
(Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- {[key: string]: any}
(Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- bucket str
Name of the bucket where the object is to be uploaded in the object storage
- compartment_
id str (Updatable) The OCID of the compartment being referenced.
- deployment_
id str The OCID of the deployment being referenced.
- display_
name str An object's Display Name.
- namespace str
Name of namespace that serves as a container for all of your buckets
- object str
Name of the object to be uploaded to object storage
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Mapping[str, Any]
(Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Mapping[str, Any]
(Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- bucket String
Name of the bucket where the object is to be uploaded in the object storage
- compartment
Id String (Updatable) The OCID of the compartment being referenced.
- deployment
Id String The OCID of the deployment being referenced.
- display
Name String An object's Display Name.
- namespace String
Name of namespace that serves as a container for all of your buckets
- object String
Name of the object to be uploaded to object storage
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Map<Any>
(Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Map<Any>
(Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
Outputs
All input properties are implicitly available as output properties. Additionally, the DeploymentBackup resource produces the following output properties:
- Backup
Type string Possible Deployment backup types.
- Id string
The provider-assigned unique ID for this managed resource.
- Is
Automatic bool True if this object is automatically created
- Lifecycle
Details string Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
- Ogg
Version string Version of OGG
- Size
In doubleBytes The size of the backup stored in object storage (in bytes)
- State string
Possible lifecycle states.
- Dictionary<string, object>
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- Time
Backup stringFinished The time of the resource backup finish. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- Time
Created string The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- Time
Of stringBackup The time of the resource backup. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- Time
Updated string The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- Backup
Type string Possible Deployment backup types.
- Id string
The provider-assigned unique ID for this managed resource.
- Is
Automatic bool True if this object is automatically created
- Lifecycle
Details string Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
- Ogg
Version string Version of OGG
- Size
In float64Bytes The size of the backup stored in object storage (in bytes)
- State string
Possible lifecycle states.
- map[string]interface{}
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- Time
Backup stringFinished The time of the resource backup finish. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- Time
Created string The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- Time
Of stringBackup The time of the resource backup. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- Time
Updated string The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- backup
Type String Possible Deployment backup types.
- id String
The provider-assigned unique ID for this managed resource.
- is
Automatic Boolean True if this object is automatically created
- lifecycle
Details String Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
- ogg
Version String Version of OGG
- size
In DoubleBytes The size of the backup stored in object storage (in bytes)
- state String
Possible lifecycle states.
- Map<String,Object>
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- time
Backup StringFinished The time of the resource backup finish. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Created String The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Of StringBackup The time of the resource backup. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Updated String The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- backup
Type string Possible Deployment backup types.
- id string
The provider-assigned unique ID for this managed resource.
- is
Automatic boolean True if this object is automatically created
- lifecycle
Details string Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
- ogg
Version string Version of OGG
- size
In numberBytes The size of the backup stored in object storage (in bytes)
- state string
Possible lifecycle states.
- {[key: string]: any}
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- time
Backup stringFinished The time of the resource backup finish. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Created string The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Of stringBackup The time of the resource backup. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Updated string The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- backup_
type str Possible Deployment backup types.
- id str
The provider-assigned unique ID for this managed resource.
- is_
automatic bool True if this object is automatically created
- lifecycle_
details str Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
- ogg_
version str Version of OGG
- size_
in_ floatbytes The size of the backup stored in object storage (in bytes)
- state str
Possible lifecycle states.
- Mapping[str, Any]
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- time_
backup_ strfinished The time of the resource backup finish. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time_
created str The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time_
of_ strbackup The time of the resource backup. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time_
updated str The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- backup
Type String Possible Deployment backup types.
- id String
The provider-assigned unique ID for this managed resource.
- is
Automatic Boolean True if this object is automatically created
- lifecycle
Details String Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
- ogg
Version String Version of OGG
- size
In NumberBytes The size of the backup stored in object storage (in bytes)
- state String
Possible lifecycle states.
- Map<Any>
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- time
Backup StringFinished The time of the resource backup finish. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Created String The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Of StringBackup The time of the resource backup. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Updated String The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
Look up Existing DeploymentBackup Resource
Get an existing DeploymentBackup 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?: DeploymentBackupState, opts?: CustomResourceOptions): DeploymentBackup
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
backup_type: Optional[str] = None,
bucket: Optional[str] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
deployment_id: Optional[str] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
is_automatic: Optional[bool] = None,
lifecycle_details: Optional[str] = None,
namespace: Optional[str] = None,
object: Optional[str] = None,
ogg_version: Optional[str] = None,
size_in_bytes: Optional[float] = None,
state: Optional[str] = None,
system_tags: Optional[Mapping[str, Any]] = None,
time_backup_finished: Optional[str] = None,
time_created: Optional[str] = None,
time_of_backup: Optional[str] = None,
time_updated: Optional[str] = None) -> DeploymentBackup
func GetDeploymentBackup(ctx *Context, name string, id IDInput, state *DeploymentBackupState, opts ...ResourceOption) (*DeploymentBackup, error)
public static DeploymentBackup Get(string name, Input<string> id, DeploymentBackupState? state, CustomResourceOptions? opts = null)
public static DeploymentBackup get(String name, Output<String> id, DeploymentBackupState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Backup
Type string Possible Deployment backup types.
- Bucket string
Name of the bucket where the object is to be uploaded in the object storage
- Compartment
Id string (Updatable) The OCID of the compartment being referenced.
- Dictionary<string, object>
(Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Deployment
Id string The OCID of the deployment being referenced.
- Display
Name string An object's Display Name.
- Dictionary<string, object>
(Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Is
Automatic bool True if this object is automatically created
- Lifecycle
Details string Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
- Namespace string
Name of namespace that serves as a container for all of your buckets
- Object string
Name of the object to be uploaded to object storage
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Ogg
Version string Version of OGG
- Size
In doubleBytes The size of the backup stored in object storage (in bytes)
- State string
Possible lifecycle states.
- Dictionary<string, object>
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- Time
Backup stringFinished The time of the resource backup finish. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- Time
Created string The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- Time
Of stringBackup The time of the resource backup. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- Time
Updated string The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- Backup
Type string Possible Deployment backup types.
- Bucket string
Name of the bucket where the object is to be uploaded in the object storage
- Compartment
Id string (Updatable) The OCID of the compartment being referenced.
- map[string]interface{}
(Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Deployment
Id string The OCID of the deployment being referenced.
- Display
Name string An object's Display Name.
- map[string]interface{}
(Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Is
Automatic bool True if this object is automatically created
- Lifecycle
Details string Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
- Namespace string
Name of namespace that serves as a container for all of your buckets
- Object string
Name of the object to be uploaded to object storage
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Ogg
Version string Version of OGG
- Size
In float64Bytes The size of the backup stored in object storage (in bytes)
- State string
Possible lifecycle states.
- map[string]interface{}
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- Time
Backup stringFinished The time of the resource backup finish. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- Time
Created string The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- Time
Of stringBackup The time of the resource backup. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- Time
Updated string The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- backup
Type String Possible Deployment backup types.
- bucket String
Name of the bucket where the object is to be uploaded in the object storage
- compartment
Id String (Updatable) The OCID of the compartment being referenced.
- Map<String,Object>
(Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- deployment
Id String The OCID of the deployment being referenced.
- display
Name String An object's Display Name.
- Map<String,Object>
(Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- is
Automatic Boolean True if this object is automatically created
- lifecycle
Details String Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
- namespace String
Name of namespace that serves as a container for all of your buckets
- object String
Name of the object to be uploaded to object storage
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- ogg
Version String Version of OGG
- size
In DoubleBytes The size of the backup stored in object storage (in bytes)
- state String
Possible lifecycle states.
- Map<String,Object>
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- time
Backup StringFinished The time of the resource backup finish. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Created String The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Of StringBackup The time of the resource backup. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Updated String The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- backup
Type string Possible Deployment backup types.
- bucket string
Name of the bucket where the object is to be uploaded in the object storage
- compartment
Id string (Updatable) The OCID of the compartment being referenced.
- {[key: string]: any}
(Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- deployment
Id string The OCID of the deployment being referenced.
- display
Name string An object's Display Name.
- {[key: string]: any}
(Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- is
Automatic boolean True if this object is automatically created
- lifecycle
Details string Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
- namespace string
Name of namespace that serves as a container for all of your buckets
- object string
Name of the object to be uploaded to object storage
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- ogg
Version string Version of OGG
- size
In numberBytes The size of the backup stored in object storage (in bytes)
- state string
Possible lifecycle states.
- {[key: string]: any}
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- time
Backup stringFinished The time of the resource backup finish. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Created string The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Of stringBackup The time of the resource backup. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Updated string The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- backup_
type str Possible Deployment backup types.
- bucket str
Name of the bucket where the object is to be uploaded in the object storage
- compartment_
id str (Updatable) The OCID of the compartment being referenced.
- Mapping[str, Any]
(Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- deployment_
id str The OCID of the deployment being referenced.
- display_
name str An object's Display Name.
- Mapping[str, Any]
(Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- is_
automatic bool True if this object is automatically created
- lifecycle_
details str Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
- namespace str
Name of namespace that serves as a container for all of your buckets
- object str
Name of the object to be uploaded to object storage
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- ogg_
version str Version of OGG
- size_
in_ floatbytes The size of the backup stored in object storage (in bytes)
- state str
Possible lifecycle states.
- Mapping[str, Any]
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- time_
backup_ strfinished The time of the resource backup finish. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time_
created str The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time_
of_ strbackup The time of the resource backup. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time_
updated str The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- backup
Type String Possible Deployment backup types.
- bucket String
Name of the bucket where the object is to be uploaded in the object storage
- compartment
Id String (Updatable) The OCID of the compartment being referenced.
- Map<Any>
(Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- deployment
Id String The OCID of the deployment being referenced.
- display
Name String An object's Display Name.
- Map<Any>
(Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- is
Automatic Boolean True if this object is automatically created
- lifecycle
Details String Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
- namespace String
Name of namespace that serves as a container for all of your buckets
- object String
Name of the object to be uploaded to object storage
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- ogg
Version String Version of OGG
- size
In NumberBytes The size of the backup stored in object storage (in bytes)
- state String
Possible lifecycle states.
- Map<Any>
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- time
Backup StringFinished The time of the resource backup finish. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Created String The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Of StringBackup The time of the resource backup. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Updated String The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
Import
DeploymentBackups can be imported using the id
, e.g.
$ pulumi import oci:GoldenGate/deploymentBackup:DeploymentBackup test_deployment_backup "id"
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
oci
Terraform Provider.