openstack.compute.QuotaSetV2
Explore with Pulumi AI
Manages a V2 compute quotaset resource within OpenStack.
Note: This usually requires admin privileges.
Note: This resource has a no-op deletion so no actual actions will be done against the OpenStack API in case of delete call.
Note: This resource has all-in creation so all optional quota arguments that were not specified are created with zero value.
Create QuotaSetV2 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new QuotaSetV2(name: string, args: QuotaSetV2Args, opts?: CustomResourceOptions);@overload
def QuotaSetV2(resource_name: str,
               args: QuotaSetV2Args,
               opts: Optional[ResourceOptions] = None)
@overload
def QuotaSetV2(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               project_id: Optional[str] = None,
               metadata_items: Optional[int] = None,
               fixed_ips: Optional[int] = None,
               injected_file_content_bytes: Optional[int] = None,
               injected_file_path_bytes: Optional[int] = None,
               injected_files: Optional[int] = None,
               instances: Optional[int] = None,
               floating_ips: Optional[int] = None,
               cores: Optional[int] = None,
               key_pairs: Optional[int] = None,
               ram: Optional[int] = None,
               region: Optional[str] = None,
               security_group_rules: Optional[int] = None,
               security_groups: Optional[int] = None,
               server_group_members: Optional[int] = None,
               server_groups: Optional[int] = None)func NewQuotaSetV2(ctx *Context, name string, args QuotaSetV2Args, opts ...ResourceOption) (*QuotaSetV2, error)public QuotaSetV2(string name, QuotaSetV2Args args, CustomResourceOptions? opts = null)
public QuotaSetV2(String name, QuotaSetV2Args args)
public QuotaSetV2(String name, QuotaSetV2Args args, CustomResourceOptions options)
type: openstack:compute:QuotaSetV2
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 QuotaSetV2Args
- 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 QuotaSetV2Args
- 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 QuotaSetV2Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args QuotaSetV2Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args QuotaSetV2Args
- 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 quotaSetV2Resource = new OpenStack.Compute.QuotaSetV2("quotaSetV2Resource", new()
{
    ProjectId = "string",
    MetadataItems = 0,
    FixedIps = 0,
    InjectedFileContentBytes = 0,
    InjectedFilePathBytes = 0,
    InjectedFiles = 0,
    Instances = 0,
    FloatingIps = 0,
    Cores = 0,
    KeyPairs = 0,
    Ram = 0,
    Region = "string",
    SecurityGroupRules = 0,
    SecurityGroups = 0,
    ServerGroupMembers = 0,
    ServerGroups = 0,
});
example, err := compute.NewQuotaSetV2(ctx, "quotaSetV2Resource", &compute.QuotaSetV2Args{
	ProjectId:                pulumi.String("string"),
	MetadataItems:            pulumi.Int(0),
	FixedIps:                 pulumi.Int(0),
	InjectedFileContentBytes: pulumi.Int(0),
	InjectedFilePathBytes:    pulumi.Int(0),
	InjectedFiles:            pulumi.Int(0),
	Instances:                pulumi.Int(0),
	FloatingIps:              pulumi.Int(0),
	Cores:                    pulumi.Int(0),
	KeyPairs:                 pulumi.Int(0),
	Ram:                      pulumi.Int(0),
	Region:                   pulumi.String("string"),
	SecurityGroupRules:       pulumi.Int(0),
	SecurityGroups:           pulumi.Int(0),
	ServerGroupMembers:       pulumi.Int(0),
	ServerGroups:             pulumi.Int(0),
})
var quotaSetV2Resource = new QuotaSetV2("quotaSetV2Resource", QuotaSetV2Args.builder()
    .projectId("string")
    .metadataItems(0)
    .fixedIps(0)
    .injectedFileContentBytes(0)
    .injectedFilePathBytes(0)
    .injectedFiles(0)
    .instances(0)
    .floatingIps(0)
    .cores(0)
    .keyPairs(0)
    .ram(0)
    .region("string")
    .securityGroupRules(0)
    .securityGroups(0)
    .serverGroupMembers(0)
    .serverGroups(0)
    .build());
quota_set_v2_resource = openstack.compute.QuotaSetV2("quotaSetV2Resource",
    project_id="string",
    metadata_items=0,
    fixed_ips=0,
    injected_file_content_bytes=0,
    injected_file_path_bytes=0,
    injected_files=0,
    instances=0,
    floating_ips=0,
    cores=0,
    key_pairs=0,
    ram=0,
    region="string",
    security_group_rules=0,
    security_groups=0,
    server_group_members=0,
    server_groups=0)
const quotaSetV2Resource = new openstack.compute.QuotaSetV2("quotaSetV2Resource", {
    projectId: "string",
    metadataItems: 0,
    fixedIps: 0,
    injectedFileContentBytes: 0,
    injectedFilePathBytes: 0,
    injectedFiles: 0,
    instances: 0,
    floatingIps: 0,
    cores: 0,
    keyPairs: 0,
    ram: 0,
    region: "string",
    securityGroupRules: 0,
    securityGroups: 0,
    serverGroupMembers: 0,
    serverGroups: 0,
});
type: openstack:compute:QuotaSetV2
properties:
    cores: 0
    fixedIps: 0
    floatingIps: 0
    injectedFileContentBytes: 0
    injectedFilePathBytes: 0
    injectedFiles: 0
    instances: 0
    keyPairs: 0
    metadataItems: 0
    projectId: string
    ram: 0
    region: string
    securityGroupRules: 0
    securityGroups: 0
    serverGroupMembers: 0
    serverGroups: 0
QuotaSetV2 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 QuotaSetV2 resource accepts the following input properties:
- ProjectId string
- ID of the project to manage quotas. Changing this creates a new quotaset.
- Cores int
- Quota value for cores. Changing this updates the existing quotaset.
- FixedIps int
- Quota value for fixed IPs. Changing this updates the existing quotaset.
- FloatingIps int
- Quota value for floating IPs. Changing this updates the existing quotaset.
- InjectedFile intContent Bytes 
- Quota value for content bytes of injected files. Changing this updates the existing quotaset.
- InjectedFile intPath Bytes 
- Quota value for path bytes of injected files. Changing this updates the existing quotaset.
- InjectedFiles int
- Quota value for injected files. Changing this updates the existing quotaset.
- Instances int
- Quota value for instances. Changing this updates the existing quotaset.
- KeyPairs int
- Quota value for key pairs. Changing this updates the existing quotaset.
- MetadataItems int
- Quota value for metadata items. Changing this updates the existing quotaset.
- Ram int
- Quota value for RAM. Changing this updates the existing quotaset.
- Region string
- The region in which to create the volume. If
omitted, the regionargument of the provider is used. Changing this creates a new quotaset.
- SecurityGroup intRules 
- Quota value for security group rules. Changing this updates the existing quotaset.
- SecurityGroups int
- Quota value for security groups. Changing this updates the existing quotaset.
- ServerGroup intMembers 
- Quota value for server groups members. Changing this updates the existing quotaset.
- ServerGroups int
- Quota value for server groups. Changing this updates the existing quotaset.
- ProjectId string
- ID of the project to manage quotas. Changing this creates a new quotaset.
- Cores int
- Quota value for cores. Changing this updates the existing quotaset.
- FixedIps int
- Quota value for fixed IPs. Changing this updates the existing quotaset.
- FloatingIps int
- Quota value for floating IPs. Changing this updates the existing quotaset.
- InjectedFile intContent Bytes 
- Quota value for content bytes of injected files. Changing this updates the existing quotaset.
- InjectedFile intPath Bytes 
- Quota value for path bytes of injected files. Changing this updates the existing quotaset.
- InjectedFiles int
- Quota value for injected files. Changing this updates the existing quotaset.
- Instances int
- Quota value for instances. Changing this updates the existing quotaset.
- KeyPairs int
- Quota value for key pairs. Changing this updates the existing quotaset.
- MetadataItems int
- Quota value for metadata items. Changing this updates the existing quotaset.
- Ram int
- Quota value for RAM. Changing this updates the existing quotaset.
- Region string
- The region in which to create the volume. If
omitted, the regionargument of the provider is used. Changing this creates a new quotaset.
- SecurityGroup intRules 
- Quota value for security group rules. Changing this updates the existing quotaset.
- SecurityGroups int
- Quota value for security groups. Changing this updates the existing quotaset.
- ServerGroup intMembers 
- Quota value for server groups members. Changing this updates the existing quotaset.
- ServerGroups int
- Quota value for server groups. Changing this updates the existing quotaset.
- projectId String
- ID of the project to manage quotas. Changing this creates a new quotaset.
- cores Integer
- Quota value for cores. Changing this updates the existing quotaset.
- fixedIps Integer
- Quota value for fixed IPs. Changing this updates the existing quotaset.
- floatingIps Integer
- Quota value for floating IPs. Changing this updates the existing quotaset.
- injectedFile IntegerContent Bytes 
- Quota value for content bytes of injected files. Changing this updates the existing quotaset.
- injectedFile IntegerPath Bytes 
- Quota value for path bytes of injected files. Changing this updates the existing quotaset.
- injectedFiles Integer
- Quota value for injected files. Changing this updates the existing quotaset.
- instances Integer
- Quota value for instances. Changing this updates the existing quotaset.
- keyPairs Integer
- Quota value for key pairs. Changing this updates the existing quotaset.
- metadataItems Integer
- Quota value for metadata items. Changing this updates the existing quotaset.
- ram Integer
- Quota value for RAM. Changing this updates the existing quotaset.
- region String
- The region in which to create the volume. If
omitted, the regionargument of the provider is used. Changing this creates a new quotaset.
- securityGroup IntegerRules 
- Quota value for security group rules. Changing this updates the existing quotaset.
- securityGroups Integer
- Quota value for security groups. Changing this updates the existing quotaset.
- serverGroup IntegerMembers 
- Quota value for server groups members. Changing this updates the existing quotaset.
- serverGroups Integer
- Quota value for server groups. Changing this updates the existing quotaset.
- projectId string
- ID of the project to manage quotas. Changing this creates a new quotaset.
- cores number
- Quota value for cores. Changing this updates the existing quotaset.
- fixedIps number
- Quota value for fixed IPs. Changing this updates the existing quotaset.
- floatingIps number
- Quota value for floating IPs. Changing this updates the existing quotaset.
- injectedFile numberContent Bytes 
- Quota value for content bytes of injected files. Changing this updates the existing quotaset.
- injectedFile numberPath Bytes 
- Quota value for path bytes of injected files. Changing this updates the existing quotaset.
- injectedFiles number
- Quota value for injected files. Changing this updates the existing quotaset.
- instances number
- Quota value for instances. Changing this updates the existing quotaset.
- keyPairs number
- Quota value for key pairs. Changing this updates the existing quotaset.
- metadataItems number
- Quota value for metadata items. Changing this updates the existing quotaset.
- ram number
- Quota value for RAM. Changing this updates the existing quotaset.
- region string
- The region in which to create the volume. If
omitted, the regionargument of the provider is used. Changing this creates a new quotaset.
- securityGroup numberRules 
- Quota value for security group rules. Changing this updates the existing quotaset.
- securityGroups number
- Quota value for security groups. Changing this updates the existing quotaset.
- serverGroup numberMembers 
- Quota value for server groups members. Changing this updates the existing quotaset.
- serverGroups number
- Quota value for server groups. Changing this updates the existing quotaset.
- project_id str
- ID of the project to manage quotas. Changing this creates a new quotaset.
- cores int
- Quota value for cores. Changing this updates the existing quotaset.
- fixed_ips int
- Quota value for fixed IPs. Changing this updates the existing quotaset.
- floating_ips int
- Quota value for floating IPs. Changing this updates the existing quotaset.
- injected_file_ intcontent_ bytes 
- Quota value for content bytes of injected files. Changing this updates the existing quotaset.
- injected_file_ intpath_ bytes 
- Quota value for path bytes of injected files. Changing this updates the existing quotaset.
- injected_files int
- Quota value for injected files. Changing this updates the existing quotaset.
- instances int
- Quota value for instances. Changing this updates the existing quotaset.
- key_pairs int
- Quota value for key pairs. Changing this updates the existing quotaset.
- metadata_items int
- Quota value for metadata items. Changing this updates the existing quotaset.
- ram int
- Quota value for RAM. Changing this updates the existing quotaset.
- region str
- The region in which to create the volume. If
omitted, the regionargument of the provider is used. Changing this creates a new quotaset.
- security_group_ intrules 
- Quota value for security group rules. Changing this updates the existing quotaset.
- security_groups int
- Quota value for security groups. Changing this updates the existing quotaset.
- server_group_ intmembers 
- Quota value for server groups members. Changing this updates the existing quotaset.
- server_groups int
- Quota value for server groups. Changing this updates the existing quotaset.
- projectId String
- ID of the project to manage quotas. Changing this creates a new quotaset.
- cores Number
- Quota value for cores. Changing this updates the existing quotaset.
- fixedIps Number
- Quota value for fixed IPs. Changing this updates the existing quotaset.
- floatingIps Number
- Quota value for floating IPs. Changing this updates the existing quotaset.
- injectedFile NumberContent Bytes 
- Quota value for content bytes of injected files. Changing this updates the existing quotaset.
- injectedFile NumberPath Bytes 
- Quota value for path bytes of injected files. Changing this updates the existing quotaset.
- injectedFiles Number
- Quota value for injected files. Changing this updates the existing quotaset.
- instances Number
- Quota value for instances. Changing this updates the existing quotaset.
- keyPairs Number
- Quota value for key pairs. Changing this updates the existing quotaset.
- metadataItems Number
- Quota value for metadata items. Changing this updates the existing quotaset.
- ram Number
- Quota value for RAM. Changing this updates the existing quotaset.
- region String
- The region in which to create the volume. If
omitted, the regionargument of the provider is used. Changing this creates a new quotaset.
- securityGroup NumberRules 
- Quota value for security group rules. Changing this updates the existing quotaset.
- securityGroups Number
- Quota value for security groups. Changing this updates the existing quotaset.
- serverGroup NumberMembers 
- Quota value for server groups members. Changing this updates the existing quotaset.
- serverGroups Number
- Quota value for server groups. Changing this updates the existing quotaset.
Outputs
All input properties are implicitly available as output properties. Additionally, the QuotaSetV2 resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing QuotaSetV2 Resource
Get an existing QuotaSetV2 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?: QuotaSetV2State, opts?: CustomResourceOptions): QuotaSetV2@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        cores: Optional[int] = None,
        fixed_ips: Optional[int] = None,
        floating_ips: Optional[int] = None,
        injected_file_content_bytes: Optional[int] = None,
        injected_file_path_bytes: Optional[int] = None,
        injected_files: Optional[int] = None,
        instances: Optional[int] = None,
        key_pairs: Optional[int] = None,
        metadata_items: Optional[int] = None,
        project_id: Optional[str] = None,
        ram: Optional[int] = None,
        region: Optional[str] = None,
        security_group_rules: Optional[int] = None,
        security_groups: Optional[int] = None,
        server_group_members: Optional[int] = None,
        server_groups: Optional[int] = None) -> QuotaSetV2func GetQuotaSetV2(ctx *Context, name string, id IDInput, state *QuotaSetV2State, opts ...ResourceOption) (*QuotaSetV2, error)public static QuotaSetV2 Get(string name, Input<string> id, QuotaSetV2State? state, CustomResourceOptions? opts = null)public static QuotaSetV2 get(String name, Output<String> id, QuotaSetV2State 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.
- Cores int
- Quota value for cores. Changing this updates the existing quotaset.
- FixedIps int
- Quota value for fixed IPs. Changing this updates the existing quotaset.
- FloatingIps int
- Quota value for floating IPs. Changing this updates the existing quotaset.
- InjectedFile intContent Bytes 
- Quota value for content bytes of injected files. Changing this updates the existing quotaset.
- InjectedFile intPath Bytes 
- Quota value for path bytes of injected files. Changing this updates the existing quotaset.
- InjectedFiles int
- Quota value for injected files. Changing this updates the existing quotaset.
- Instances int
- Quota value for instances. Changing this updates the existing quotaset.
- KeyPairs int
- Quota value for key pairs. Changing this updates the existing quotaset.
- MetadataItems int
- Quota value for metadata items. Changing this updates the existing quotaset.
- ProjectId string
- ID of the project to manage quotas. Changing this creates a new quotaset.
- Ram int
- Quota value for RAM. Changing this updates the existing quotaset.
- Region string
- The region in which to create the volume. If
omitted, the regionargument of the provider is used. Changing this creates a new quotaset.
- SecurityGroup intRules 
- Quota value for security group rules. Changing this updates the existing quotaset.
- SecurityGroups int
- Quota value for security groups. Changing this updates the existing quotaset.
- ServerGroup intMembers 
- Quota value for server groups members. Changing this updates the existing quotaset.
- ServerGroups int
- Quota value for server groups. Changing this updates the existing quotaset.
- Cores int
- Quota value for cores. Changing this updates the existing quotaset.
- FixedIps int
- Quota value for fixed IPs. Changing this updates the existing quotaset.
- FloatingIps int
- Quota value for floating IPs. Changing this updates the existing quotaset.
- InjectedFile intContent Bytes 
- Quota value for content bytes of injected files. Changing this updates the existing quotaset.
- InjectedFile intPath Bytes 
- Quota value for path bytes of injected files. Changing this updates the existing quotaset.
- InjectedFiles int
- Quota value for injected files. Changing this updates the existing quotaset.
- Instances int
- Quota value for instances. Changing this updates the existing quotaset.
- KeyPairs int
- Quota value for key pairs. Changing this updates the existing quotaset.
- MetadataItems int
- Quota value for metadata items. Changing this updates the existing quotaset.
- ProjectId string
- ID of the project to manage quotas. Changing this creates a new quotaset.
- Ram int
- Quota value for RAM. Changing this updates the existing quotaset.
- Region string
- The region in which to create the volume. If
omitted, the regionargument of the provider is used. Changing this creates a new quotaset.
- SecurityGroup intRules 
- Quota value for security group rules. Changing this updates the existing quotaset.
- SecurityGroups int
- Quota value for security groups. Changing this updates the existing quotaset.
- ServerGroup intMembers 
- Quota value for server groups members. Changing this updates the existing quotaset.
- ServerGroups int
- Quota value for server groups. Changing this updates the existing quotaset.
- cores Integer
- Quota value for cores. Changing this updates the existing quotaset.
- fixedIps Integer
- Quota value for fixed IPs. Changing this updates the existing quotaset.
- floatingIps Integer
- Quota value for floating IPs. Changing this updates the existing quotaset.
- injectedFile IntegerContent Bytes 
- Quota value for content bytes of injected files. Changing this updates the existing quotaset.
- injectedFile IntegerPath Bytes 
- Quota value for path bytes of injected files. Changing this updates the existing quotaset.
- injectedFiles Integer
- Quota value for injected files. Changing this updates the existing quotaset.
- instances Integer
- Quota value for instances. Changing this updates the existing quotaset.
- keyPairs Integer
- Quota value for key pairs. Changing this updates the existing quotaset.
- metadataItems Integer
- Quota value for metadata items. Changing this updates the existing quotaset.
- projectId String
- ID of the project to manage quotas. Changing this creates a new quotaset.
- ram Integer
- Quota value for RAM. Changing this updates the existing quotaset.
- region String
- The region in which to create the volume. If
omitted, the regionargument of the provider is used. Changing this creates a new quotaset.
- securityGroup IntegerRules 
- Quota value for security group rules. Changing this updates the existing quotaset.
- securityGroups Integer
- Quota value for security groups. Changing this updates the existing quotaset.
- serverGroup IntegerMembers 
- Quota value for server groups members. Changing this updates the existing quotaset.
- serverGroups Integer
- Quota value for server groups. Changing this updates the existing quotaset.
- cores number
- Quota value for cores. Changing this updates the existing quotaset.
- fixedIps number
- Quota value for fixed IPs. Changing this updates the existing quotaset.
- floatingIps number
- Quota value for floating IPs. Changing this updates the existing quotaset.
- injectedFile numberContent Bytes 
- Quota value for content bytes of injected files. Changing this updates the existing quotaset.
- injectedFile numberPath Bytes 
- Quota value for path bytes of injected files. Changing this updates the existing quotaset.
- injectedFiles number
- Quota value for injected files. Changing this updates the existing quotaset.
- instances number
- Quota value for instances. Changing this updates the existing quotaset.
- keyPairs number
- Quota value for key pairs. Changing this updates the existing quotaset.
- metadataItems number
- Quota value for metadata items. Changing this updates the existing quotaset.
- projectId string
- ID of the project to manage quotas. Changing this creates a new quotaset.
- ram number
- Quota value for RAM. Changing this updates the existing quotaset.
- region string
- The region in which to create the volume. If
omitted, the regionargument of the provider is used. Changing this creates a new quotaset.
- securityGroup numberRules 
- Quota value for security group rules. Changing this updates the existing quotaset.
- securityGroups number
- Quota value for security groups. Changing this updates the existing quotaset.
- serverGroup numberMembers 
- Quota value for server groups members. Changing this updates the existing quotaset.
- serverGroups number
- Quota value for server groups. Changing this updates the existing quotaset.
- cores int
- Quota value for cores. Changing this updates the existing quotaset.
- fixed_ips int
- Quota value for fixed IPs. Changing this updates the existing quotaset.
- floating_ips int
- Quota value for floating IPs. Changing this updates the existing quotaset.
- injected_file_ intcontent_ bytes 
- Quota value for content bytes of injected files. Changing this updates the existing quotaset.
- injected_file_ intpath_ bytes 
- Quota value for path bytes of injected files. Changing this updates the existing quotaset.
- injected_files int
- Quota value for injected files. Changing this updates the existing quotaset.
- instances int
- Quota value for instances. Changing this updates the existing quotaset.
- key_pairs int
- Quota value for key pairs. Changing this updates the existing quotaset.
- metadata_items int
- Quota value for metadata items. Changing this updates the existing quotaset.
- project_id str
- ID of the project to manage quotas. Changing this creates a new quotaset.
- ram int
- Quota value for RAM. Changing this updates the existing quotaset.
- region str
- The region in which to create the volume. If
omitted, the regionargument of the provider is used. Changing this creates a new quotaset.
- security_group_ intrules 
- Quota value for security group rules. Changing this updates the existing quotaset.
- security_groups int
- Quota value for security groups. Changing this updates the existing quotaset.
- server_group_ intmembers 
- Quota value for server groups members. Changing this updates the existing quotaset.
- server_groups int
- Quota value for server groups. Changing this updates the existing quotaset.
- cores Number
- Quota value for cores. Changing this updates the existing quotaset.
- fixedIps Number
- Quota value for fixed IPs. Changing this updates the existing quotaset.
- floatingIps Number
- Quota value for floating IPs. Changing this updates the existing quotaset.
- injectedFile NumberContent Bytes 
- Quota value for content bytes of injected files. Changing this updates the existing quotaset.
- injectedFile NumberPath Bytes 
- Quota value for path bytes of injected files. Changing this updates the existing quotaset.
- injectedFiles Number
- Quota value for injected files. Changing this updates the existing quotaset.
- instances Number
- Quota value for instances. Changing this updates the existing quotaset.
- keyPairs Number
- Quota value for key pairs. Changing this updates the existing quotaset.
- metadataItems Number
- Quota value for metadata items. Changing this updates the existing quotaset.
- projectId String
- ID of the project to manage quotas. Changing this creates a new quotaset.
- ram Number
- Quota value for RAM. Changing this updates the existing quotaset.
- region String
- The region in which to create the volume. If
omitted, the regionargument of the provider is used. Changing this creates a new quotaset.
- securityGroup NumberRules 
- Quota value for security group rules. Changing this updates the existing quotaset.
- securityGroups Number
- Quota value for security groups. Changing this updates the existing quotaset.
- serverGroup NumberMembers 
- Quota value for server groups members. Changing this updates the existing quotaset.
- serverGroups Number
- Quota value for server groups. Changing this updates the existing quotaset.
Import
Quotasets can be imported using the project_id/region_name, e.g.
$ pulumi import openstack:compute/quotaSetV2:QuotaSetV2 quotaset_1 2a0f2240-c5e6-41de-896d-e80d97428d6b/region_1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- OpenStack pulumi/pulumi-openstack
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the openstackTerraform Provider.