1. Packages
  2. Harbor
  3. API Docs
  4. PreheatInstance
Harbor v3.10.19 published on Monday, Feb 10, 2025 by Pulumiverse

harbor.PreheatInstance

Explore with Pulumi AI

Example Usage

Basic Usage

resource "harbor_preheat_instance" "example" {
  name     = "example-preheat-instance"
  vendor   = "dragonfly"
  endpoint = "http://example.com"
}
Copy

Usage with Authentication

resource "harbor_preheat_instance" "example" {
  name       = "example-preheat-instance"
  vendor     = "dragonfly"
  endpoint   = "http://example.com"
  auth_mode  = "BASIC"
  username   = "example-user"
  password   = "example-password"
}
Copy

Create PreheatInstance Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new PreheatInstance(name: string, args: PreheatInstanceArgs, opts?: CustomResourceOptions);
@overload
def PreheatInstance(resource_name: str,
                    args: PreheatInstanceArgs,
                    opts: Optional[ResourceOptions] = None)

@overload
def PreheatInstance(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    endpoint: Optional[str] = None,
                    vendor: Optional[str] = None,
                    auth_mode: Optional[str] = None,
                    default: Optional[bool] = None,
                    description: Optional[str] = None,
                    enabled: Optional[bool] = None,
                    insecure: Optional[bool] = None,
                    name: Optional[str] = None,
                    password: Optional[str] = None,
                    token: Optional[str] = None,
                    username: Optional[str] = None)
func NewPreheatInstance(ctx *Context, name string, args PreheatInstanceArgs, opts ...ResourceOption) (*PreheatInstance, error)
public PreheatInstance(string name, PreheatInstanceArgs args, CustomResourceOptions? opts = null)
public PreheatInstance(String name, PreheatInstanceArgs args)
public PreheatInstance(String name, PreheatInstanceArgs args, CustomResourceOptions options)
type: harbor:PreheatInstance
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. PreheatInstanceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. PreheatInstanceArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. PreheatInstanceArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. PreheatInstanceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. PreheatInstanceArgs
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 preheatInstanceResource = new Harbor.PreheatInstance("preheatInstanceResource", new()
{
    Endpoint = "string",
    Vendor = "string",
    AuthMode = "string",
    Default = false,
    Description = "string",
    Enabled = false,
    Insecure = false,
    Name = "string",
    Password = "string",
    Token = "string",
    Username = "string",
});
Copy
example, err := harbor.NewPreheatInstance(ctx, "preheatInstanceResource", &harbor.PreheatInstanceArgs{
	Endpoint:    pulumi.String("string"),
	Vendor:      pulumi.String("string"),
	AuthMode:    pulumi.String("string"),
	Default:     pulumi.Bool(false),
	Description: pulumi.String("string"),
	Enabled:     pulumi.Bool(false),
	Insecure:    pulumi.Bool(false),
	Name:        pulumi.String("string"),
	Password:    pulumi.String("string"),
	Token:       pulumi.String("string"),
	Username:    pulumi.String("string"),
})
Copy
var preheatInstanceResource = new PreheatInstance("preheatInstanceResource", PreheatInstanceArgs.builder()
    .endpoint("string")
    .vendor("string")
    .authMode("string")
    .default_(false)
    .description("string")
    .enabled(false)
    .insecure(false)
    .name("string")
    .password("string")
    .token("string")
    .username("string")
    .build());
Copy
preheat_instance_resource = harbor.PreheatInstance("preheatInstanceResource",
    endpoint="string",
    vendor="string",
    auth_mode="string",
    default=False,
    description="string",
    enabled=False,
    insecure=False,
    name="string",
    password="string",
    token="string",
    username="string")
Copy
const preheatInstanceResource = new harbor.PreheatInstance("preheatInstanceResource", {
    endpoint: "string",
    vendor: "string",
    authMode: "string",
    "default": false,
    description: "string",
    enabled: false,
    insecure: false,
    name: "string",
    password: "string",
    token: "string",
    username: "string",
});
Copy
type: harbor:PreheatInstance
properties:
    authMode: string
    default: false
    description: string
    enabled: false
    endpoint: string
    insecure: false
    name: string
    password: string
    token: string
    username: string
    vendor: string
Copy

PreheatInstance 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 PreheatInstance resource accepts the following input properties:

Endpoint This property is required. string
The endpoint of the preheat instance.
Vendor This property is required. string
The vendor of the preheat instance. Must be either "dragonfly" or "kraken".
AuthMode string
The authentication mode for the preheat instance. Must be either "NONE", "BASIC", or "OAUTH". Defaults to "NONE".
Default bool
Whether the preheat instance is the default instance. Defaults to false.
Description string
The description of the preheat instance. Defaults to an empty string.
Enabled bool
Whether the preheat instance is enabled. Defaults to true.
Insecure bool
Whether to allow insecure connections to the preheat instance. Defaults to false.
Name Changes to this property will trigger replacement. string
The name of the preheat instance.
Password string
The password for the preheat instance. Required if auth_mode is "BASIC". Defaults to an empty string.
Token string
The token for the preheat instance. Required if auth_mode is "OAUTH". Defaults to an empty string.
Username string
The username for the preheat instance. Required if auth_mode is "BASIC". Defaults to an empty string.
Endpoint This property is required. string
The endpoint of the preheat instance.
Vendor This property is required. string
The vendor of the preheat instance. Must be either "dragonfly" or "kraken".
AuthMode string
The authentication mode for the preheat instance. Must be either "NONE", "BASIC", or "OAUTH". Defaults to "NONE".
Default bool
Whether the preheat instance is the default instance. Defaults to false.
Description string
The description of the preheat instance. Defaults to an empty string.
Enabled bool
Whether the preheat instance is enabled. Defaults to true.
Insecure bool
Whether to allow insecure connections to the preheat instance. Defaults to false.
Name Changes to this property will trigger replacement. string
The name of the preheat instance.
Password string
The password for the preheat instance. Required if auth_mode is "BASIC". Defaults to an empty string.
Token string
The token for the preheat instance. Required if auth_mode is "OAUTH". Defaults to an empty string.
Username string
The username for the preheat instance. Required if auth_mode is "BASIC". Defaults to an empty string.
endpoint This property is required. String
The endpoint of the preheat instance.
vendor This property is required. String
The vendor of the preheat instance. Must be either "dragonfly" or "kraken".
authMode String
The authentication mode for the preheat instance. Must be either "NONE", "BASIC", or "OAUTH". Defaults to "NONE".
default_ Boolean
Whether the preheat instance is the default instance. Defaults to false.
description String
The description of the preheat instance. Defaults to an empty string.
enabled Boolean
Whether the preheat instance is enabled. Defaults to true.
insecure Boolean
Whether to allow insecure connections to the preheat instance. Defaults to false.
name Changes to this property will trigger replacement. String
The name of the preheat instance.
password String
The password for the preheat instance. Required if auth_mode is "BASIC". Defaults to an empty string.
token String
The token for the preheat instance. Required if auth_mode is "OAUTH". Defaults to an empty string.
username String
The username for the preheat instance. Required if auth_mode is "BASIC". Defaults to an empty string.
endpoint This property is required. string
The endpoint of the preheat instance.
vendor This property is required. string
The vendor of the preheat instance. Must be either "dragonfly" or "kraken".
authMode string
The authentication mode for the preheat instance. Must be either "NONE", "BASIC", or "OAUTH". Defaults to "NONE".
default boolean
Whether the preheat instance is the default instance. Defaults to false.
description string
The description of the preheat instance. Defaults to an empty string.
enabled boolean
Whether the preheat instance is enabled. Defaults to true.
insecure boolean
Whether to allow insecure connections to the preheat instance. Defaults to false.
name Changes to this property will trigger replacement. string
The name of the preheat instance.
password string
The password for the preheat instance. Required if auth_mode is "BASIC". Defaults to an empty string.
token string
The token for the preheat instance. Required if auth_mode is "OAUTH". Defaults to an empty string.
username string
The username for the preheat instance. Required if auth_mode is "BASIC". Defaults to an empty string.
endpoint This property is required. str
The endpoint of the preheat instance.
vendor This property is required. str
The vendor of the preheat instance. Must be either "dragonfly" or "kraken".
auth_mode str
The authentication mode for the preheat instance. Must be either "NONE", "BASIC", or "OAUTH". Defaults to "NONE".
default bool
Whether the preheat instance is the default instance. Defaults to false.
description str
The description of the preheat instance. Defaults to an empty string.
enabled bool
Whether the preheat instance is enabled. Defaults to true.
insecure bool
Whether to allow insecure connections to the preheat instance. Defaults to false.
name Changes to this property will trigger replacement. str
The name of the preheat instance.
password str
The password for the preheat instance. Required if auth_mode is "BASIC". Defaults to an empty string.
token str
The token for the preheat instance. Required if auth_mode is "OAUTH". Defaults to an empty string.
username str
The username for the preheat instance. Required if auth_mode is "BASIC". Defaults to an empty string.
endpoint This property is required. String
The endpoint of the preheat instance.
vendor This property is required. String
The vendor of the preheat instance. Must be either "dragonfly" or "kraken".
authMode String
The authentication mode for the preheat instance. Must be either "NONE", "BASIC", or "OAUTH". Defaults to "NONE".
default Boolean
Whether the preheat instance is the default instance. Defaults to false.
description String
The description of the preheat instance. Defaults to an empty string.
enabled Boolean
Whether the preheat instance is enabled. Defaults to true.
insecure Boolean
Whether to allow insecure connections to the preheat instance. Defaults to false.
name Changes to this property will trigger replacement. String
The name of the preheat instance.
password String
The password for the preheat instance. Required if auth_mode is "BASIC". Defaults to an empty string.
token String
The token for the preheat instance. Required if auth_mode is "OAUTH". Defaults to an empty string.
username String
The username for the preheat instance. Required if auth_mode is "BASIC". Defaults to an empty string.

Outputs

All input properties are implicitly available as output properties. Additionally, the PreheatInstance 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 PreheatInstance Resource

Get an existing PreheatInstance 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?: PreheatInstanceState, opts?: CustomResourceOptions): PreheatInstance
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        auth_mode: Optional[str] = None,
        default: Optional[bool] = None,
        description: Optional[str] = None,
        enabled: Optional[bool] = None,
        endpoint: Optional[str] = None,
        insecure: Optional[bool] = None,
        name: Optional[str] = None,
        password: Optional[str] = None,
        token: Optional[str] = None,
        username: Optional[str] = None,
        vendor: Optional[str] = None) -> PreheatInstance
func GetPreheatInstance(ctx *Context, name string, id IDInput, state *PreheatInstanceState, opts ...ResourceOption) (*PreheatInstance, error)
public static PreheatInstance Get(string name, Input<string> id, PreheatInstanceState? state, CustomResourceOptions? opts = null)
public static PreheatInstance get(String name, Output<String> id, PreheatInstanceState state, CustomResourceOptions options)
resources:  _:    type: harbor:PreheatInstance    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
AuthMode string
The authentication mode for the preheat instance. Must be either "NONE", "BASIC", or "OAUTH". Defaults to "NONE".
Default bool
Whether the preheat instance is the default instance. Defaults to false.
Description string
The description of the preheat instance. Defaults to an empty string.
Enabled bool
Whether the preheat instance is enabled. Defaults to true.
Endpoint string
The endpoint of the preheat instance.
Insecure bool
Whether to allow insecure connections to the preheat instance. Defaults to false.
Name Changes to this property will trigger replacement. string
The name of the preheat instance.
Password string
The password for the preheat instance. Required if auth_mode is "BASIC". Defaults to an empty string.
Token string
The token for the preheat instance. Required if auth_mode is "OAUTH". Defaults to an empty string.
Username string
The username for the preheat instance. Required if auth_mode is "BASIC". Defaults to an empty string.
Vendor string
The vendor of the preheat instance. Must be either "dragonfly" or "kraken".
AuthMode string
The authentication mode for the preheat instance. Must be either "NONE", "BASIC", or "OAUTH". Defaults to "NONE".
Default bool
Whether the preheat instance is the default instance. Defaults to false.
Description string
The description of the preheat instance. Defaults to an empty string.
Enabled bool
Whether the preheat instance is enabled. Defaults to true.
Endpoint string
The endpoint of the preheat instance.
Insecure bool
Whether to allow insecure connections to the preheat instance. Defaults to false.
Name Changes to this property will trigger replacement. string
The name of the preheat instance.
Password string
The password for the preheat instance. Required if auth_mode is "BASIC". Defaults to an empty string.
Token string
The token for the preheat instance. Required if auth_mode is "OAUTH". Defaults to an empty string.
Username string
The username for the preheat instance. Required if auth_mode is "BASIC". Defaults to an empty string.
Vendor string
The vendor of the preheat instance. Must be either "dragonfly" or "kraken".
authMode String
The authentication mode for the preheat instance. Must be either "NONE", "BASIC", or "OAUTH". Defaults to "NONE".
default_ Boolean
Whether the preheat instance is the default instance. Defaults to false.
description String
The description of the preheat instance. Defaults to an empty string.
enabled Boolean
Whether the preheat instance is enabled. Defaults to true.
endpoint String
The endpoint of the preheat instance.
insecure Boolean
Whether to allow insecure connections to the preheat instance. Defaults to false.
name Changes to this property will trigger replacement. String
The name of the preheat instance.
password String
The password for the preheat instance. Required if auth_mode is "BASIC". Defaults to an empty string.
token String
The token for the preheat instance. Required if auth_mode is "OAUTH". Defaults to an empty string.
username String
The username for the preheat instance. Required if auth_mode is "BASIC". Defaults to an empty string.
vendor String
The vendor of the preheat instance. Must be either "dragonfly" or "kraken".
authMode string
The authentication mode for the preheat instance. Must be either "NONE", "BASIC", or "OAUTH". Defaults to "NONE".
default boolean
Whether the preheat instance is the default instance. Defaults to false.
description string
The description of the preheat instance. Defaults to an empty string.
enabled boolean
Whether the preheat instance is enabled. Defaults to true.
endpoint string
The endpoint of the preheat instance.
insecure boolean
Whether to allow insecure connections to the preheat instance. Defaults to false.
name Changes to this property will trigger replacement. string
The name of the preheat instance.
password string
The password for the preheat instance. Required if auth_mode is "BASIC". Defaults to an empty string.
token string
The token for the preheat instance. Required if auth_mode is "OAUTH". Defaults to an empty string.
username string
The username for the preheat instance. Required if auth_mode is "BASIC". Defaults to an empty string.
vendor string
The vendor of the preheat instance. Must be either "dragonfly" or "kraken".
auth_mode str
The authentication mode for the preheat instance. Must be either "NONE", "BASIC", or "OAUTH". Defaults to "NONE".
default bool
Whether the preheat instance is the default instance. Defaults to false.
description str
The description of the preheat instance. Defaults to an empty string.
enabled bool
Whether the preheat instance is enabled. Defaults to true.
endpoint str
The endpoint of the preheat instance.
insecure bool
Whether to allow insecure connections to the preheat instance. Defaults to false.
name Changes to this property will trigger replacement. str
The name of the preheat instance.
password str
The password for the preheat instance. Required if auth_mode is "BASIC". Defaults to an empty string.
token str
The token for the preheat instance. Required if auth_mode is "OAUTH". Defaults to an empty string.
username str
The username for the preheat instance. Required if auth_mode is "BASIC". Defaults to an empty string.
vendor str
The vendor of the preheat instance. Must be either "dragonfly" or "kraken".
authMode String
The authentication mode for the preheat instance. Must be either "NONE", "BASIC", or "OAUTH". Defaults to "NONE".
default Boolean
Whether the preheat instance is the default instance. Defaults to false.
description String
The description of the preheat instance. Defaults to an empty string.
enabled Boolean
Whether the preheat instance is enabled. Defaults to true.
endpoint String
The endpoint of the preheat instance.
insecure Boolean
Whether to allow insecure connections to the preheat instance. Defaults to false.
name Changes to this property will trigger replacement. String
The name of the preheat instance.
password String
The password for the preheat instance. Required if auth_mode is "BASIC". Defaults to an empty string.
token String
The token for the preheat instance. Required if auth_mode is "OAUTH". Defaults to an empty string.
username String
The username for the preheat instance. Required if auth_mode is "BASIC". Defaults to an empty string.
vendor String
The vendor of the preheat instance. Must be either "dragonfly" or "kraken".

Import

The harbor_preheat_instance resource can be imported using the preheat instance ID.

$ pulumi import harbor:index/preheatInstance:PreheatInstance example /p2p/preheat/instances/example-preheat-instance
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
harbor pulumiverse/pulumi-harbor
License
Apache-2.0
Notes
This Pulumi package is based on the harbor Terraform Provider.