MongoDB Atlas v3.30.0 published on Friday, Mar 21, 2025 by Pulumi
mongodbatlas.getCloudBackupSnapshotExportJobs
Explore with Pulumi AI
# Data Source: mongodbatlas.getCloudBackupSnapshotExportJobs
mongodbatlas.getCloudBackupSnapshotExportJobs
datasource allows you to retrieve all the buckets for the specified project.
NOTE: Groups and projects are synonymous terms. You may find
groupId
in the official documentation.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as mongodbatlas from "@pulumi/mongodbatlas";
const testCloudBackupSnapshotExportBucket = new mongodbatlas.CloudBackupSnapshotExportBucket("test", {
projectId: "{PROJECT_ID}",
iamRoleId: "{IAM_ROLE_ID}",
bucketName: "example_bucket",
cloudProvider: "AWS",
});
const testCloudBackupSnapshotExportJob = new mongodbatlas.CloudBackupSnapshotExportJob("test", {
projectId: "{PROJECT_ID}",
clusterName: "{CLUSTER_NAME}",
snapshotId: "{SNAPSHOT_ID}",
exportBucketId: testCloudBackupSnapshotExportBucket.exportBucketId,
customDatas: [{
key: "exported by",
value: "myName",
}],
});
const test = mongodbatlas.getCloudBackupSnapshotExportJobs({
projectId: "{PROJECT_ID}",
clusterName: "{CLUSTER_NAME}",
});
import pulumi
import pulumi_mongodbatlas as mongodbatlas
test_cloud_backup_snapshot_export_bucket = mongodbatlas.CloudBackupSnapshotExportBucket("test",
project_id="{PROJECT_ID}",
iam_role_id="{IAM_ROLE_ID}",
bucket_name="example_bucket",
cloud_provider="AWS")
test_cloud_backup_snapshot_export_job = mongodbatlas.CloudBackupSnapshotExportJob("test",
project_id="{PROJECT_ID}",
cluster_name="{CLUSTER_NAME}",
snapshot_id="{SNAPSHOT_ID}",
export_bucket_id=test_cloud_backup_snapshot_export_bucket.export_bucket_id,
custom_datas=[{
"key": "exported by",
"value": "myName",
}])
test = mongodbatlas.get_cloud_backup_snapshot_export_jobs(project_id="{PROJECT_ID}",
cluster_name="{CLUSTER_NAME}")
package main
import (
"github.com/pulumi/pulumi-mongodbatlas/sdk/v3/go/mongodbatlas"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
testCloudBackupSnapshotExportBucket, err := mongodbatlas.NewCloudBackupSnapshotExportBucket(ctx, "test", &mongodbatlas.CloudBackupSnapshotExportBucketArgs{
ProjectId: pulumi.String("{PROJECT_ID}"),
IamRoleId: pulumi.String("{IAM_ROLE_ID}"),
BucketName: pulumi.String("example_bucket"),
CloudProvider: pulumi.String("AWS"),
})
if err != nil {
return err
}
_, err = mongodbatlas.NewCloudBackupSnapshotExportJob(ctx, "test", &mongodbatlas.CloudBackupSnapshotExportJobArgs{
ProjectId: pulumi.String("{PROJECT_ID}"),
ClusterName: pulumi.String("{CLUSTER_NAME}"),
SnapshotId: pulumi.String("{SNAPSHOT_ID}"),
ExportBucketId: testCloudBackupSnapshotExportBucket.ExportBucketId,
CustomDatas: mongodbatlas.CloudBackupSnapshotExportJobCustomDataArray{
&mongodbatlas.CloudBackupSnapshotExportJobCustomDataArgs{
Key: pulumi.String("exported by"),
Value: pulumi.String("myName"),
},
},
})
if err != nil {
return err
}
_, err = mongodbatlas.LookupCloudBackupSnapshotExportJobs(ctx, &mongodbatlas.LookupCloudBackupSnapshotExportJobsArgs{
ProjectId: "{PROJECT_ID}",
ClusterName: "{CLUSTER_NAME}",
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Mongodbatlas = Pulumi.Mongodbatlas;
return await Deployment.RunAsync(() =>
{
var testCloudBackupSnapshotExportBucket = new Mongodbatlas.CloudBackupSnapshotExportBucket("test", new()
{
ProjectId = "{PROJECT_ID}",
IamRoleId = "{IAM_ROLE_ID}",
BucketName = "example_bucket",
CloudProvider = "AWS",
});
var testCloudBackupSnapshotExportJob = new Mongodbatlas.CloudBackupSnapshotExportJob("test", new()
{
ProjectId = "{PROJECT_ID}",
ClusterName = "{CLUSTER_NAME}",
SnapshotId = "{SNAPSHOT_ID}",
ExportBucketId = testCloudBackupSnapshotExportBucket.ExportBucketId,
CustomDatas = new[]
{
new Mongodbatlas.Inputs.CloudBackupSnapshotExportJobCustomDataArgs
{
Key = "exported by",
Value = "myName",
},
},
});
var test = Mongodbatlas.GetCloudBackupSnapshotExportJobs.Invoke(new()
{
ProjectId = "{PROJECT_ID}",
ClusterName = "{CLUSTER_NAME}",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.mongodbatlas.CloudBackupSnapshotExportBucket;
import com.pulumi.mongodbatlas.CloudBackupSnapshotExportBucketArgs;
import com.pulumi.mongodbatlas.CloudBackupSnapshotExportJob;
import com.pulumi.mongodbatlas.CloudBackupSnapshotExportJobArgs;
import com.pulumi.mongodbatlas.inputs.CloudBackupSnapshotExportJobCustomDataArgs;
import com.pulumi.mongodbatlas.MongodbatlasFunctions;
import com.pulumi.mongodbatlas.inputs.GetCloudBackupSnapshotExportJobsArgs;
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 testCloudBackupSnapshotExportBucket = new CloudBackupSnapshotExportBucket("testCloudBackupSnapshotExportBucket", CloudBackupSnapshotExportBucketArgs.builder()
.projectId("{PROJECT_ID}")
.iamRoleId("{IAM_ROLE_ID}")
.bucketName("example_bucket")
.cloudProvider("AWS")
.build());
var testCloudBackupSnapshotExportJob = new CloudBackupSnapshotExportJob("testCloudBackupSnapshotExportJob", CloudBackupSnapshotExportJobArgs.builder()
.projectId("{PROJECT_ID}")
.clusterName("{CLUSTER_NAME}")
.snapshotId("{SNAPSHOT_ID}")
.exportBucketId(testCloudBackupSnapshotExportBucket.exportBucketId())
.customDatas(CloudBackupSnapshotExportJobCustomDataArgs.builder()
.key("exported by")
.value("myName")
.build())
.build());
final var test = MongodbatlasFunctions.getCloudBackupSnapshotExportJobs(GetCloudBackupSnapshotExportJobsArgs.builder()
.projectId("{PROJECT_ID}")
.clusterName("{CLUSTER_NAME}")
.build());
}
}
resources:
testCloudBackupSnapshotExportBucket:
type: mongodbatlas:CloudBackupSnapshotExportBucket
name: test
properties:
projectId: '{PROJECT_ID}'
iamRoleId: '{IAM_ROLE_ID}'
bucketName: example_bucket
cloudProvider: AWS
testCloudBackupSnapshotExportJob:
type: mongodbatlas:CloudBackupSnapshotExportJob
name: test
properties:
projectId: '{PROJECT_ID}'
clusterName: '{CLUSTER_NAME}'
snapshotId: '{SNAPSHOT_ID}'
exportBucketId: ${testCloudBackupSnapshotExportBucket.exportBucketId}
customDatas:
- key: exported by
value: myName
variables:
test:
fn::invoke:
function: mongodbatlas:getCloudBackupSnapshotExportJobs
arguments:
projectId: '{PROJECT_ID}'
clusterName: '{CLUSTER_NAME}'
Using getCloudBackupSnapshotExportJobs
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getCloudBackupSnapshotExportJobs(args: GetCloudBackupSnapshotExportJobsArgs, opts?: InvokeOptions): Promise<GetCloudBackupSnapshotExportJobsResult>
function getCloudBackupSnapshotExportJobsOutput(args: GetCloudBackupSnapshotExportJobsOutputArgs, opts?: InvokeOptions): Output<GetCloudBackupSnapshotExportJobsResult>
def get_cloud_backup_snapshot_export_jobs(cluster_name: Optional[str] = None,
items_per_page: Optional[int] = None,
page_num: Optional[int] = None,
project_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetCloudBackupSnapshotExportJobsResult
def get_cloud_backup_snapshot_export_jobs_output(cluster_name: Optional[pulumi.Input[str]] = None,
items_per_page: Optional[pulumi.Input[int]] = None,
page_num: Optional[pulumi.Input[int]] = None,
project_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetCloudBackupSnapshotExportJobsResult]
func LookupCloudBackupSnapshotExportJobs(ctx *Context, args *LookupCloudBackupSnapshotExportJobsArgs, opts ...InvokeOption) (*LookupCloudBackupSnapshotExportJobsResult, error)
func LookupCloudBackupSnapshotExportJobsOutput(ctx *Context, args *LookupCloudBackupSnapshotExportJobsOutputArgs, opts ...InvokeOption) LookupCloudBackupSnapshotExportJobsResultOutput
> Note: This function is named LookupCloudBackupSnapshotExportJobs
in the Go SDK.
public static class GetCloudBackupSnapshotExportJobs
{
public static Task<GetCloudBackupSnapshotExportJobsResult> InvokeAsync(GetCloudBackupSnapshotExportJobsArgs args, InvokeOptions? opts = null)
public static Output<GetCloudBackupSnapshotExportJobsResult> Invoke(GetCloudBackupSnapshotExportJobsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetCloudBackupSnapshotExportJobsResult> getCloudBackupSnapshotExportJobs(GetCloudBackupSnapshotExportJobsArgs args, InvokeOptions options)
public static Output<GetCloudBackupSnapshotExportJobsResult> getCloudBackupSnapshotExportJobs(GetCloudBackupSnapshotExportJobsArgs args, InvokeOptions options)
fn::invoke:
function: mongodbatlas:index/getCloudBackupSnapshotExportJobs:getCloudBackupSnapshotExportJobs
arguments:
# arguments dictionary
The following arguments are supported:
- Cluster
Name This property is required. string - Name of the Atlas cluster whose export job you want to retrieve.
- Project
Id This property is required. string - The unique identifier of the project for the Atlas cluster.
- Items
Per intPage - Number of items to return per page, up to a maximum of 500. Defaults to
100
. - Page
Num int - The page to return. Defaults to
1
.
- Cluster
Name This property is required. string - Name of the Atlas cluster whose export job you want to retrieve.
- Project
Id This property is required. string - The unique identifier of the project for the Atlas cluster.
- Items
Per intPage - Number of items to return per page, up to a maximum of 500. Defaults to
100
. - Page
Num int - The page to return. Defaults to
1
.
- cluster
Name This property is required. String - Name of the Atlas cluster whose export job you want to retrieve.
- project
Id This property is required. String - The unique identifier of the project for the Atlas cluster.
- items
Per IntegerPage - Number of items to return per page, up to a maximum of 500. Defaults to
100
. - page
Num Integer - The page to return. Defaults to
1
.
- cluster
Name This property is required. string - Name of the Atlas cluster whose export job you want to retrieve.
- project
Id This property is required. string - The unique identifier of the project for the Atlas cluster.
- items
Per numberPage - Number of items to return per page, up to a maximum of 500. Defaults to
100
. - page
Num number - The page to return. Defaults to
1
.
- cluster_
name This property is required. str - Name of the Atlas cluster whose export job you want to retrieve.
- project_
id This property is required. str - The unique identifier of the project for the Atlas cluster.
- items_
per_ intpage - Number of items to return per page, up to a maximum of 500. Defaults to
100
. - page_
num int - The page to return. Defaults to
1
.
- cluster
Name This property is required. String - Name of the Atlas cluster whose export job you want to retrieve.
- project
Id This property is required. String - The unique identifier of the project for the Atlas cluster.
- items
Per NumberPage - Number of items to return per page, up to a maximum of 500. Defaults to
100
. - page
Num Number - The page to return. Defaults to
1
.
getCloudBackupSnapshotExportJobs Result
The following output properties are available:
- Cluster
Name string - Id string
- The provider-assigned unique ID for this managed resource.
- Project
Id string - The unique identifier of the project for the Atlas cluster.
- Results
List<Get
Cloud Backup Snapshot Export Jobs Result> - Includes CloudProviderSnapshotExportJob object for each item detailed in the results array section.
totalCount
- Count of the total number of items in the result set. It may be greater than the number of objects in the results array if the entire result set is paginated.
- Total
Count int - Items
Per intPage - Page
Num int
- Cluster
Name string - Id string
- The provider-assigned unique ID for this managed resource.
- Project
Id string - The unique identifier of the project for the Atlas cluster.
- Results
[]Get
Cloud Backup Snapshot Export Jobs Result - Includes CloudProviderSnapshotExportJob object for each item detailed in the results array section.
totalCount
- Count of the total number of items in the result set. It may be greater than the number of objects in the results array if the entire result set is paginated.
- Total
Count int - Items
Per intPage - Page
Num int
- cluster
Name String - id String
- The provider-assigned unique ID for this managed resource.
- project
Id String - The unique identifier of the project for the Atlas cluster.
- results
List<Get
Cloud Backup Snapshot Export Jobs Result> - Includes CloudProviderSnapshotExportJob object for each item detailed in the results array section.
totalCount
- Count of the total number of items in the result set. It may be greater than the number of objects in the results array if the entire result set is paginated.
- total
Count Integer - items
Per IntegerPage - page
Num Integer
- cluster
Name string - id string
- The provider-assigned unique ID for this managed resource.
- project
Id string - The unique identifier of the project for the Atlas cluster.
- results
Get
Cloud Backup Snapshot Export Jobs Result[] - Includes CloudProviderSnapshotExportJob object for each item detailed in the results array section.
totalCount
- Count of the total number of items in the result set. It may be greater than the number of objects in the results array if the entire result set is paginated.
- total
Count number - items
Per numberPage - page
Num number
- cluster_
name str - id str
- The provider-assigned unique ID for this managed resource.
- project_
id str - The unique identifier of the project for the Atlas cluster.
- results
Sequence[Get
Cloud Backup Snapshot Export Jobs Result] - Includes CloudProviderSnapshotExportJob object for each item detailed in the results array section.
totalCount
- Count of the total number of items in the result set. It may be greater than the number of objects in the results array if the entire result set is paginated.
- total_
count int - items_
per_ intpage - page_
num int
- cluster
Name String - id String
- The provider-assigned unique ID for this managed resource.
- project
Id String - The unique identifier of the project for the Atlas cluster.
- results List<Property Map>
- Includes CloudProviderSnapshotExportJob object for each item detailed in the results array section.
totalCount
- Count of the total number of items in the result set. It may be greater than the number of objects in the results array if the entire result set is paginated.
- total
Count Number - items
Per NumberPage - page
Num Number
Supporting Types
GetCloudBackupSnapshotExportJobsResult
- Components
This property is required. List<GetCloud Backup Snapshot Export Jobs Result Component> - Returned for sharded clusters only. Export job details for each replica set in the sharded cluster.
- Created
At This property is required. string - Timestamp in ISO 8601 date and time format in UTC when the export job was created.
- Custom
Datas This property is required. List<GetCloud Backup Snapshot Export Jobs Result Custom Data> - Custom data to include in the metadata file named
.complete
that Atlas uploads to the bucket when the export job finishes. Custom data can be specified as key and value pairs. - Export
Bucket Id This property is required. string - Unique identifier of the AWS bucket to export the Cloud Backup snapshot to.
- Export
Job Id This property is required. string - Unique identifier of the export job.
prefix
- Full path on the cloud provider bucket to the folder where the snapshot is exported. The path is in the following format:/exported_snapshots/{ORG-NAME}/{PROJECT-NAME}/{CLUSTER-NAME}/{SNAPSHOT-INITIATION-DATE}/{TIMESTAMP}
- Export
Status Exported Collections This property is required. int - Export
Status Total Collections This property is required. int - Finished
At This property is required. string - Timestamp in ISO 8601 date and time format in UTC when the export job completes.
- Prefix
This property is required. string - Snapshot
Id This property is required. string - Unique identifier of the Cloud Backup snapshot to export.
- State
This property is required. string - Status of the export job. Value can be one of the following:
Queued
- indicates that the export job is queuedInProgress
- indicates that the snapshot is being exportedSuccessful
- indicates that the export job has completed successfullyFailed
- indicates that the export job has failedCancelled
- indicates that the export job has cancelled
- Components
This property is required. []GetCloud Backup Snapshot Export Jobs Result Component - Returned for sharded clusters only. Export job details for each replica set in the sharded cluster.
- Created
At This property is required. string - Timestamp in ISO 8601 date and time format in UTC when the export job was created.
- Custom
Datas This property is required. []GetCloud Backup Snapshot Export Jobs Result Custom Data - Custom data to include in the metadata file named
.complete
that Atlas uploads to the bucket when the export job finishes. Custom data can be specified as key and value pairs. - Export
Bucket Id This property is required. string - Unique identifier of the AWS bucket to export the Cloud Backup snapshot to.
- Export
Job Id This property is required. string - Unique identifier of the export job.
prefix
- Full path on the cloud provider bucket to the folder where the snapshot is exported. The path is in the following format:/exported_snapshots/{ORG-NAME}/{PROJECT-NAME}/{CLUSTER-NAME}/{SNAPSHOT-INITIATION-DATE}/{TIMESTAMP}
- Export
Status Exported Collections This property is required. int - Export
Status Total Collections This property is required. int - Finished
At This property is required. string - Timestamp in ISO 8601 date and time format in UTC when the export job completes.
- Prefix
This property is required. string - Snapshot
Id This property is required. string - Unique identifier of the Cloud Backup snapshot to export.
- State
This property is required. string - Status of the export job. Value can be one of the following:
Queued
- indicates that the export job is queuedInProgress
- indicates that the snapshot is being exportedSuccessful
- indicates that the export job has completed successfullyFailed
- indicates that the export job has failedCancelled
- indicates that the export job has cancelled
- components
This property is required. List<GetCloud Backup Snapshot Export Jobs Result Component> - Returned for sharded clusters only. Export job details for each replica set in the sharded cluster.
- created
At This property is required. String - Timestamp in ISO 8601 date and time format in UTC when the export job was created.
- custom
Datas This property is required. List<GetCloud Backup Snapshot Export Jobs Result Custom Data> - Custom data to include in the metadata file named
.complete
that Atlas uploads to the bucket when the export job finishes. Custom data can be specified as key and value pairs. - export
Bucket Id This property is required. String - Unique identifier of the AWS bucket to export the Cloud Backup snapshot to.
- export
Job Id This property is required. String - Unique identifier of the export job.
prefix
- Full path on the cloud provider bucket to the folder where the snapshot is exported. The path is in the following format:/exported_snapshots/{ORG-NAME}/{PROJECT-NAME}/{CLUSTER-NAME}/{SNAPSHOT-INITIATION-DATE}/{TIMESTAMP}
- export
Status Exported Collections This property is required. Integer - export
Status Total Collections This property is required. Integer - finished
At This property is required. String - Timestamp in ISO 8601 date and time format in UTC when the export job completes.
- prefix
This property is required. String - snapshot
Id This property is required. String - Unique identifier of the Cloud Backup snapshot to export.
- state
This property is required. String - Status of the export job. Value can be one of the following:
Queued
- indicates that the export job is queuedInProgress
- indicates that the snapshot is being exportedSuccessful
- indicates that the export job has completed successfullyFailed
- indicates that the export job has failedCancelled
- indicates that the export job has cancelled
- components
This property is required. GetCloud Backup Snapshot Export Jobs Result Component[] - Returned for sharded clusters only. Export job details for each replica set in the sharded cluster.
- created
At This property is required. string - Timestamp in ISO 8601 date and time format in UTC when the export job was created.
- custom
Datas This property is required. GetCloud Backup Snapshot Export Jobs Result Custom Data[] - Custom data to include in the metadata file named
.complete
that Atlas uploads to the bucket when the export job finishes. Custom data can be specified as key and value pairs. - export
Bucket Id This property is required. string - Unique identifier of the AWS bucket to export the Cloud Backup snapshot to.
- export
Job Id This property is required. string - Unique identifier of the export job.
prefix
- Full path on the cloud provider bucket to the folder where the snapshot is exported. The path is in the following format:/exported_snapshots/{ORG-NAME}/{PROJECT-NAME}/{CLUSTER-NAME}/{SNAPSHOT-INITIATION-DATE}/{TIMESTAMP}
- export
Status Exported Collections This property is required. number - export
Status Total Collections This property is required. number - finished
At This property is required. string - Timestamp in ISO 8601 date and time format in UTC when the export job completes.
- prefix
This property is required. string - snapshot
Id This property is required. string - Unique identifier of the Cloud Backup snapshot to export.
- state
This property is required. string - Status of the export job. Value can be one of the following:
Queued
- indicates that the export job is queuedInProgress
- indicates that the snapshot is being exportedSuccessful
- indicates that the export job has completed successfullyFailed
- indicates that the export job has failedCancelled
- indicates that the export job has cancelled
- components
This property is required. Sequence[GetCloud Backup Snapshot Export Jobs Result Component] - Returned for sharded clusters only. Export job details for each replica set in the sharded cluster.
- created_
at This property is required. str - Timestamp in ISO 8601 date and time format in UTC when the export job was created.
- custom_
datas This property is required. Sequence[GetCloud Backup Snapshot Export Jobs Result Custom Data] - Custom data to include in the metadata file named
.complete
that Atlas uploads to the bucket when the export job finishes. Custom data can be specified as key and value pairs. - export_
bucket_ id This property is required. str - Unique identifier of the AWS bucket to export the Cloud Backup snapshot to.
- export_
job_ id This property is required. str - Unique identifier of the export job.
prefix
- Full path on the cloud provider bucket to the folder where the snapshot is exported. The path is in the following format:/exported_snapshots/{ORG-NAME}/{PROJECT-NAME}/{CLUSTER-NAME}/{SNAPSHOT-INITIATION-DATE}/{TIMESTAMP}
- export_
status_ exported_ collections This property is required. int - export_
status_ total_ collections This property is required. int - finished_
at This property is required. str - Timestamp in ISO 8601 date and time format in UTC when the export job completes.
- prefix
This property is required. str - snapshot_
id This property is required. str - Unique identifier of the Cloud Backup snapshot to export.
- state
This property is required. str - Status of the export job. Value can be one of the following:
Queued
- indicates that the export job is queuedInProgress
- indicates that the snapshot is being exportedSuccessful
- indicates that the export job has completed successfullyFailed
- indicates that the export job has failedCancelled
- indicates that the export job has cancelled
- components
This property is required. List<Property Map> - Returned for sharded clusters only. Export job details for each replica set in the sharded cluster.
- created
At This property is required. String - Timestamp in ISO 8601 date and time format in UTC when the export job was created.
- custom
Datas This property is required. List<Property Map> - Custom data to include in the metadata file named
.complete
that Atlas uploads to the bucket when the export job finishes. Custom data can be specified as key and value pairs. - export
Bucket Id This property is required. String - Unique identifier of the AWS bucket to export the Cloud Backup snapshot to.
- export
Job Id This property is required. String - Unique identifier of the export job.
prefix
- Full path on the cloud provider bucket to the folder where the snapshot is exported. The path is in the following format:/exported_snapshots/{ORG-NAME}/{PROJECT-NAME}/{CLUSTER-NAME}/{SNAPSHOT-INITIATION-DATE}/{TIMESTAMP}
- export
Status Exported Collections This property is required. Number - export
Status Total Collections This property is required. Number - finished
At This property is required. String - Timestamp in ISO 8601 date and time format in UTC when the export job completes.
- prefix
This property is required. String - snapshot
Id This property is required. String - Unique identifier of the Cloud Backup snapshot to export.
- state
This property is required. String - Status of the export job. Value can be one of the following:
Queued
- indicates that the export job is queuedInProgress
- indicates that the snapshot is being exportedSuccessful
- indicates that the export job has completed successfullyFailed
- indicates that the export job has failedCancelled
- indicates that the export job has cancelled
GetCloudBackupSnapshotExportJobsResultComponent
- Export
Id This property is required. string - Returned for sharded clusters only. Export job details for each replica set in the sharded cluster.
- Replica
Set Name This property is required. string - Returned for sharded clusters only. Unique identifier of the export job for the replica set.
- Export
Id This property is required. string - Returned for sharded clusters only. Export job details for each replica set in the sharded cluster.
- Replica
Set Name This property is required. string - Returned for sharded clusters only. Unique identifier of the export job for the replica set.
- export
Id This property is required. String - Returned for sharded clusters only. Export job details for each replica set in the sharded cluster.
- replica
Set Name This property is required. String - Returned for sharded clusters only. Unique identifier of the export job for the replica set.
- export
Id This property is required. string - Returned for sharded clusters only. Export job details for each replica set in the sharded cluster.
- replica
Set Name This property is required. string - Returned for sharded clusters only. Unique identifier of the export job for the replica set.
- export_
id This property is required. str - Returned for sharded clusters only. Export job details for each replica set in the sharded cluster.
- replica_
set_ name This property is required. str - Returned for sharded clusters only. Unique identifier of the export job for the replica set.
- export
Id This property is required. String - Returned for sharded clusters only. Export job details for each replica set in the sharded cluster.
- replica
Set Name This property is required. String - Returned for sharded clusters only. Unique identifier of the export job for the replica set.
GetCloudBackupSnapshotExportJobsResultCustomData
Package Details
- Repository
- MongoDB Atlas pulumi/pulumi-mongodbatlas
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
mongodbatlas
Terraform Provider.