Vultr v2.21.1 published on Monday, Jul 22, 2024 by dirien
vultr.IsoPrivate
Explore with Pulumi AI
Create IsoPrivate Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IsoPrivate(name: string, args: IsoPrivateArgs, opts?: CustomResourceOptions);
@overload
def IsoPrivate(resource_name: str,
args: IsoPrivateArgs,
opts: Optional[ResourceOptions] = None)
@overload
def IsoPrivate(resource_name: str,
opts: Optional[ResourceOptions] = None,
url: Optional[str] = None)
func NewIsoPrivate(ctx *Context, name string, args IsoPrivateArgs, opts ...ResourceOption) (*IsoPrivate, error)
public IsoPrivate(string name, IsoPrivateArgs args, CustomResourceOptions? opts = null)
public IsoPrivate(String name, IsoPrivateArgs args)
public IsoPrivate(String name, IsoPrivateArgs args, CustomResourceOptions options)
type: vultr:IsoPrivate
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 IsoPrivateArgs
- 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 IsoPrivateArgs
- 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 IsoPrivateArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IsoPrivateArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IsoPrivateArgs
- 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 isoPrivateResource = new Vultr.IsoPrivate("isoPrivateResource", new()
{
Url = "string",
});
example, err := vultr.NewIsoPrivate(ctx, "isoPrivateResource", &vultr.IsoPrivateArgs{
Url: pulumi.String("string"),
})
var isoPrivateResource = new IsoPrivate("isoPrivateResource", IsoPrivateArgs.builder()
.url("string")
.build());
iso_private_resource = vultr.IsoPrivate("isoPrivateResource", url="string")
const isoPrivateResource = new vultr.IsoPrivate("isoPrivateResource", {url: "string"});
type: vultr:IsoPrivate
properties:
url: string
IsoPrivate 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 IsoPrivate resource accepts the following input properties:
- Url string
- Url string
- url String
- url string
- url str
- url String
Outputs
All input properties are implicitly available as output properties. Additionally, the IsoPrivate resource produces the following output properties:
Look up Existing IsoPrivate Resource
Get an existing IsoPrivate 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?: IsoPrivateState, opts?: CustomResourceOptions): IsoPrivate
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
date_created: Optional[str] = None,
filename: Optional[str] = None,
md5sum: Optional[str] = None,
sha512sum: Optional[str] = None,
size: Optional[int] = None,
status: Optional[str] = None,
url: Optional[str] = None) -> IsoPrivate
func GetIsoPrivate(ctx *Context, name string, id IDInput, state *IsoPrivateState, opts ...ResourceOption) (*IsoPrivate, error)
public static IsoPrivate Get(string name, Input<string> id, IsoPrivateState? state, CustomResourceOptions? opts = null)
public static IsoPrivate get(String name, Output<String> id, IsoPrivateState 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.
Package Details
- Repository
- vultr dirien/pulumi-vultr
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
vultr
Terraform Provider.