mongodbatlas.getProjects describes all Projects. This represents projects that have been created.
NOTE: Groups and projects are synonymous terms. You may find
groupIdin the official documentation.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as mongodbatlas from "@pulumi/mongodbatlas";
const test = mongodbatlas.getRolesOrgId({});
const testProject = new mongodbatlas.Project("test", {
name: "project-name",
orgId: test.then(test => test.orgId),
limits: [{
name: "atlas.project.deployment.clusters",
value: 26,
}],
});
const testGetProjects = mongodbatlas.getProjects({
pageNum: 1,
itemsPerPage: 5,
});
import pulumi
import pulumi_mongodbatlas as mongodbatlas
test = mongodbatlas.get_roles_org_id()
test_project = mongodbatlas.Project("test",
name="project-name",
org_id=test.org_id,
limits=[{
"name": "atlas.project.deployment.clusters",
"value": 26,
}])
test_get_projects = mongodbatlas.get_projects(page_num=1,
items_per_page=5)
package main
import (
"github.com/pulumi/pulumi-mongodbatlas/sdk/v4/go/mongodbatlas"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
test, err := mongodbatlas.GetRolesOrgId(ctx, map[string]interface{}{}, nil)
if err != nil {
return err
}
_, err = mongodbatlas.NewProject(ctx, "test", &mongodbatlas.ProjectArgs{
Name: pulumi.String("project-name"),
OrgId: pulumi.String(test.OrgId),
Limits: mongodbatlas.ProjectLimitArray{
&mongodbatlas.ProjectLimitArgs{
Name: pulumi.String("atlas.project.deployment.clusters"),
Value: pulumi.Int(26),
},
},
})
if err != nil {
return err
}
_, err = mongodbatlas.LookupProjects(ctx, &mongodbatlas.LookupProjectsArgs{
PageNum: pulumi.IntRef(1),
ItemsPerPage: pulumi.IntRef(5),
}, 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 test = Mongodbatlas.GetRolesOrgId.Invoke();
var testProject = new Mongodbatlas.Project("test", new()
{
Name = "project-name",
OrgId = test.Apply(getRolesOrgIdResult => getRolesOrgIdResult.OrgId),
Limits = new[]
{
new Mongodbatlas.Inputs.ProjectLimitArgs
{
Name = "atlas.project.deployment.clusters",
Value = 26,
},
},
});
var testGetProjects = Mongodbatlas.GetProjects.Invoke(new()
{
PageNum = 1,
ItemsPerPage = 5,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.mongodbatlas.MongodbatlasFunctions;
import com.pulumi.mongodbatlas.Project;
import com.pulumi.mongodbatlas.ProjectArgs;
import com.pulumi.mongodbatlas.inputs.ProjectLimitArgs;
import com.pulumi.mongodbatlas.inputs.GetProjectsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var test = MongodbatlasFunctions.getRolesOrgId(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference);
var testProject = new Project("testProject", ProjectArgs.builder()
.name("project-name")
.orgId(test.orgId())
.limits(ProjectLimitArgs.builder()
.name("atlas.project.deployment.clusters")
.value(26)
.build())
.build());
final var testGetProjects = MongodbatlasFunctions.getProjects(GetProjectsArgs.builder()
.pageNum(1)
.itemsPerPage(5)
.build());
}
}
resources:
testProject:
type: mongodbatlas:Project
name: test
properties:
name: project-name
orgId: ${test.orgId}
limits:
- name: atlas.project.deployment.clusters
value: 26
variables:
test:
fn::invoke:
function: mongodbatlas:getRolesOrgId
arguments: {}
testGetProjects:
fn::invoke:
function: mongodbatlas:getProjects
arguments:
pageNum: 1
itemsPerPage: 5
Using getProjects
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 getProjects(args: GetProjectsArgs, opts?: InvokeOptions): Promise<GetProjectsResult>
function getProjectsOutput(args: GetProjectsOutputArgs, opts?: InvokeOptions): Output<GetProjectsResult>def get_projects(items_per_page: Optional[int] = None,
page_num: Optional[int] = None,
opts: Optional[InvokeOptions] = None) -> GetProjectsResult
def get_projects_output(items_per_page: Optional[pulumi.Input[int]] = None,
page_num: Optional[pulumi.Input[int]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetProjectsResult]func LookupProjects(ctx *Context, args *LookupProjectsArgs, opts ...InvokeOption) (*LookupProjectsResult, error)
func LookupProjectsOutput(ctx *Context, args *LookupProjectsOutputArgs, opts ...InvokeOption) LookupProjectsResultOutput> Note: This function is named LookupProjects in the Go SDK.
public static class GetProjects
{
public static Task<GetProjectsResult> InvokeAsync(GetProjectsArgs args, InvokeOptions? opts = null)
public static Output<GetProjectsResult> Invoke(GetProjectsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetProjectsResult> getProjects(GetProjectsArgs args, InvokeOptions options)
public static Output<GetProjectsResult> getProjects(GetProjectsArgs args, InvokeOptions options)
fn::invoke:
function: mongodbatlas:index/getProjects:getProjects
arguments:
# arguments dictionaryThe following arguments are supported:
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
getProjects Result
The following output properties are available:
- Id string
- Results
List<Get
Projects Result> - Total
Count int - Items
Per intPage - Page
Num int
- Id string
- Results
[]Get
Projects Result - Total
Count int - Items
Per intPage - Page
Num int
- id String
- results
List<Get
Projects Result> - total
Count Integer - items
Per IntegerPage - page
Num Integer
- id string
- results
Get
Projects Result[] - total
Count number - items
Per numberPage - page
Num number
- id String
- results List<Property Map>
- total
Count Number - items
Per NumberPage - page
Num Number
Supporting Types
GetProjectsResult
- Cluster
Count int - The number of Atlas clusters deployed in the project.
- Created string
- The ISO-8601-formatted timestamp of when Atlas created the project.
- Id string
- Autogenerated Unique ID for this data source.
- Ip
Addresses GetProjects Result Ip Addresses - IP addresses in a project categorized by services. See IP Addresses. WARNING: This attribute is deprecated, use the
mongodbatlas.getProjectIpAddressesdata source instead. - Is
Collect boolDatabase Specifics Statistics Enabled - Flag that indicates whether to enable statistics in cluster metrics collection for the project.
- Is
Data boolExplorer Enabled - Flag that indicates whether to enable Data Explorer for the project. If enabled, you can query your database with an easy to use interface.
- Is
Extended boolStorage Sizes Enabled - Flag that indicates whether to enable extended storage sizes for the specified project.
- Is
Performance boolAdvisor Enabled - Flag that indicates whether to enable Performance Advisor and Profiler for the project. If enabled, you can analyze database logs to recommend performance improvements.
- Is
Realtime boolPerformance Panel Enabled - Flag that indicates whether to enable Real Time Performance Panel for the project. If enabled, you can see real time metrics from your MongoDB database.
- Is
Schema boolAdvisor Enabled - Flag that indicates whether to enable Schema Advisor for the project. If enabled, you receive customized recommendations to optimize your data model and enhance performance. Disable this setting to disable schema suggestions in the Performance Advisor and the Data Explorer.
- Is
Slow boolOperation Thresholding Enabled - Flag that enables MongoDB Cloud to use its slow operation threshold for the specified project. The threshold determines which operations the Performance Advisor and Query Profiler considers slow. When enabled, MongoDB Cloud uses the average execution time for operations on your cluster to determine slow-running queries. As a result, the threshold is more pertinent to your cluster workload. The slow operation threshold is enabled by default for dedicated clusters (M10+). When disabled, MongoDB Cloud considers any operation that takes longer than 100 milliseconds to be slow. Note: To use this attribute, the requesting API Key must have the Project Owner role, if not it will show a warning and will return
false. If you are not using this field, you don't need to take any action. - Limits
List<Get
Projects Result Limit> - The limits for the specified project. See Limits.
- Org
Id string - The ID of the organization you want to create the project within.
- Region
Usage stringRestrictions - If GOV_REGIONS_ONLY the project can be used for government regions only, otherwise defaults to standard regions. For more information see MongoDB Atlas for Government.
- Dictionary<string, string>
- Map that contains key-value pairs between 1 to 255 characters in length for tagging and categorizing the project. To learn more, see Resource Tags
- Teams
List<Get
Projects Result Team> - (DEPRECATED) Returns all teams to which the authenticated user has access in the project. See Teams.
- Users
List<Get
Projects Result User> - Returns list of all pending and active MongoDB Cloud users associated with the specified project.
- Name string
- Project
Id string - Unique 24-hexadecimal digit string that identifies the MongoDB Cloud project.
- Cluster
Count int - The number of Atlas clusters deployed in the project.
- Created string
- The ISO-8601-formatted timestamp of when Atlas created the project.
- Id string
- Autogenerated Unique ID for this data source.
- Ip
Addresses GetProjects Result Ip Addresses - IP addresses in a project categorized by services. See IP Addresses. WARNING: This attribute is deprecated, use the
mongodbatlas.getProjectIpAddressesdata source instead. - Is
Collect boolDatabase Specifics Statistics Enabled - Flag that indicates whether to enable statistics in cluster metrics collection for the project.
- Is
Data boolExplorer Enabled - Flag that indicates whether to enable Data Explorer for the project. If enabled, you can query your database with an easy to use interface.
- Is
Extended boolStorage Sizes Enabled - Flag that indicates whether to enable extended storage sizes for the specified project.
- Is
Performance boolAdvisor Enabled - Flag that indicates whether to enable Performance Advisor and Profiler for the project. If enabled, you can analyze database logs to recommend performance improvements.
- Is
Realtime boolPerformance Panel Enabled - Flag that indicates whether to enable Real Time Performance Panel for the project. If enabled, you can see real time metrics from your MongoDB database.
- Is
Schema boolAdvisor Enabled - Flag that indicates whether to enable Schema Advisor for the project. If enabled, you receive customized recommendations to optimize your data model and enhance performance. Disable this setting to disable schema suggestions in the Performance Advisor and the Data Explorer.
- Is
Slow boolOperation Thresholding Enabled - Flag that enables MongoDB Cloud to use its slow operation threshold for the specified project. The threshold determines which operations the Performance Advisor and Query Profiler considers slow. When enabled, MongoDB Cloud uses the average execution time for operations on your cluster to determine slow-running queries. As a result, the threshold is more pertinent to your cluster workload. The slow operation threshold is enabled by default for dedicated clusters (M10+). When disabled, MongoDB Cloud considers any operation that takes longer than 100 milliseconds to be slow. Note: To use this attribute, the requesting API Key must have the Project Owner role, if not it will show a warning and will return
false. If you are not using this field, you don't need to take any action. - Limits
[]Get
Projects Result Limit - The limits for the specified project. See Limits.
- Org
Id string - The ID of the organization you want to create the project within.
- Region
Usage stringRestrictions - If GOV_REGIONS_ONLY the project can be used for government regions only, otherwise defaults to standard regions. For more information see MongoDB Atlas for Government.
- map[string]string
- Map that contains key-value pairs between 1 to 255 characters in length for tagging and categorizing the project. To learn more, see Resource Tags
- Teams
[]Get
Projects Result Team - (DEPRECATED) Returns all teams to which the authenticated user has access in the project. See Teams.
- Users
[]Get
Projects Result User - Returns list of all pending and active MongoDB Cloud users associated with the specified project.
- Name string
- Project
Id string - Unique 24-hexadecimal digit string that identifies the MongoDB Cloud project.
- cluster
Count Integer - The number of Atlas clusters deployed in the project.
- created String
- The ISO-8601-formatted timestamp of when Atlas created the project.
- id String
- Autogenerated Unique ID for this data source.
- ip
Addresses GetProjects Result Ip Addresses - IP addresses in a project categorized by services. See IP Addresses. WARNING: This attribute is deprecated, use the
mongodbatlas.getProjectIpAddressesdata source instead. - is
Collect BooleanDatabase Specifics Statistics Enabled - Flag that indicates whether to enable statistics in cluster metrics collection for the project.
- is
Data BooleanExplorer Enabled - Flag that indicates whether to enable Data Explorer for the project. If enabled, you can query your database with an easy to use interface.
- is
Extended BooleanStorage Sizes Enabled - Flag that indicates whether to enable extended storage sizes for the specified project.
- is
Performance BooleanAdvisor Enabled - Flag that indicates whether to enable Performance Advisor and Profiler for the project. If enabled, you can analyze database logs to recommend performance improvements.
- is
Realtime BooleanPerformance Panel Enabled - Flag that indicates whether to enable Real Time Performance Panel for the project. If enabled, you can see real time metrics from your MongoDB database.
- is
Schema BooleanAdvisor Enabled - Flag that indicates whether to enable Schema Advisor for the project. If enabled, you receive customized recommendations to optimize your data model and enhance performance. Disable this setting to disable schema suggestions in the Performance Advisor and the Data Explorer.
- is
Slow BooleanOperation Thresholding Enabled - Flag that enables MongoDB Cloud to use its slow operation threshold for the specified project. The threshold determines which operations the Performance Advisor and Query Profiler considers slow. When enabled, MongoDB Cloud uses the average execution time for operations on your cluster to determine slow-running queries. As a result, the threshold is more pertinent to your cluster workload. The slow operation threshold is enabled by default for dedicated clusters (M10+). When disabled, MongoDB Cloud considers any operation that takes longer than 100 milliseconds to be slow. Note: To use this attribute, the requesting API Key must have the Project Owner role, if not it will show a warning and will return
false. If you are not using this field, you don't need to take any action. - limits
List<Get
Projects Result Limit> - The limits for the specified project. See Limits.
- org
Id String - The ID of the organization you want to create the project within.
- region
Usage StringRestrictions - If GOV_REGIONS_ONLY the project can be used for government regions only, otherwise defaults to standard regions. For more information see MongoDB Atlas for Government.
- Map<String,String>
- Map that contains key-value pairs between 1 to 255 characters in length for tagging and categorizing the project. To learn more, see Resource Tags
- teams
List<Get
Projects Result Team> - (DEPRECATED) Returns all teams to which the authenticated user has access in the project. See Teams.
- users
List<Get
Projects Result User> - Returns list of all pending and active MongoDB Cloud users associated with the specified project.
- name String
- project
Id String - Unique 24-hexadecimal digit string that identifies the MongoDB Cloud project.
- cluster
Count number - The number of Atlas clusters deployed in the project.
- created string
- The ISO-8601-formatted timestamp of when Atlas created the project.
- id string
- Autogenerated Unique ID for this data source.
- ip
Addresses GetProjects Result Ip Addresses - IP addresses in a project categorized by services. See IP Addresses. WARNING: This attribute is deprecated, use the
mongodbatlas.getProjectIpAddressesdata source instead. - is
Collect booleanDatabase Specifics Statistics Enabled - Flag that indicates whether to enable statistics in cluster metrics collection for the project.
- is
Data booleanExplorer Enabled - Flag that indicates whether to enable Data Explorer for the project. If enabled, you can query your database with an easy to use interface.
- is
Extended booleanStorage Sizes Enabled - Flag that indicates whether to enable extended storage sizes for the specified project.
- is
Performance booleanAdvisor Enabled - Flag that indicates whether to enable Performance Advisor and Profiler for the project. If enabled, you can analyze database logs to recommend performance improvements.
- is
Realtime booleanPerformance Panel Enabled - Flag that indicates whether to enable Real Time Performance Panel for the project. If enabled, you can see real time metrics from your MongoDB database.
- is
Schema booleanAdvisor Enabled - Flag that indicates whether to enable Schema Advisor for the project. If enabled, you receive customized recommendations to optimize your data model and enhance performance. Disable this setting to disable schema suggestions in the Performance Advisor and the Data Explorer.
- is
Slow booleanOperation Thresholding Enabled - Flag that enables MongoDB Cloud to use its slow operation threshold for the specified project. The threshold determines which operations the Performance Advisor and Query Profiler considers slow. When enabled, MongoDB Cloud uses the average execution time for operations on your cluster to determine slow-running queries. As a result, the threshold is more pertinent to your cluster workload. The slow operation threshold is enabled by default for dedicated clusters (M10+). When disabled, MongoDB Cloud considers any operation that takes longer than 100 milliseconds to be slow. Note: To use this attribute, the requesting API Key must have the Project Owner role, if not it will show a warning and will return
false. If you are not using this field, you don't need to take any action. - limits
Get
Projects Result Limit[] - The limits for the specified project. See Limits.
- org
Id string - The ID of the organization you want to create the project within.
- region
Usage stringRestrictions - If GOV_REGIONS_ONLY the project can be used for government regions only, otherwise defaults to standard regions. For more information see MongoDB Atlas for Government.
- {[key: string]: string}
- Map that contains key-value pairs between 1 to 255 characters in length for tagging and categorizing the project. To learn more, see Resource Tags
- teams
Get
Projects Result Team[] - (DEPRECATED) Returns all teams to which the authenticated user has access in the project. See Teams.
- users
Get
Projects Result User[] - Returns list of all pending and active MongoDB Cloud users associated with the specified project.
- name string
- project
Id string - Unique 24-hexadecimal digit string that identifies the MongoDB Cloud project.
- cluster_
count int - The number of Atlas clusters deployed in the project.
- created str
- The ISO-8601-formatted timestamp of when Atlas created the project.
- id str
- Autogenerated Unique ID for this data source.
- ip_
addresses GetProjects Result Ip Addresses - IP addresses in a project categorized by services. See IP Addresses. WARNING: This attribute is deprecated, use the
mongodbatlas.getProjectIpAddressesdata source instead. - is_
collect_ booldatabase_ specifics_ statistics_ enabled - Flag that indicates whether to enable statistics in cluster metrics collection for the project.
- is_
data_ boolexplorer_ enabled - Flag that indicates whether to enable Data Explorer for the project. If enabled, you can query your database with an easy to use interface.
- is_
extended_ boolstorage_ sizes_ enabled - Flag that indicates whether to enable extended storage sizes for the specified project.
- is_
performance_ booladvisor_ enabled - Flag that indicates whether to enable Performance Advisor and Profiler for the project. If enabled, you can analyze database logs to recommend performance improvements.
- is_
realtime_ boolperformance_ panel_ enabled - Flag that indicates whether to enable Real Time Performance Panel for the project. If enabled, you can see real time metrics from your MongoDB database.
- is_
schema_ booladvisor_ enabled - Flag that indicates whether to enable Schema Advisor for the project. If enabled, you receive customized recommendations to optimize your data model and enhance performance. Disable this setting to disable schema suggestions in the Performance Advisor and the Data Explorer.
- is_
slow_ booloperation_ thresholding_ enabled - Flag that enables MongoDB Cloud to use its slow operation threshold for the specified project. The threshold determines which operations the Performance Advisor and Query Profiler considers slow. When enabled, MongoDB Cloud uses the average execution time for operations on your cluster to determine slow-running queries. As a result, the threshold is more pertinent to your cluster workload. The slow operation threshold is enabled by default for dedicated clusters (M10+). When disabled, MongoDB Cloud considers any operation that takes longer than 100 milliseconds to be slow. Note: To use this attribute, the requesting API Key must have the Project Owner role, if not it will show a warning and will return
false. If you are not using this field, you don't need to take any action. - limits
Sequence[Get
Projects Result Limit] - The limits for the specified project. See Limits.
- org_
id str - The ID of the organization you want to create the project within.
- region_
usage_ strrestrictions - If GOV_REGIONS_ONLY the project can be used for government regions only, otherwise defaults to standard regions. For more information see MongoDB Atlas for Government.
- Mapping[str, str]
- Map that contains key-value pairs between 1 to 255 characters in length for tagging and categorizing the project. To learn more, see Resource Tags
- teams
Sequence[Get
Projects Result Team] - (DEPRECATED) Returns all teams to which the authenticated user has access in the project. See Teams.
- users
Sequence[Get
Projects Result User] - Returns list of all pending and active MongoDB Cloud users associated with the specified project.
- name str
- project_
id str - Unique 24-hexadecimal digit string that identifies the MongoDB Cloud project.
- cluster
Count Number - The number of Atlas clusters deployed in the project.
- created String
- The ISO-8601-formatted timestamp of when Atlas created the project.
- id String
- Autogenerated Unique ID for this data source.
- ip
Addresses Property Map - IP addresses in a project categorized by services. See IP Addresses. WARNING: This attribute is deprecated, use the
mongodbatlas.getProjectIpAddressesdata source instead. - is
Collect BooleanDatabase Specifics Statistics Enabled - Flag that indicates whether to enable statistics in cluster metrics collection for the project.
- is
Data BooleanExplorer Enabled - Flag that indicates whether to enable Data Explorer for the project. If enabled, you can query your database with an easy to use interface.
- is
Extended BooleanStorage Sizes Enabled - Flag that indicates whether to enable extended storage sizes for the specified project.
- is
Performance BooleanAdvisor Enabled - Flag that indicates whether to enable Performance Advisor and Profiler for the project. If enabled, you can analyze database logs to recommend performance improvements.
- is
Realtime BooleanPerformance Panel Enabled - Flag that indicates whether to enable Real Time Performance Panel for the project. If enabled, you can see real time metrics from your MongoDB database.
- is
Schema BooleanAdvisor Enabled - Flag that indicates whether to enable Schema Advisor for the project. If enabled, you receive customized recommendations to optimize your data model and enhance performance. Disable this setting to disable schema suggestions in the Performance Advisor and the Data Explorer.
- is
Slow BooleanOperation Thresholding Enabled - Flag that enables MongoDB Cloud to use its slow operation threshold for the specified project. The threshold determines which operations the Performance Advisor and Query Profiler considers slow. When enabled, MongoDB Cloud uses the average execution time for operations on your cluster to determine slow-running queries. As a result, the threshold is more pertinent to your cluster workload. The slow operation threshold is enabled by default for dedicated clusters (M10+). When disabled, MongoDB Cloud considers any operation that takes longer than 100 milliseconds to be slow. Note: To use this attribute, the requesting API Key must have the Project Owner role, if not it will show a warning and will return
false. If you are not using this field, you don't need to take any action. - limits List<Property Map>
- The limits for the specified project. See Limits.
- org
Id String - The ID of the organization you want to create the project within.
- region
Usage StringRestrictions - If GOV_REGIONS_ONLY the project can be used for government regions only, otherwise defaults to standard regions. For more information see MongoDB Atlas for Government.
- Map<String>
- Map that contains key-value pairs between 1 to 255 characters in length for tagging and categorizing the project. To learn more, see Resource Tags
- teams List<Property Map>
- (DEPRECATED) Returns all teams to which the authenticated user has access in the project. See Teams.
- users List<Property Map>
- Returns list of all pending and active MongoDB Cloud users associated with the specified project.
- name String
- project
Id String - Unique 24-hexadecimal digit string that identifies the MongoDB Cloud project.
GetProjectsResultIpAddresses
GetProjectsResultIpAddressesServices
GetProjectsResultIpAddressesServicesCluster
- Cluster
Name string - Inbounds List<string>
- Outbounds List<string>
- Cluster
Name string - Inbounds []string
- Outbounds []string
- cluster
Name String - inbounds List<String>
- outbounds List<String>
- cluster
Name string - inbounds string[]
- outbounds string[]
- cluster_
name str - inbounds Sequence[str]
- outbounds Sequence[str]
- cluster
Name String - inbounds List<String>
- outbounds List<String>
GetProjectsResultLimit
- Current
Usage int - Amount that indicates the current usage of the limit.
- Default
Limit int - Default value of the limit.
- Maximum
Limit int - Maximum value of the limit.
- Name string
- Human-readable label that identifies this project limit.
- Value int
- Amount the limit is set to.
- Current
Usage int - Amount that indicates the current usage of the limit.
- Default
Limit int - Default value of the limit.
- Maximum
Limit int - Maximum value of the limit.
- Name string
- Human-readable label that identifies this project limit.
- Value int
- Amount the limit is set to.
- current
Usage Integer - Amount that indicates the current usage of the limit.
- default
Limit Integer - Default value of the limit.
- maximum
Limit Integer - Maximum value of the limit.
- name String
- Human-readable label that identifies this project limit.
- value Integer
- Amount the limit is set to.
- current
Usage number - Amount that indicates the current usage of the limit.
- default
Limit number - Default value of the limit.
- maximum
Limit number - Maximum value of the limit.
- name string
- Human-readable label that identifies this project limit.
- value number
- Amount the limit is set to.
- current_
usage int - Amount that indicates the current usage of the limit.
- default_
limit int - Default value of the limit.
- maximum_
limit int - Maximum value of the limit.
- name str
- Human-readable label that identifies this project limit.
- value int
- Amount the limit is set to.
- current
Usage Number - Amount that indicates the current usage of the limit.
- default
Limit Number - Default value of the limit.
- maximum
Limit Number - Maximum value of the limit.
- name String
- Human-readable label that identifies this project limit.
- value Number
- Amount the limit is set to.
GetProjectsResultTeam
- Role
Names List<string> - Each string in the array represents a project role assigned to the team. Every user associated with the team inherits these roles. The MongoDB Documentation describes the roles a user can have.
- Team
Id string - The unique identifier of the team you want to associate with the project. The team and project must share the same parent organization.
- Role
Names []string - Each string in the array represents a project role assigned to the team. Every user associated with the team inherits these roles. The MongoDB Documentation describes the roles a user can have.
- Team
Id string - The unique identifier of the team you want to associate with the project. The team and project must share the same parent organization.
- role
Names List<String> - Each string in the array represents a project role assigned to the team. Every user associated with the team inherits these roles. The MongoDB Documentation describes the roles a user can have.
- team
Id String - The unique identifier of the team you want to associate with the project. The team and project must share the same parent organization.
- role
Names string[] - Each string in the array represents a project role assigned to the team. Every user associated with the team inherits these roles. The MongoDB Documentation describes the roles a user can have.
- team
Id string - The unique identifier of the team you want to associate with the project. The team and project must share the same parent organization.
- role_
names Sequence[str] - Each string in the array represents a project role assigned to the team. Every user associated with the team inherits these roles. The MongoDB Documentation describes the roles a user can have.
- team_
id str - The unique identifier of the team you want to associate with the project. The team and project must share the same parent organization.
- role
Names List<String> - Each string in the array represents a project role assigned to the team. Every user associated with the team inherits these roles. The MongoDB Documentation describes the roles a user can have.
- team
Id String - The unique identifier of the team you want to associate with the project. The team and project must share the same parent organization.
GetProjectsResultUser
- Country string
Two-character alphabetical string that identifies the MongoDB Cloud user's geographic location. This parameter uses the ISO 3166-1a2 code format.
createdAt- Date and time when MongoDB Cloud created the current account. This value is in the ISO 8601 timestamp format in UTC.firstName- First or given name that belongs to the MongoDB Cloud user.lastAuth- Date and time when the current account last authenticated. This value is in the ISO 8601 timestamp format in UTC.lastName- Last name, family name, or surname that belongs to the MongoDB Cloud user.mobileNumber- Mobile phone number that belongs to the MongoDB Cloud user.
NOTE: - Does not return pending users invited via the deprecated Invite One MongoDB Cloud User to Join One Project endpoint or pending invitations created using
mongodbatlas.ProjectInvitationresource.See MongoDB Atlas API - Projects Documentation for more information.
- Created
At string - First
Name string - Id string
- Unique 24-hexadecimal digit string that identifies the MongoDB Cloud user.
orgMembershipStatus- String enum that indicates whether the MongoDB Cloud user has a pending invitation to join the organization or they are already active in the organization.
- Invitation
Created stringAt - Invitation
Expires stringAt - Inviter
Username string - Last
Auth string - Last
Name string - Mobile
Number string - Org
Membership stringStatus - Roles List<string>
- One or more project-level roles assigned to the MongoDB Cloud user.
- Username string
- Email address that represents the username of the MongoDB Cloud user.
- Country string
Two-character alphabetical string that identifies the MongoDB Cloud user's geographic location. This parameter uses the ISO 3166-1a2 code format.
createdAt- Date and time when MongoDB Cloud created the current account. This value is in the ISO 8601 timestamp format in UTC.firstName- First or given name that belongs to the MongoDB Cloud user.lastAuth- Date and time when the current account last authenticated. This value is in the ISO 8601 timestamp format in UTC.lastName- Last name, family name, or surname that belongs to the MongoDB Cloud user.mobileNumber- Mobile phone number that belongs to the MongoDB Cloud user.
NOTE: - Does not return pending users invited via the deprecated Invite One MongoDB Cloud User to Join One Project endpoint or pending invitations created using
mongodbatlas.ProjectInvitationresource.See MongoDB Atlas API - Projects Documentation for more information.
- Created
At string - First
Name string - Id string
- Unique 24-hexadecimal digit string that identifies the MongoDB Cloud user.
orgMembershipStatus- String enum that indicates whether the MongoDB Cloud user has a pending invitation to join the organization or they are already active in the organization.
- Invitation
Created stringAt - Invitation
Expires stringAt - Inviter
Username string - Last
Auth string - Last
Name string - Mobile
Number string - Org
Membership stringStatus - Roles []string
- One or more project-level roles assigned to the MongoDB Cloud user.
- Username string
- Email address that represents the username of the MongoDB Cloud user.
- country String
Two-character alphabetical string that identifies the MongoDB Cloud user's geographic location. This parameter uses the ISO 3166-1a2 code format.
createdAt- Date and time when MongoDB Cloud created the current account. This value is in the ISO 8601 timestamp format in UTC.firstName- First or given name that belongs to the MongoDB Cloud user.lastAuth- Date and time when the current account last authenticated. This value is in the ISO 8601 timestamp format in UTC.lastName- Last name, family name, or surname that belongs to the MongoDB Cloud user.mobileNumber- Mobile phone number that belongs to the MongoDB Cloud user.
NOTE: - Does not return pending users invited via the deprecated Invite One MongoDB Cloud User to Join One Project endpoint or pending invitations created using
mongodbatlas.ProjectInvitationresource.See MongoDB Atlas API - Projects Documentation for more information.
- created
At String - first
Name String - id String
- Unique 24-hexadecimal digit string that identifies the MongoDB Cloud user.
orgMembershipStatus- String enum that indicates whether the MongoDB Cloud user has a pending invitation to join the organization or they are already active in the organization.
- invitation
Created StringAt - invitation
Expires StringAt - inviter
Username String - last
Auth String - last
Name String - mobile
Number String - org
Membership StringStatus - roles List<String>
- One or more project-level roles assigned to the MongoDB Cloud user.
- username String
- Email address that represents the username of the MongoDB Cloud user.
- country string
Two-character alphabetical string that identifies the MongoDB Cloud user's geographic location. This parameter uses the ISO 3166-1a2 code format.
createdAt- Date and time when MongoDB Cloud created the current account. This value is in the ISO 8601 timestamp format in UTC.firstName- First or given name that belongs to the MongoDB Cloud user.lastAuth- Date and time when the current account last authenticated. This value is in the ISO 8601 timestamp format in UTC.lastName- Last name, family name, or surname that belongs to the MongoDB Cloud user.mobileNumber- Mobile phone number that belongs to the MongoDB Cloud user.
NOTE: - Does not return pending users invited via the deprecated Invite One MongoDB Cloud User to Join One Project endpoint or pending invitations created using
mongodbatlas.ProjectInvitationresource.See MongoDB Atlas API - Projects Documentation for more information.
- created
At string - first
Name string - id string
- Unique 24-hexadecimal digit string that identifies the MongoDB Cloud user.
orgMembershipStatus- String enum that indicates whether the MongoDB Cloud user has a pending invitation to join the organization or they are already active in the organization.
- invitation
Created stringAt - invitation
Expires stringAt - inviter
Username string - last
Auth string - last
Name string - mobile
Number string - org
Membership stringStatus - roles string[]
- One or more project-level roles assigned to the MongoDB Cloud user.
- username string
- Email address that represents the username of the MongoDB Cloud user.
- country str
Two-character alphabetical string that identifies the MongoDB Cloud user's geographic location. This parameter uses the ISO 3166-1a2 code format.
createdAt- Date and time when MongoDB Cloud created the current account. This value is in the ISO 8601 timestamp format in UTC.firstName- First or given name that belongs to the MongoDB Cloud user.lastAuth- Date and time when the current account last authenticated. This value is in the ISO 8601 timestamp format in UTC.lastName- Last name, family name, or surname that belongs to the MongoDB Cloud user.mobileNumber- Mobile phone number that belongs to the MongoDB Cloud user.
NOTE: - Does not return pending users invited via the deprecated Invite One MongoDB Cloud User to Join One Project endpoint or pending invitations created using
mongodbatlas.ProjectInvitationresource.See MongoDB Atlas API - Projects Documentation for more information.
- created_
at str - first_
name str - id str
- Unique 24-hexadecimal digit string that identifies the MongoDB Cloud user.
orgMembershipStatus- String enum that indicates whether the MongoDB Cloud user has a pending invitation to join the organization or they are already active in the organization.
- invitation_
created_ strat - invitation_
expires_ strat - inviter_
username str - last_
auth str - last_
name str - mobile_
number str - org_
membership_ strstatus - roles Sequence[str]
- One or more project-level roles assigned to the MongoDB Cloud user.
- username str
- Email address that represents the username of the MongoDB Cloud user.
- country String
Two-character alphabetical string that identifies the MongoDB Cloud user's geographic location. This parameter uses the ISO 3166-1a2 code format.
createdAt- Date and time when MongoDB Cloud created the current account. This value is in the ISO 8601 timestamp format in UTC.firstName- First or given name that belongs to the MongoDB Cloud user.lastAuth- Date and time when the current account last authenticated. This value is in the ISO 8601 timestamp format in UTC.lastName- Last name, family name, or surname that belongs to the MongoDB Cloud user.mobileNumber- Mobile phone number that belongs to the MongoDB Cloud user.
NOTE: - Does not return pending users invited via the deprecated Invite One MongoDB Cloud User to Join One Project endpoint or pending invitations created using
mongodbatlas.ProjectInvitationresource.See MongoDB Atlas API - Projects Documentation for more information.
- created
At String - first
Name String - id String
- Unique 24-hexadecimal digit string that identifies the MongoDB Cloud user.
orgMembershipStatus- String enum that indicates whether the MongoDB Cloud user has a pending invitation to join the organization or they are already active in the organization.
- invitation
Created StringAt - invitation
Expires StringAt - inviter
Username String - last
Auth String - last
Name String - mobile
Number String - org
Membership StringStatus - roles List<String>
- One or more project-level roles assigned to the MongoDB Cloud user.
- username String
- Email address that represents the username of the MongoDB Cloud user.
Package Details
- Repository
- MongoDB Atlas pulumi/pulumi-mongodbatlas
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
mongodbatlasTerraform Provider.
