Viewing docs for Pulumi BiznetGIO Provider v0.1.7
published on Wednesday, Aug 19, 2026 by shirasakaren
published on Wednesday, Aug 19, 2026 by shirasakaren
Viewing docs for Pulumi BiznetGIO Provider v0.1.7
published on Wednesday, Aug 19, 2026 by shirasakaren
published on Wednesday, Aug 19, 2026 by shirasakaren
Create NeoliteKeypair Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NeoliteKeypair(name: string, args: NeoliteKeypairArgs, opts?: CustomResourceOptions);@overload
def NeoliteKeypair(resource_name: str,
args: NeoliteKeypairArgs,
opts: Optional[ResourceOptions] = None)
@overload
def NeoliteKeypair(resource_name: str,
opts: Optional[ResourceOptions] = None,
name: Optional[str] = None)func NewNeoliteKeypair(ctx *Context, name string, args NeoliteKeypairArgs, opts ...ResourceOption) (*NeoliteKeypair, error)public NeoliteKeypair(string name, NeoliteKeypairArgs args, CustomResourceOptions? opts = null)
public NeoliteKeypair(String name, NeoliteKeypairArgs args)
public NeoliteKeypair(String name, NeoliteKeypairArgs args, CustomResourceOptions options)
type: biznetgio:NeoliteKeypair
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "biznetgio_neolite_keypair" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args NeoliteKeypairArgs
- 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 NeoliteKeypairArgs
- 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 NeoliteKeypairArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NeoliteKeypairArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NeoliteKeypairArgs
- 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 neoliteKeypairResource = new Biznetgio.NeoliteKeypair("neoliteKeypairResource", new()
{
Name = "string",
});
example, err := biznetgio.NewNeoliteKeypair(ctx, "neoliteKeypairResource", &biznetgio.NeoliteKeypairArgs{
Name: pulumi.String("string"),
})
resource "biznetgio_neolite_keypair" "neoliteKeypairResource" {
lifecycle {
create_before_destroy = true
}
name = "string"
}
var neoliteKeypairResource = new NeoliteKeypair("neoliteKeypairResource", NeoliteKeypairArgs.builder()
.name("string")
.build());
neolite_keypair_resource = biznetgio.NeoliteKeypair("neoliteKeypairResource", name="string")
const neoliteKeypairResource = new biznetgio.NeoliteKeypair("neoliteKeypairResource", {name: "string"});
type: biznetgio:NeoliteKeypair
properties:
name: string
NeoliteKeypair 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 NeoliteKeypair resource accepts the following input properties:
- Name string
- Keypair name.
- Name string
- Keypair name.
- name string
- Keypair name.
- name String
- Keypair name.
- name string
- Keypair name.
- name str
- Keypair name.
- name String
- Keypair name.
Outputs
All input properties are implicitly available as output properties. Additionally, the NeoliteKeypair resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Keypair
Id int - Keypair id in BiznetGIO.
- Private
Key string - Private key (sensitive). Write-only: only present in the create response, can't be re-fetched.
- Public
Key string - Generated public key.
- Id string
- The provider-assigned unique ID for this managed resource.
- Keypair
Id int - Keypair id in BiznetGIO.
- Private
Key string - Private key (sensitive). Write-only: only present in the create response, can't be re-fetched.
- Public
Key string - Generated public key.
- id string
- The provider-assigned unique ID for this managed resource.
- keypair_
id number - Keypair id in BiznetGIO.
- private_
key string - Private key (sensitive). Write-only: only present in the create response, can't be re-fetched.
- public_
key string - Generated public key.
- id String
- The provider-assigned unique ID for this managed resource.
- keypair
Id Integer - Keypair id in BiznetGIO.
- private
Key String - Private key (sensitive). Write-only: only present in the create response, can't be re-fetched.
- public
Key String - Generated public key.
- id string
- The provider-assigned unique ID for this managed resource.
- keypair
Id number - Keypair id in BiznetGIO.
- private
Key string - Private key (sensitive). Write-only: only present in the create response, can't be re-fetched.
- public
Key string - Generated public key.
- id str
- The provider-assigned unique ID for this managed resource.
- keypair_
id int - Keypair id in BiznetGIO.
- private_
key str - Private key (sensitive). Write-only: only present in the create response, can't be re-fetched.
- public_
key str - Generated public key.
- id String
- The provider-assigned unique ID for this managed resource.
- keypair
Id Number - Keypair id in BiznetGIO.
- private
Key String - Private key (sensitive). Write-only: only present in the create response, can't be re-fetched.
- public
Key String - Generated public key.
Package Details
- Repository
- biznetgio github.com/shirasakaren/pulumi-biznetgio
- License
- Apache-2.0
Viewing docs for Pulumi BiznetGIO Provider v0.1.7
published on Wednesday, Aug 19, 2026 by shirasakaren
published on Wednesday, Aug 19, 2026 by shirasakaren