mongodbatlas.FederatedQueryLimit
Explore with Pulumi AI
mongodbatlas.FederatedQueryLimit
provides a Federated Database Instance Query Limits resource. To learn more about Atlas Data Federation see https://www.mongodb.com/docs/atlas/data-federation/overview/.
NOTE: Groups and projects are synonymous terms. You may find group_id in the official documentation.
Example Usage
S
import * as pulumi from "@pulumi/pulumi";
import * as mongodbatlas from "@pulumi/mongodbatlas";
const test = new mongodbatlas.FederatedQueryLimit("test", {
projectId: "64707f06c519c20c3a2b1b03",
tenantName: "FederatedDatabseInstance0",
limitName: "bytesProcessed.weekly",
overrunPolicy: "BLOCK",
value: 5147483648,
});
import pulumi
import pulumi_mongodbatlas as mongodbatlas
test = mongodbatlas.FederatedQueryLimit("test",
project_id="64707f06c519c20c3a2b1b03",
tenant_name="FederatedDatabseInstance0",
limit_name="bytesProcessed.weekly",
overrun_policy="BLOCK",
value=5147483648)
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 {
_, err := mongodbatlas.NewFederatedQueryLimit(ctx, "test", &mongodbatlas.FederatedQueryLimitArgs{
ProjectId: pulumi.String("64707f06c519c20c3a2b1b03"),
TenantName: pulumi.String("FederatedDatabseInstance0"),
LimitName: pulumi.String("bytesProcessed.weekly"),
OverrunPolicy: pulumi.String("BLOCK"),
Value: pulumi.Int(5147483648),
})
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 test = new Mongodbatlas.FederatedQueryLimit("test", new()
{
ProjectId = "64707f06c519c20c3a2b1b03",
TenantName = "FederatedDatabseInstance0",
LimitName = "bytesProcessed.weekly",
OverrunPolicy = "BLOCK",
Value = 5147483648,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.mongodbatlas.FederatedQueryLimit;
import com.pulumi.mongodbatlas.FederatedQueryLimitArgs;
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 test = new FederatedQueryLimit("test", FederatedQueryLimitArgs.builder()
.projectId("64707f06c519c20c3a2b1b03")
.tenantName("FederatedDatabseInstance0")
.limitName("bytesProcessed.weekly")
.overrunPolicy("BLOCK")
.value(5147483648)
.build());
}
}
resources:
test:
type: mongodbatlas:FederatedQueryLimit
properties:
projectId: 64707f06c519c20c3a2b1b03
tenantName: FederatedDatabseInstance0
limitName: bytesProcessed.weekly
overrunPolicy: BLOCK
value: 5.147483648e+09
Create FederatedQueryLimit Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new FederatedQueryLimit(name: string, args: FederatedQueryLimitArgs, opts?: CustomResourceOptions);
@overload
def FederatedQueryLimit(resource_name: str,
args: FederatedQueryLimitArgs,
opts: Optional[ResourceOptions] = None)
@overload
def FederatedQueryLimit(resource_name: str,
opts: Optional[ResourceOptions] = None,
limit_name: Optional[str] = None,
overrun_policy: Optional[str] = None,
project_id: Optional[str] = None,
tenant_name: Optional[str] = None,
value: Optional[int] = None,
default_limit: Optional[int] = None,
maximum_limit: Optional[int] = None)
func NewFederatedQueryLimit(ctx *Context, name string, args FederatedQueryLimitArgs, opts ...ResourceOption) (*FederatedQueryLimit, error)
public FederatedQueryLimit(string name, FederatedQueryLimitArgs args, CustomResourceOptions? opts = null)
public FederatedQueryLimit(String name, FederatedQueryLimitArgs args)
public FederatedQueryLimit(String name, FederatedQueryLimitArgs args, CustomResourceOptions options)
type: mongodbatlas:FederatedQueryLimit
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 FederatedQueryLimitArgs
- 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 FederatedQueryLimitArgs
- 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 FederatedQueryLimitArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FederatedQueryLimitArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FederatedQueryLimitArgs
- 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 federatedQueryLimitResource = new Mongodbatlas.FederatedQueryLimit("federatedQueryLimitResource", new()
{
LimitName = "string",
OverrunPolicy = "string",
ProjectId = "string",
TenantName = "string",
Value = 0,
DefaultLimit = 0,
MaximumLimit = 0,
});
example, err := mongodbatlas.NewFederatedQueryLimit(ctx, "federatedQueryLimitResource", &mongodbatlas.FederatedQueryLimitArgs{
LimitName: pulumi.String("string"),
OverrunPolicy: pulumi.String("string"),
ProjectId: pulumi.String("string"),
TenantName: pulumi.String("string"),
Value: pulumi.Int(0),
DefaultLimit: pulumi.Int(0),
MaximumLimit: pulumi.Int(0),
})
var federatedQueryLimitResource = new FederatedQueryLimit("federatedQueryLimitResource", FederatedQueryLimitArgs.builder()
.limitName("string")
.overrunPolicy("string")
.projectId("string")
.tenantName("string")
.value(0)
.defaultLimit(0)
.maximumLimit(0)
.build());
federated_query_limit_resource = mongodbatlas.FederatedQueryLimit("federatedQueryLimitResource",
limit_name="string",
overrun_policy="string",
project_id="string",
tenant_name="string",
value=0,
default_limit=0,
maximum_limit=0)
const federatedQueryLimitResource = new mongodbatlas.FederatedQueryLimit("federatedQueryLimitResource", {
limitName: "string",
overrunPolicy: "string",
projectId: "string",
tenantName: "string",
value: 0,
defaultLimit: 0,
maximumLimit: 0,
});
type: mongodbatlas:FederatedQueryLimit
properties:
defaultLimit: 0
limitName: string
maximumLimit: 0
overrunPolicy: string
projectId: string
tenantName: string
value: 0
FederatedQueryLimit 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 FederatedQueryLimit resource accepts the following input properties:
- Limit
Name string - String enum that indicates whether the identity provider is active or not. Accepted values are:
bytesProcessed.query
: Limit on the number of bytes processed during a single data federation query.bytesProcessed.daily
: Limit on the number of bytes processed for the data federation instance for the current day.bytesProcessed.weekly
: Limit on the number of bytes processed for the data federation instance for the current week.bytesProcessed.monthly
: Limit on the number of bytes processed for the data federation instance for the current month.
- Overrun
Policy string - String enum that identifies action to take when the usage limit is exceeded. If limit span is set to QUERY, this is ignored because MongoDB Cloud stops the query when it exceeds the usage limit. Accepted values are "BLOCK" OR "BLOCK_AND_KILL"
- Project
Id string - The unique ID for the project to create a Federated Database Instance.
- Tenant
Name string - Name of the Atlas Federated Database Instance.
- Value int
- Amount to set the limit to.
- Default
Limit int - Default value of the limit.
lastModifiedDate
- Only used for Data Federation limits. Timestamp that indicates when this usage limit was last modified. This field uses the ISO 8601 timestamp format in UTC.maximumLimit
- Maximum value of the limit.
- Maximum
Limit int
- Limit
Name string - String enum that indicates whether the identity provider is active or not. Accepted values are:
bytesProcessed.query
: Limit on the number of bytes processed during a single data federation query.bytesProcessed.daily
: Limit on the number of bytes processed for the data federation instance for the current day.bytesProcessed.weekly
: Limit on the number of bytes processed for the data federation instance for the current week.bytesProcessed.monthly
: Limit on the number of bytes processed for the data federation instance for the current month.
- Overrun
Policy string - String enum that identifies action to take when the usage limit is exceeded. If limit span is set to QUERY, this is ignored because MongoDB Cloud stops the query when it exceeds the usage limit. Accepted values are "BLOCK" OR "BLOCK_AND_KILL"
- Project
Id string - The unique ID for the project to create a Federated Database Instance.
- Tenant
Name string - Name of the Atlas Federated Database Instance.
- Value int
- Amount to set the limit to.
- Default
Limit int - Default value of the limit.
lastModifiedDate
- Only used for Data Federation limits. Timestamp that indicates when this usage limit was last modified. This field uses the ISO 8601 timestamp format in UTC.maximumLimit
- Maximum value of the limit.
- Maximum
Limit int
- limit
Name String - String enum that indicates whether the identity provider is active or not. Accepted values are:
bytesProcessed.query
: Limit on the number of bytes processed during a single data federation query.bytesProcessed.daily
: Limit on the number of bytes processed for the data federation instance for the current day.bytesProcessed.weekly
: Limit on the number of bytes processed for the data federation instance for the current week.bytesProcessed.monthly
: Limit on the number of bytes processed for the data federation instance for the current month.
- overrun
Policy String - String enum that identifies action to take when the usage limit is exceeded. If limit span is set to QUERY, this is ignored because MongoDB Cloud stops the query when it exceeds the usage limit. Accepted values are "BLOCK" OR "BLOCK_AND_KILL"
- project
Id String - The unique ID for the project to create a Federated Database Instance.
- tenant
Name String - Name of the Atlas Federated Database Instance.
- value Integer
- Amount to set the limit to.
- default
Limit Integer - Default value of the limit.
lastModifiedDate
- Only used for Data Federation limits. Timestamp that indicates when this usage limit was last modified. This field uses the ISO 8601 timestamp format in UTC.maximumLimit
- Maximum value of the limit.
- maximum
Limit Integer
- limit
Name string - String enum that indicates whether the identity provider is active or not. Accepted values are:
bytesProcessed.query
: Limit on the number of bytes processed during a single data federation query.bytesProcessed.daily
: Limit on the number of bytes processed for the data federation instance for the current day.bytesProcessed.weekly
: Limit on the number of bytes processed for the data federation instance for the current week.bytesProcessed.monthly
: Limit on the number of bytes processed for the data federation instance for the current month.
- overrun
Policy string - String enum that identifies action to take when the usage limit is exceeded. If limit span is set to QUERY, this is ignored because MongoDB Cloud stops the query when it exceeds the usage limit. Accepted values are "BLOCK" OR "BLOCK_AND_KILL"
- project
Id string - The unique ID for the project to create a Federated Database Instance.
- tenant
Name string - Name of the Atlas Federated Database Instance.
- value number
- Amount to set the limit to.
- default
Limit number - Default value of the limit.
lastModifiedDate
- Only used for Data Federation limits. Timestamp that indicates when this usage limit was last modified. This field uses the ISO 8601 timestamp format in UTC.maximumLimit
- Maximum value of the limit.
- maximum
Limit number
- limit_
name str - String enum that indicates whether the identity provider is active or not. Accepted values are:
bytesProcessed.query
: Limit on the number of bytes processed during a single data federation query.bytesProcessed.daily
: Limit on the number of bytes processed for the data federation instance for the current day.bytesProcessed.weekly
: Limit on the number of bytes processed for the data federation instance for the current week.bytesProcessed.monthly
: Limit on the number of bytes processed for the data federation instance for the current month.
- overrun_
policy str - String enum that identifies action to take when the usage limit is exceeded. If limit span is set to QUERY, this is ignored because MongoDB Cloud stops the query when it exceeds the usage limit. Accepted values are "BLOCK" OR "BLOCK_AND_KILL"
- project_
id str - The unique ID for the project to create a Federated Database Instance.
- tenant_
name str - Name of the Atlas Federated Database Instance.
- value int
- Amount to set the limit to.
- default_
limit int - Default value of the limit.
lastModifiedDate
- Only used for Data Federation limits. Timestamp that indicates when this usage limit was last modified. This field uses the ISO 8601 timestamp format in UTC.maximumLimit
- Maximum value of the limit.
- maximum_
limit int
- limit
Name String - String enum that indicates whether the identity provider is active or not. Accepted values are:
bytesProcessed.query
: Limit on the number of bytes processed during a single data federation query.bytesProcessed.daily
: Limit on the number of bytes processed for the data federation instance for the current day.bytesProcessed.weekly
: Limit on the number of bytes processed for the data federation instance for the current week.bytesProcessed.monthly
: Limit on the number of bytes processed for the data federation instance for the current month.
- overrun
Policy String - String enum that identifies action to take when the usage limit is exceeded. If limit span is set to QUERY, this is ignored because MongoDB Cloud stops the query when it exceeds the usage limit. Accepted values are "BLOCK" OR "BLOCK_AND_KILL"
- project
Id String - The unique ID for the project to create a Federated Database Instance.
- tenant
Name String - Name of the Atlas Federated Database Instance.
- value Number
- Amount to set the limit to.
- default
Limit Number - Default value of the limit.
lastModifiedDate
- Only used for Data Federation limits. Timestamp that indicates when this usage limit was last modified. This field uses the ISO 8601 timestamp format in UTC.maximumLimit
- Maximum value of the limit.
- maximum
Limit Number
Outputs
All input properties are implicitly available as output properties. Additionally, the FederatedQueryLimit resource produces the following output properties:
- Current
Usage int - Amount that indicates the current usage of the limit.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Modified stringDate
- Current
Usage int - Amount that indicates the current usage of the limit.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Modified stringDate
- current
Usage Integer - Amount that indicates the current usage of the limit.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Modified StringDate
- current
Usage number - Amount that indicates the current usage of the limit.
- id string
- The provider-assigned unique ID for this managed resource.
- last
Modified stringDate
- current_
usage int - Amount that indicates the current usage of the limit.
- id str
- The provider-assigned unique ID for this managed resource.
- last_
modified_ strdate
- current
Usage Number - Amount that indicates the current usage of the limit.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Modified StringDate
Look up Existing FederatedQueryLimit Resource
Get an existing FederatedQueryLimit 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?: FederatedQueryLimitState, opts?: CustomResourceOptions): FederatedQueryLimit
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
current_usage: Optional[int] = None,
default_limit: Optional[int] = None,
last_modified_date: Optional[str] = None,
limit_name: Optional[str] = None,
maximum_limit: Optional[int] = None,
overrun_policy: Optional[str] = None,
project_id: Optional[str] = None,
tenant_name: Optional[str] = None,
value: Optional[int] = None) -> FederatedQueryLimit
func GetFederatedQueryLimit(ctx *Context, name string, id IDInput, state *FederatedQueryLimitState, opts ...ResourceOption) (*FederatedQueryLimit, error)
public static FederatedQueryLimit Get(string name, Input<string> id, FederatedQueryLimitState? state, CustomResourceOptions? opts = null)
public static FederatedQueryLimit get(String name, Output<String> id, FederatedQueryLimitState 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.
- Current
Usage int - Amount that indicates the current usage of the limit.
- Default
Limit int - Default value of the limit.
lastModifiedDate
- Only used for Data Federation limits. Timestamp that indicates when this usage limit was last modified. This field uses the ISO 8601 timestamp format in UTC.maximumLimit
- Maximum value of the limit.
- Last
Modified stringDate - Limit
Name string - String enum that indicates whether the identity provider is active or not. Accepted values are:
bytesProcessed.query
: Limit on the number of bytes processed during a single data federation query.bytesProcessed.daily
: Limit on the number of bytes processed for the data federation instance for the current day.bytesProcessed.weekly
: Limit on the number of bytes processed for the data federation instance for the current week.bytesProcessed.monthly
: Limit on the number of bytes processed for the data federation instance for the current month.
- Maximum
Limit int - Overrun
Policy string - String enum that identifies action to take when the usage limit is exceeded. If limit span is set to QUERY, this is ignored because MongoDB Cloud stops the query when it exceeds the usage limit. Accepted values are "BLOCK" OR "BLOCK_AND_KILL"
- Project
Id string - The unique ID for the project to create a Federated Database Instance.
- Tenant
Name string - Name of the Atlas Federated Database Instance.
- Value int
- Amount to set the limit to.
- Current
Usage int - Amount that indicates the current usage of the limit.
- Default
Limit int - Default value of the limit.
lastModifiedDate
- Only used for Data Federation limits. Timestamp that indicates when this usage limit was last modified. This field uses the ISO 8601 timestamp format in UTC.maximumLimit
- Maximum value of the limit.
- Last
Modified stringDate - Limit
Name string - String enum that indicates whether the identity provider is active or not. Accepted values are:
bytesProcessed.query
: Limit on the number of bytes processed during a single data federation query.bytesProcessed.daily
: Limit on the number of bytes processed for the data federation instance for the current day.bytesProcessed.weekly
: Limit on the number of bytes processed for the data federation instance for the current week.bytesProcessed.monthly
: Limit on the number of bytes processed for the data federation instance for the current month.
- Maximum
Limit int - Overrun
Policy string - String enum that identifies action to take when the usage limit is exceeded. If limit span is set to QUERY, this is ignored because MongoDB Cloud stops the query when it exceeds the usage limit. Accepted values are "BLOCK" OR "BLOCK_AND_KILL"
- Project
Id string - The unique ID for the project to create a Federated Database Instance.
- Tenant
Name string - Name of the Atlas Federated Database Instance.
- Value int
- Amount to set the limit to.
- current
Usage Integer - Amount that indicates the current usage of the limit.
- default
Limit Integer - Default value of the limit.
lastModifiedDate
- Only used for Data Federation limits. Timestamp that indicates when this usage limit was last modified. This field uses the ISO 8601 timestamp format in UTC.maximumLimit
- Maximum value of the limit.
- last
Modified StringDate - limit
Name String - String enum that indicates whether the identity provider is active or not. Accepted values are:
bytesProcessed.query
: Limit on the number of bytes processed during a single data federation query.bytesProcessed.daily
: Limit on the number of bytes processed for the data federation instance for the current day.bytesProcessed.weekly
: Limit on the number of bytes processed for the data federation instance for the current week.bytesProcessed.monthly
: Limit on the number of bytes processed for the data federation instance for the current month.
- maximum
Limit Integer - overrun
Policy String - String enum that identifies action to take when the usage limit is exceeded. If limit span is set to QUERY, this is ignored because MongoDB Cloud stops the query when it exceeds the usage limit. Accepted values are "BLOCK" OR "BLOCK_AND_KILL"
- project
Id String - The unique ID for the project to create a Federated Database Instance.
- tenant
Name String - Name of the Atlas Federated Database Instance.
- value Integer
- Amount to set the limit to.
- current
Usage number - Amount that indicates the current usage of the limit.
- default
Limit number - Default value of the limit.
lastModifiedDate
- Only used for Data Federation limits. Timestamp that indicates when this usage limit was last modified. This field uses the ISO 8601 timestamp format in UTC.maximumLimit
- Maximum value of the limit.
- last
Modified stringDate - limit
Name string - String enum that indicates whether the identity provider is active or not. Accepted values are:
bytesProcessed.query
: Limit on the number of bytes processed during a single data federation query.bytesProcessed.daily
: Limit on the number of bytes processed for the data federation instance for the current day.bytesProcessed.weekly
: Limit on the number of bytes processed for the data federation instance for the current week.bytesProcessed.monthly
: Limit on the number of bytes processed for the data federation instance for the current month.
- maximum
Limit number - overrun
Policy string - String enum that identifies action to take when the usage limit is exceeded. If limit span is set to QUERY, this is ignored because MongoDB Cloud stops the query when it exceeds the usage limit. Accepted values are "BLOCK" OR "BLOCK_AND_KILL"
- project
Id string - The unique ID for the project to create a Federated Database Instance.
- tenant
Name string - Name of the Atlas Federated Database Instance.
- value number
- Amount to set the limit to.
- current_
usage int - Amount that indicates the current usage of the limit.
- default_
limit int - Default value of the limit.
lastModifiedDate
- Only used for Data Federation limits. Timestamp that indicates when this usage limit was last modified. This field uses the ISO 8601 timestamp format in UTC.maximumLimit
- Maximum value of the limit.
- last_
modified_ strdate - limit_
name str - String enum that indicates whether the identity provider is active or not. Accepted values are:
bytesProcessed.query
: Limit on the number of bytes processed during a single data federation query.bytesProcessed.daily
: Limit on the number of bytes processed for the data federation instance for the current day.bytesProcessed.weekly
: Limit on the number of bytes processed for the data federation instance for the current week.bytesProcessed.monthly
: Limit on the number of bytes processed for the data federation instance for the current month.
- maximum_
limit int - overrun_
policy str - String enum that identifies action to take when the usage limit is exceeded. If limit span is set to QUERY, this is ignored because MongoDB Cloud stops the query when it exceeds the usage limit. Accepted values are "BLOCK" OR "BLOCK_AND_KILL"
- project_
id str - The unique ID for the project to create a Federated Database Instance.
- tenant_
name str - Name of the Atlas Federated Database Instance.
- value int
- Amount to set the limit to.
- current
Usage Number - Amount that indicates the current usage of the limit.
- default
Limit Number - Default value of the limit.
lastModifiedDate
- Only used for Data Federation limits. Timestamp that indicates when this usage limit was last modified. This field uses the ISO 8601 timestamp format in UTC.maximumLimit
- Maximum value of the limit.
- last
Modified StringDate - limit
Name String - String enum that indicates whether the identity provider is active or not. Accepted values are:
bytesProcessed.query
: Limit on the number of bytes processed during a single data federation query.bytesProcessed.daily
: Limit on the number of bytes processed for the data federation instance for the current day.bytesProcessed.weekly
: Limit on the number of bytes processed for the data federation instance for the current week.bytesProcessed.monthly
: Limit on the number of bytes processed for the data federation instance for the current month.
- maximum
Limit Number - overrun
Policy String - String enum that identifies action to take when the usage limit is exceeded. If limit span is set to QUERY, this is ignored because MongoDB Cloud stops the query when it exceeds the usage limit. Accepted values are "BLOCK" OR "BLOCK_AND_KILL"
- project
Id String - The unique ID for the project to create a Federated Database Instance.
- tenant
Name String - Name of the Atlas Federated Database Instance.
- value Number
- Amount to set the limit to.
Import
The Federated Database Instance Query Limit can be imported using project ID, name of the instance and limit name, in the format:
project_id
–tenant_name
–limit_name
, e.g.
$ pulumi import mongodbatlas:index/federatedQueryLimit:FederatedQueryLimit example 1112222b3bf99403840e8934--FederatedDatabaseInstance0--bytesProcessed.daily
See MongoDB Atlas API Documentation for more information.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- MongoDB Atlas pulumi/pulumi-mongodbatlas
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
mongodbatlas
Terraform Provider.