qdrant-cloud.AccountsHybridCloudEnvironment
Explore with Pulumi AI
Example Usage
Create AccountsHybridCloudEnvironment Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AccountsHybridCloudEnvironment(name: string, args: AccountsHybridCloudEnvironmentArgs, opts?: CustomResourceOptions);
@overload
def AccountsHybridCloudEnvironment(resource_name: str,
args: AccountsHybridCloudEnvironmentArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AccountsHybridCloudEnvironment(resource_name: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[AccountsHybridCloudEnvironmentConfigurationArgs] = None,
account_id: Optional[str] = None,
bootstrap_commands_version: Optional[float] = None,
name: Optional[str] = None)
func NewAccountsHybridCloudEnvironment(ctx *Context, name string, args AccountsHybridCloudEnvironmentArgs, opts ...ResourceOption) (*AccountsHybridCloudEnvironment, error)
public AccountsHybridCloudEnvironment(string name, AccountsHybridCloudEnvironmentArgs args, CustomResourceOptions? opts = null)
public AccountsHybridCloudEnvironment(String name, AccountsHybridCloudEnvironmentArgs args)
public AccountsHybridCloudEnvironment(String name, AccountsHybridCloudEnvironmentArgs args, CustomResourceOptions options)
type: qdrant-cloud:AccountsHybridCloudEnvironment
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 AccountsHybridCloudEnvironmentArgs
- 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 AccountsHybridCloudEnvironmentArgs
- 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 AccountsHybridCloudEnvironmentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AccountsHybridCloudEnvironmentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AccountsHybridCloudEnvironmentArgs
- 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 accountsHybridCloudEnvironmentResource = new QdrantCloud.AccountsHybridCloudEnvironment("accountsHybridCloudEnvironmentResource", new()
{
Configuration = new QdrantCloud.Inputs.AccountsHybridCloudEnvironmentConfigurationArgs
{
Namespace = "string",
LastModifiedAt = "string",
ContainerRegistryUrl = "string",
DatabaseStorageClass = "string",
HttpProxyUrl = "string",
HttpsProxyUrl = "string",
CaCertificates = "string",
LogLevel = "string",
ChartRepositoryUrl = "string",
NoProxyConfigs = new[]
{
"string",
},
RegistrySecretName = "string",
SnapshotStorageClass = "string",
VolumeSnapshotStorageClass = "string",
},
AccountId = "string",
BootstrapCommandsVersion = 0,
Name = "string",
});
example, err := qdrantcloud.NewAccountsHybridCloudEnvironment(ctx, "accountsHybridCloudEnvironmentResource", &qdrantcloud.AccountsHybridCloudEnvironmentArgs{
Configuration: &qdrantcloud.AccountsHybridCloudEnvironmentConfigurationArgs{
Namespace: pulumi.String("string"),
LastModifiedAt: pulumi.String("string"),
ContainerRegistryUrl: pulumi.String("string"),
DatabaseStorageClass: pulumi.String("string"),
HttpProxyUrl: pulumi.String("string"),
HttpsProxyUrl: pulumi.String("string"),
CaCertificates: pulumi.String("string"),
LogLevel: pulumi.String("string"),
ChartRepositoryUrl: pulumi.String("string"),
NoProxyConfigs: pulumi.StringArray{
pulumi.String("string"),
},
RegistrySecretName: pulumi.String("string"),
SnapshotStorageClass: pulumi.String("string"),
VolumeSnapshotStorageClass: pulumi.String("string"),
},
AccountId: pulumi.String("string"),
BootstrapCommandsVersion: pulumi.Float64(0),
Name: pulumi.String("string"),
})
var accountsHybridCloudEnvironmentResource = new AccountsHybridCloudEnvironment("accountsHybridCloudEnvironmentResource", AccountsHybridCloudEnvironmentArgs.builder()
.configuration(AccountsHybridCloudEnvironmentConfigurationArgs.builder()
.namespace("string")
.lastModifiedAt("string")
.containerRegistryUrl("string")
.databaseStorageClass("string")
.httpProxyUrl("string")
.httpsProxyUrl("string")
.caCertificates("string")
.logLevel("string")
.chartRepositoryUrl("string")
.noProxyConfigs("string")
.registrySecretName("string")
.snapshotStorageClass("string")
.volumeSnapshotStorageClass("string")
.build())
.accountId("string")
.bootstrapCommandsVersion(0.0)
.name("string")
.build());
accounts_hybrid_cloud_environment_resource = qdrant_cloud.AccountsHybridCloudEnvironment("accountsHybridCloudEnvironmentResource",
configuration={
"namespace": "string",
"last_modified_at": "string",
"container_registry_url": "string",
"database_storage_class": "string",
"http_proxy_url": "string",
"https_proxy_url": "string",
"ca_certificates": "string",
"log_level": "string",
"chart_repository_url": "string",
"no_proxy_configs": ["string"],
"registry_secret_name": "string",
"snapshot_storage_class": "string",
"volume_snapshot_storage_class": "string",
},
account_id="string",
bootstrap_commands_version=0,
name="string")
const accountsHybridCloudEnvironmentResource = new qdrant_cloud.AccountsHybridCloudEnvironment("accountsHybridCloudEnvironmentResource", {
configuration: {
namespace: "string",
lastModifiedAt: "string",
containerRegistryUrl: "string",
databaseStorageClass: "string",
httpProxyUrl: "string",
httpsProxyUrl: "string",
caCertificates: "string",
logLevel: "string",
chartRepositoryUrl: "string",
noProxyConfigs: ["string"],
registrySecretName: "string",
snapshotStorageClass: "string",
volumeSnapshotStorageClass: "string",
},
accountId: "string",
bootstrapCommandsVersion: 0,
name: "string",
});
type: qdrant-cloud:AccountsHybridCloudEnvironment
properties:
accountId: string
bootstrapCommandsVersion: 0
configuration:
caCertificates: string
chartRepositoryUrl: string
containerRegistryUrl: string
databaseStorageClass: string
httpProxyUrl: string
httpsProxyUrl: string
lastModifiedAt: string
logLevel: string
namespace: string
noProxyConfigs:
- string
registrySecretName: string
snapshotStorageClass: string
volumeSnapshotStorageClass: string
name: string
AccountsHybridCloudEnvironment 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 AccountsHybridCloudEnvironment resource accepts the following input properties:
- Configuration
Pulumi.
Qdrant Cloud. Inputs. Accounts Hybrid Cloud Environment Configuration - Hybrid cloud environment Schema Configuration field
- Account
Id string - Hybrid cloud environment Schema Account ID field
- Bootstrap
Commands doubleVersion - Version knob to (re)generate bootstrap commands. -1 = never generate, 0 = idle/do not (re)generate, >0 = generate/rotate.
- Name string
- Hybrid cloud environment Schema Name field
- Configuration
Accounts
Hybrid Cloud Environment Configuration Args - Hybrid cloud environment Schema Configuration field
- Account
Id string - Hybrid cloud environment Schema Account ID field
- Bootstrap
Commands float64Version - Version knob to (re)generate bootstrap commands. -1 = never generate, 0 = idle/do not (re)generate, >0 = generate/rotate.
- Name string
- Hybrid cloud environment Schema Name field
- configuration
Accounts
Hybrid Cloud Environment Configuration - Hybrid cloud environment Schema Configuration field
- account
Id String - Hybrid cloud environment Schema Account ID field
- bootstrap
Commands DoubleVersion - Version knob to (re)generate bootstrap commands. -1 = never generate, 0 = idle/do not (re)generate, >0 = generate/rotate.
- name String
- Hybrid cloud environment Schema Name field
- configuration
Accounts
Hybrid Cloud Environment Configuration - Hybrid cloud environment Schema Configuration field
- account
Id string - Hybrid cloud environment Schema Account ID field
- bootstrap
Commands numberVersion - Version knob to (re)generate bootstrap commands. -1 = never generate, 0 = idle/do not (re)generate, >0 = generate/rotate.
- name string
- Hybrid cloud environment Schema Name field
- configuration
Accounts
Hybrid Cloud Environment Configuration Args - Hybrid cloud environment Schema Configuration field
- account_
id str - Hybrid cloud environment Schema Account ID field
- bootstrap_
commands_ floatversion - Version knob to (re)generate bootstrap commands. -1 = never generate, 0 = idle/do not (re)generate, >0 = generate/rotate.
- name str
- Hybrid cloud environment Schema Name field
- configuration Property Map
- Hybrid cloud environment Schema Configuration field
- account
Id String - Hybrid cloud environment Schema Account ID field
- bootstrap
Commands NumberVersion - Version knob to (re)generate bootstrap commands. -1 = never generate, 0 = idle/do not (re)generate, >0 = generate/rotate.
- name String
- Hybrid cloud environment Schema Name field
Outputs
All input properties are implicitly available as output properties. Additionally, the AccountsHybridCloudEnvironment resource produces the following output properties:
- Bootstrap
Commands List<string> - Hybrid cloud environment Schema Commands to bootstrap a Kubernetes cluster into this environment field
- Created
At string - Hybrid cloud environment Schema Creation timestamp field
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Modified stringAt - Hybrid cloud environment Schema Last modification timestamp field
- Statuses
List<Pulumi.
Qdrant Cloud. Outputs. Accounts Hybrid Cloud Environment Status> - Current status of the hybrid cloud environment (read-only).
- Bootstrap
Commands []string - Hybrid cloud environment Schema Commands to bootstrap a Kubernetes cluster into this environment field
- Created
At string - Hybrid cloud environment Schema Creation timestamp field
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Modified stringAt - Hybrid cloud environment Schema Last modification timestamp field
- Statuses
[]Accounts
Hybrid Cloud Environment Status - Current status of the hybrid cloud environment (read-only).
- bootstrap
Commands List<String> - Hybrid cloud environment Schema Commands to bootstrap a Kubernetes cluster into this environment field
- created
At String - Hybrid cloud environment Schema Creation timestamp field
- id String
- The provider-assigned unique ID for this managed resource.
- last
Modified StringAt - Hybrid cloud environment Schema Last modification timestamp field
- statuses
List<Accounts
Hybrid Cloud Environment Status> - Current status of the hybrid cloud environment (read-only).
- bootstrap
Commands string[] - Hybrid cloud environment Schema Commands to bootstrap a Kubernetes cluster into this environment field
- created
At string - Hybrid cloud environment Schema Creation timestamp field
- id string
- The provider-assigned unique ID for this managed resource.
- last
Modified stringAt - Hybrid cloud environment Schema Last modification timestamp field
- statuses
Accounts
Hybrid Cloud Environment Status[] - Current status of the hybrid cloud environment (read-only).
- bootstrap_
commands Sequence[str] - Hybrid cloud environment Schema Commands to bootstrap a Kubernetes cluster into this environment field
- created_
at str - Hybrid cloud environment Schema Creation timestamp field
- id str
- The provider-assigned unique ID for this managed resource.
- last_
modified_ strat - Hybrid cloud environment Schema Last modification timestamp field
- statuses
Sequence[Accounts
Hybrid Cloud Environment Status] - Current status of the hybrid cloud environment (read-only).
- bootstrap
Commands List<String> - Hybrid cloud environment Schema Commands to bootstrap a Kubernetes cluster into this environment field
- created
At String - Hybrid cloud environment Schema Creation timestamp field
- id String
- The provider-assigned unique ID for this managed resource.
- last
Modified StringAt - Hybrid cloud environment Schema Last modification timestamp field
- statuses List<Property Map>
- Current status of the hybrid cloud environment (read-only).
Look up Existing AccountsHybridCloudEnvironment Resource
Get an existing AccountsHybridCloudEnvironment 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?: AccountsHybridCloudEnvironmentState, opts?: CustomResourceOptions): AccountsHybridCloudEnvironment
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
bootstrap_commands: Optional[Sequence[str]] = None,
bootstrap_commands_version: Optional[float] = None,
configuration: Optional[AccountsHybridCloudEnvironmentConfigurationArgs] = None,
created_at: Optional[str] = None,
last_modified_at: Optional[str] = None,
name: Optional[str] = None,
statuses: Optional[Sequence[AccountsHybridCloudEnvironmentStatusArgs]] = None) -> AccountsHybridCloudEnvironment
func GetAccountsHybridCloudEnvironment(ctx *Context, name string, id IDInput, state *AccountsHybridCloudEnvironmentState, opts ...ResourceOption) (*AccountsHybridCloudEnvironment, error)
public static AccountsHybridCloudEnvironment Get(string name, Input<string> id, AccountsHybridCloudEnvironmentState? state, CustomResourceOptions? opts = null)
public static AccountsHybridCloudEnvironment get(String name, Output<String> id, AccountsHybridCloudEnvironmentState state, CustomResourceOptions options)
resources: _: type: qdrant-cloud:AccountsHybridCloudEnvironment 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.
- Account
Id string - Hybrid cloud environment Schema Account ID field
- Bootstrap
Commands List<string> - Hybrid cloud environment Schema Commands to bootstrap a Kubernetes cluster into this environment field
- Bootstrap
Commands doubleVersion - Version knob to (re)generate bootstrap commands. -1 = never generate, 0 = idle/do not (re)generate, >0 = generate/rotate.
- Configuration
Pulumi.
Qdrant Cloud. Inputs. Accounts Hybrid Cloud Environment Configuration - Hybrid cloud environment Schema Configuration field
- Created
At string - Hybrid cloud environment Schema Creation timestamp field
- Last
Modified stringAt - Hybrid cloud environment Schema Last modification timestamp field
- Name string
- Hybrid cloud environment Schema Name field
- Statuses
List<Pulumi.
Qdrant Cloud. Inputs. Accounts Hybrid Cloud Environment Status> - Current status of the hybrid cloud environment (read-only).
- Account
Id string - Hybrid cloud environment Schema Account ID field
- Bootstrap
Commands []string - Hybrid cloud environment Schema Commands to bootstrap a Kubernetes cluster into this environment field
- Bootstrap
Commands float64Version - Version knob to (re)generate bootstrap commands. -1 = never generate, 0 = idle/do not (re)generate, >0 = generate/rotate.
- Configuration
Accounts
Hybrid Cloud Environment Configuration Args - Hybrid cloud environment Schema Configuration field
- Created
At string - Hybrid cloud environment Schema Creation timestamp field
- Last
Modified stringAt - Hybrid cloud environment Schema Last modification timestamp field
- Name string
- Hybrid cloud environment Schema Name field
- Statuses
[]Accounts
Hybrid Cloud Environment Status Args - Current status of the hybrid cloud environment (read-only).
- account
Id String - Hybrid cloud environment Schema Account ID field
- bootstrap
Commands List<String> - Hybrid cloud environment Schema Commands to bootstrap a Kubernetes cluster into this environment field
- bootstrap
Commands DoubleVersion - Version knob to (re)generate bootstrap commands. -1 = never generate, 0 = idle/do not (re)generate, >0 = generate/rotate.
- configuration
Accounts
Hybrid Cloud Environment Configuration - Hybrid cloud environment Schema Configuration field
- created
At String - Hybrid cloud environment Schema Creation timestamp field
- last
Modified StringAt - Hybrid cloud environment Schema Last modification timestamp field
- name String
- Hybrid cloud environment Schema Name field
- statuses
List<Accounts
Hybrid Cloud Environment Status> - Current status of the hybrid cloud environment (read-only).
- account
Id string - Hybrid cloud environment Schema Account ID field
- bootstrap
Commands string[] - Hybrid cloud environment Schema Commands to bootstrap a Kubernetes cluster into this environment field
- bootstrap
Commands numberVersion - Version knob to (re)generate bootstrap commands. -1 = never generate, 0 = idle/do not (re)generate, >0 = generate/rotate.
- configuration
Accounts
Hybrid Cloud Environment Configuration - Hybrid cloud environment Schema Configuration field
- created
At string - Hybrid cloud environment Schema Creation timestamp field
- last
Modified stringAt - Hybrid cloud environment Schema Last modification timestamp field
- name string
- Hybrid cloud environment Schema Name field
- statuses
Accounts
Hybrid Cloud Environment Status[] - Current status of the hybrid cloud environment (read-only).
- account_
id str - Hybrid cloud environment Schema Account ID field
- bootstrap_
commands Sequence[str] - Hybrid cloud environment Schema Commands to bootstrap a Kubernetes cluster into this environment field
- bootstrap_
commands_ floatversion - Version knob to (re)generate bootstrap commands. -1 = never generate, 0 = idle/do not (re)generate, >0 = generate/rotate.
- configuration
Accounts
Hybrid Cloud Environment Configuration Args - Hybrid cloud environment Schema Configuration field
- created_
at str - Hybrid cloud environment Schema Creation timestamp field
- last_
modified_ strat - Hybrid cloud environment Schema Last modification timestamp field
- name str
- Hybrid cloud environment Schema Name field
- statuses
Sequence[Accounts
Hybrid Cloud Environment Status Args] - Current status of the hybrid cloud environment (read-only).
- account
Id String - Hybrid cloud environment Schema Account ID field
- bootstrap
Commands List<String> - Hybrid cloud environment Schema Commands to bootstrap a Kubernetes cluster into this environment field
- bootstrap
Commands NumberVersion - Version knob to (re)generate bootstrap commands. -1 = never generate, 0 = idle/do not (re)generate, >0 = generate/rotate.
- configuration Property Map
- Hybrid cloud environment Schema Configuration field
- created
At String - Hybrid cloud environment Schema Creation timestamp field
- last
Modified StringAt - Hybrid cloud environment Schema Last modification timestamp field
- name String
- Hybrid cloud environment Schema Name field
- statuses List<Property Map>
- Current status of the hybrid cloud environment (read-only).
Supporting Types
AccountsHybridCloudEnvironmentConfiguration, AccountsHybridCloudEnvironmentConfigurationArgs
- Namespace string
- The Kubernetes namespace where the Qdrant hybrid cloud components will be deployed.
- Ca
Certificates string - CA certificates for custom certificate authorities.
- Chart
Repository stringUrl - Chart registry URL.
- Container
Registry stringUrl - Container registry URL.
- Database
Storage stringClass - Default database storage class.
- Http
Proxy stringUrl - Optional HTTP proxy URL.
- Https
Proxy stringUrl - Optional HTTPS proxy URL.
- Last
Modified stringAt - Last modification timestamp of the configuration.
- Log
Level string - Log level for deployed components.
- No
Proxy List<string>Configs - List of hosts that should not be proxied.
- Registry
Secret stringName - Kubernetes secret name containing registry credentials.
- Snapshot
Storage stringClass - Default snapshot storage class.
- Volume
Snapshot stringStorage Class - Default volume snapshot storage class.
- Namespace string
- The Kubernetes namespace where the Qdrant hybrid cloud components will be deployed.
- Ca
Certificates string - CA certificates for custom certificate authorities.
- Chart
Repository stringUrl - Chart registry URL.
- Container
Registry stringUrl - Container registry URL.
- Database
Storage stringClass - Default database storage class.
- Http
Proxy stringUrl - Optional HTTP proxy URL.
- Https
Proxy stringUrl - Optional HTTPS proxy URL.
- Last
Modified stringAt - Last modification timestamp of the configuration.
- Log
Level string - Log level for deployed components.
- No
Proxy []stringConfigs - List of hosts that should not be proxied.
- Registry
Secret stringName - Kubernetes secret name containing registry credentials.
- Snapshot
Storage stringClass - Default snapshot storage class.
- Volume
Snapshot stringStorage Class - Default volume snapshot storage class.
- namespace String
- The Kubernetes namespace where the Qdrant hybrid cloud components will be deployed.
- ca
Certificates String - CA certificates for custom certificate authorities.
- chart
Repository StringUrl - Chart registry URL.
- container
Registry StringUrl - Container registry URL.
- database
Storage StringClass - Default database storage class.
- http
Proxy StringUrl - Optional HTTP proxy URL.
- https
Proxy StringUrl - Optional HTTPS proxy URL.
- last
Modified StringAt - Last modification timestamp of the configuration.
- log
Level String - Log level for deployed components.
- no
Proxy List<String>Configs - List of hosts that should not be proxied.
- registry
Secret StringName - Kubernetes secret name containing registry credentials.
- snapshot
Storage StringClass - Default snapshot storage class.
- volume
Snapshot StringStorage Class - Default volume snapshot storage class.
- namespace string
- The Kubernetes namespace where the Qdrant hybrid cloud components will be deployed.
- ca
Certificates string - CA certificates for custom certificate authorities.
- chart
Repository stringUrl - Chart registry URL.
- container
Registry stringUrl - Container registry URL.
- database
Storage stringClass - Default database storage class.
- http
Proxy stringUrl - Optional HTTP proxy URL.
- https
Proxy stringUrl - Optional HTTPS proxy URL.
- last
Modified stringAt - Last modification timestamp of the configuration.
- log
Level string - Log level for deployed components.
- no
Proxy string[]Configs - List of hosts that should not be proxied.
- registry
Secret stringName - Kubernetes secret name containing registry credentials.
- snapshot
Storage stringClass - Default snapshot storage class.
- volume
Snapshot stringStorage Class - Default volume snapshot storage class.
- namespace str
- The Kubernetes namespace where the Qdrant hybrid cloud components will be deployed.
- ca_
certificates str - CA certificates for custom certificate authorities.
- chart_
repository_ strurl - Chart registry URL.
- container_
registry_ strurl - Container registry URL.
- database_
storage_ strclass - Default database storage class.
- http_
proxy_ strurl - Optional HTTP proxy URL.
- https_
proxy_ strurl - Optional HTTPS proxy URL.
- last_
modified_ strat - Last modification timestamp of the configuration.
- log_
level str - Log level for deployed components.
- no_
proxy_ Sequence[str]configs - List of hosts that should not be proxied.
- registry_
secret_ strname - Kubernetes secret name containing registry credentials.
- snapshot_
storage_ strclass - Default snapshot storage class.
- volume_
snapshot_ strstorage_ class - Default volume snapshot storage class.
- namespace String
- The Kubernetes namespace where the Qdrant hybrid cloud components will be deployed.
- ca
Certificates String - CA certificates for custom certificate authorities.
- chart
Repository StringUrl - Chart registry URL.
- container
Registry StringUrl - Container registry URL.
- database
Storage StringClass - Default database storage class.
- http
Proxy StringUrl - Optional HTTP proxy URL.
- https
Proxy StringUrl - Optional HTTPS proxy URL.
- last
Modified StringAt - Last modification timestamp of the configuration.
- log
Level String - Log level for deployed components.
- no
Proxy List<String>Configs - List of hosts that should not be proxied.
- registry
Secret StringName - Kubernetes secret name containing registry credentials.
- snapshot
Storage StringClass - Default snapshot storage class.
- volume
Snapshot StringStorage Class - Default volume snapshot storage class.
AccountsHybridCloudEnvironmentStatus, AccountsHybridCloudEnvironmentStatusArgs
- Capabilities
List<Pulumi.
Qdrant Cloud. Inputs. Accounts Hybrid Cloud Environment Status Capability> - Cluster
Creation stringReadiness - Component
Statuses List<Pulumi.Qdrant Cloud. Inputs. Accounts Hybrid Cloud Environment Status Component Status> - Kubernetes
Distribution string - Kubernetes
Version string - Last
Modified stringAt - Message string
- Number
Of doubleNodes - Phase string
- Storage
Classes List<Pulumi.Qdrant Cloud. Inputs. Accounts Hybrid Cloud Environment Status Storage Class> - Volume
Snapshot List<Pulumi.Classes Qdrant Cloud. Inputs. Accounts Hybrid Cloud Environment Status Volume Snapshot Class>
- Capabilities
[]Accounts
Hybrid Cloud Environment Status Capability - Cluster
Creation stringReadiness - Component
Statuses []AccountsHybrid Cloud Environment Status Component Status - Kubernetes
Distribution string - Kubernetes
Version string - Last
Modified stringAt - Message string
- Number
Of float64Nodes - Phase string
- Storage
Classes []AccountsHybrid Cloud Environment Status Storage Class - Volume
Snapshot []AccountsClasses Hybrid Cloud Environment Status Volume Snapshot Class
- capabilities
List<Accounts
Hybrid Cloud Environment Status Capability> - cluster
Creation StringReadiness - component
Statuses List<AccountsHybrid Cloud Environment Status Component Status> - kubernetes
Distribution String - kubernetes
Version String - last
Modified StringAt - message String
- number
Of DoubleNodes - phase String
- storage
Classes List<AccountsHybrid Cloud Environment Status Storage Class> - volume
Snapshot List<AccountsClasses Hybrid Cloud Environment Status Volume Snapshot Class>
- capabilities
Accounts
Hybrid Cloud Environment Status Capability[] - cluster
Creation stringReadiness - component
Statuses AccountsHybrid Cloud Environment Status Component Status[] - kubernetes
Distribution string - kubernetes
Version string - last
Modified stringAt - message string
- number
Of numberNodes - phase string
- storage
Classes AccountsHybrid Cloud Environment Status Storage Class[] - volume
Snapshot AccountsClasses Hybrid Cloud Environment Status Volume Snapshot Class[]
- capabilities
Sequence[Accounts
Hybrid Cloud Environment Status Capability] - cluster_
creation_ strreadiness - component_
statuses Sequence[AccountsHybrid Cloud Environment Status Component Status] - kubernetes_
distribution str - kubernetes_
version str - last_
modified_ strat - message str
- number_
of_ floatnodes - phase str
- storage_
classes Sequence[AccountsHybrid Cloud Environment Status Storage Class] - volume_
snapshot_ Sequence[Accountsclasses Hybrid Cloud Environment Status Volume Snapshot Class]
AccountsHybridCloudEnvironmentStatusCapability, AccountsHybridCloudEnvironmentStatusCapabilityArgs
- Volume
Expansion bool - Volume
Snapshot bool
- Volume
Expansion bool - Volume
Snapshot bool
- volume
Expansion Boolean - volume
Snapshot Boolean
- volume
Expansion boolean - volume
Snapshot boolean
- volume_
expansion bool - volume_
snapshot bool
- volume
Expansion Boolean - volume
Snapshot Boolean
AccountsHybridCloudEnvironmentStatusComponentStatus, AccountsHybridCloudEnvironmentStatusComponentStatusArgs
AccountsHybridCloudEnvironmentStatusStorageClass, AccountsHybridCloudEnvironmentStatusStorageClassArgs
- Allow
Volume boolExpansion - Default bool
- Name string
- Parameters Dictionary<string, string>
- Provisioner string
- Reclaim
Policy string
- Allow
Volume boolExpansion - Default bool
- Name string
- Parameters map[string]string
- Provisioner string
- Reclaim
Policy string
- allow
Volume BooleanExpansion - default_ Boolean
- name String
- parameters Map<String,String>
- provisioner String
- reclaim
Policy String
- allow
Volume booleanExpansion - default boolean
- name string
- parameters {[key: string]: string}
- provisioner string
- reclaim
Policy string
- allow_
volume_ boolexpansion - default bool
- name str
- parameters Mapping[str, str]
- provisioner str
- reclaim_
policy str
- allow
Volume BooleanExpansion - default Boolean
- name String
- parameters Map<String>
- provisioner String
- reclaim
Policy String
AccountsHybridCloudEnvironmentStatusVolumeSnapshotClass, AccountsHybridCloudEnvironmentStatusVolumeSnapshotClassArgs
Import
qdrant-cloud_accounts_hybrid_cloud_environment
can be imported using the environment ID:
$ pulumi import qdrant-cloud:index/accountsHybridCloudEnvironment:AccountsHybridCloudEnvironment example 00000000-0000-0000-0000-000000000000
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- qdrant-cloud qdrant/terraform-provider-qdrant-cloud
- License
- Notes
- This Pulumi package is based on the
qdrant-cloud
Terraform Provider.