timescale.Vpcs
Explore with Pulumi AI
Schema for a VPC. Import can be done using your VPCs name
Create Vpcs Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Vpcs(name: string, args: VpcsArgs, opts?: CustomResourceOptions);
@overload
def Vpcs(resource_name: str,
args: VpcsArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Vpcs(resource_name: str,
opts: Optional[ResourceOptions] = None,
cidr: Optional[str] = None,
region_code: Optional[str] = None,
name: Optional[str] = None,
timeouts: Optional[VpcsTimeoutsArgs] = None)
func NewVpcs(ctx *Context, name string, args VpcsArgs, opts ...ResourceOption) (*Vpcs, error)
public Vpcs(string name, VpcsArgs args, CustomResourceOptions? opts = null)
type: timescale:Vpcs
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 VpcsArgs
- 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 VpcsArgs
- 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 VpcsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VpcsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VpcsArgs
- 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 vpcsResource = new Timescale.Vpcs("vpcsResource", new()
{
Cidr = "string",
RegionCode = "string",
Name = "string",
Timeouts = new Timescale.Inputs.VpcsTimeoutsArgs
{
Create = "string",
},
});
example, err := timescale.NewVpcs(ctx, "vpcsResource", ×cale.VpcsArgs{
Cidr: pulumi.String("string"),
RegionCode: pulumi.String("string"),
Name: pulumi.String("string"),
Timeouts: &.VpcsTimeoutsArgs{
Create: pulumi.String("string"),
},
})
var vpcsResource = new Vpcs("vpcsResource", VpcsArgs.builder()
.cidr("string")
.regionCode("string")
.name("string")
.timeouts(VpcsTimeoutsArgs.builder()
.create("string")
.build())
.build());
vpcs_resource = timescale.Vpcs("vpcsResource",
cidr="string",
region_code="string",
name="string",
timeouts={
"create": "string",
})
const vpcsResource = new timescale.Vpcs("vpcsResource", {
cidr: "string",
regionCode: "string",
name: "string",
timeouts: {
create: "string",
},
});
type: timescale:Vpcs
properties:
cidr: string
name: string
regionCode: string
timeouts:
create: string
Vpcs Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Vpcs resource accepts the following input properties:
- Cidr string
- The IPv4 CIDR block
- Region
Code string - The region for this VPC.
- Name string
- VPC Name is the configurable name assigned to this vpc. If none is provided, a default will be generated by the provider.
- Timeouts
Vpcs
Timeouts
- Cidr string
- The IPv4 CIDR block
- Region
Code string - The region for this VPC.
- Name string
- VPC Name is the configurable name assigned to this vpc. If none is provided, a default will be generated by the provider.
- Timeouts
Vpcs
Timeouts Args
- cidr String
- The IPv4 CIDR block
- region
Code String - The region for this VPC.
- name String
- VPC Name is the configurable name assigned to this vpc. If none is provided, a default will be generated by the provider.
- timeouts
Vpcs
Timeouts
- cidr string
- The IPv4 CIDR block
- region
Code string - The region for this VPC.
- name string
- VPC Name is the configurable name assigned to this vpc. If none is provided, a default will be generated by the provider.
- timeouts
Vpcs
Timeouts
- cidr str
- The IPv4 CIDR block
- region_
code str - The region for this VPC.
- name str
- VPC Name is the configurable name assigned to this vpc. If none is provided, a default will be generated by the provider.
- timeouts
Vpcs
Timeouts Args
- cidr String
- The IPv4 CIDR block
- region
Code String - The region for this VPC.
- name String
- VPC Name is the configurable name assigned to this vpc. If none is provided, a default will be generated by the provider.
- timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the Vpcs resource produces the following output properties:
- Created string
- Error
Message string - Id string
- The provider-assigned unique ID for this managed resource.
- Project
Id string - Provisioned
Id string - Status string
- Updated string
- Vpcs
Id double - The ID of this resource.
- Created string
- Error
Message string - Id string
- The provider-assigned unique ID for this managed resource.
- Project
Id string - Provisioned
Id string - Status string
- Updated string
- Vpcs
Id float64 - The ID of this resource.
- created String
- error
Message String - id String
- The provider-assigned unique ID for this managed resource.
- project
Id String - provisioned
Id String - status String
- updated String
- vpcs
Id Double - The ID of this resource.
- created string
- error
Message string - id string
- The provider-assigned unique ID for this managed resource.
- project
Id string - provisioned
Id string - status string
- updated string
- vpcs
Id number - The ID of this resource.
- created str
- error_
message str - id str
- The provider-assigned unique ID for this managed resource.
- project_
id str - provisioned_
id str - status str
- updated str
- vpcs_
id float - The ID of this resource.
- created String
- error
Message String - id String
- The provider-assigned unique ID for this managed resource.
- project
Id String - provisioned
Id String - status String
- updated String
- vpcs
Id Number - The ID of this resource.
Look up Existing Vpcs Resource
Get an existing Vpcs 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?: VpcsState, opts?: CustomResourceOptions): Vpcs
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cidr: Optional[str] = None,
created: Optional[str] = None,
error_message: Optional[str] = None,
name: Optional[str] = None,
project_id: Optional[str] = None,
provisioned_id: Optional[str] = None,
region_code: Optional[str] = None,
status: Optional[str] = None,
timeouts: Optional[VpcsTimeoutsArgs] = None,
updated: Optional[str] = None,
vpcs_id: Optional[float] = None) -> Vpcs
func GetVpcs(ctx *Context, name string, id IDInput, state *VpcsState, opts ...ResourceOption) (*Vpcs, error)
public static Vpcs Get(string name, Input<string> id, VpcsState? state, CustomResourceOptions? opts = null)
public static Vpcs get(String name, Output<String> id, VpcsState state, CustomResourceOptions options)
resources: _: type: timescale:Vpcs get: id: ${id}
- 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.
- Cidr string
- The IPv4 CIDR block
- Created string
- Error
Message string - Name string
- VPC Name is the configurable name assigned to this vpc. If none is provided, a default will be generated by the provider.
- Project
Id string - Provisioned
Id string - Region
Code string - The region for this VPC.
- Status string
- Timeouts
Vpcs
Timeouts - Updated string
- Vpcs
Id double - The ID of this resource.
- Cidr string
- The IPv4 CIDR block
- Created string
- Error
Message string - Name string
- VPC Name is the configurable name assigned to this vpc. If none is provided, a default will be generated by the provider.
- Project
Id string - Provisioned
Id string - Region
Code string - The region for this VPC.
- Status string
- Timeouts
Vpcs
Timeouts Args - Updated string
- Vpcs
Id float64 - The ID of this resource.
- cidr String
- The IPv4 CIDR block
- created String
- error
Message String - name String
- VPC Name is the configurable name assigned to this vpc. If none is provided, a default will be generated by the provider.
- project
Id String - provisioned
Id String - region
Code String - The region for this VPC.
- status String
- timeouts
Vpcs
Timeouts - updated String
- vpcs
Id Double - The ID of this resource.
- cidr string
- The IPv4 CIDR block
- created string
- error
Message string - name string
- VPC Name is the configurable name assigned to this vpc. If none is provided, a default will be generated by the provider.
- project
Id string - provisioned
Id string - region
Code string - The region for this VPC.
- status string
- timeouts
Vpcs
Timeouts - updated string
- vpcs
Id number - The ID of this resource.
- cidr str
- The IPv4 CIDR block
- created str
- error_
message str - name str
- VPC Name is the configurable name assigned to this vpc. If none is provided, a default will be generated by the provider.
- project_
id str - provisioned_
id str - region_
code str - The region for this VPC.
- status str
- timeouts
Vpcs
Timeouts Args - updated str
- vpcs_
id float - The ID of this resource.
- cidr String
- The IPv4 CIDR block
- created String
- error
Message String - name String
- VPC Name is the configurable name assigned to this vpc. If none is provided, a default will be generated by the provider.
- project
Id String - provisioned
Id String - region
Code String - The region for this VPC.
- status String
- timeouts Property Map
- updated String
- vpcs
Id Number - The ID of this resource.
Supporting Types
VpcsTimeouts, VpcsTimeoutsArgs
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
Package Details
- Repository
- timescale timescale/terraform-provider-timescale
- License
- Notes
- This Pulumi package is based on the
timescale
Terraform Provider.