avi.Cloudconnectoruser
Explore with Pulumi AI
<!–
Copyright 2021 VMware, Inc.
SPDX-License-Identifier: Mozilla Public License 2.0
–>
layout: “avi”
page_title: “Avi: avi.Cloudconnectoruser” sidebar_current: “docs-avi-resource-cloudconnectoruser” description: |- Creates and manages Avi CloudConnectorUser.
avi.Cloudconnectoruser
The CloudConnectorUser resource allows the creation and management of Avi CloudConnectorUser
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as avi from "@pulumi/avi";
const foo = new avi.Cloudconnectoruser("foo", {tenantRef: "/api/tenant/?name=admin"});
import pulumi
import pulumi_avi as avi
foo = avi.Cloudconnectoruser("foo", tenant_ref="/api/tenant/?name=admin")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/avi/v31/avi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := avi.NewCloudconnectoruser(ctx, "foo", &avi.CloudconnectoruserArgs{
TenantRef: pulumi.String("/api/tenant/?name=admin"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Avi = Pulumi.Avi;
return await Deployment.RunAsync(() =>
{
var foo = new Avi.Cloudconnectoruser("foo", new()
{
TenantRef = "/api/tenant/?name=admin",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.avi.Cloudconnectoruser;
import com.pulumi.avi.CloudconnectoruserArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var foo = new Cloudconnectoruser("foo", CloudconnectoruserArgs.builder()
.tenantRef("/api/tenant/?name=admin")
.build());
}
}
resources:
foo:
type: avi:Cloudconnectoruser
properties:
tenantRef: /api/tenant/?name=admin
Create Cloudconnectoruser Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Cloudconnectoruser(name: string, args?: CloudconnectoruserArgs, opts?: CustomResourceOptions);
@overload
def Cloudconnectoruser(resource_name: str,
args: Optional[CloudconnectoruserArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Cloudconnectoruser(resource_name: str,
opts: Optional[ResourceOptions] = None,
azure_serviceprincipals: Optional[Sequence[CloudconnectoruserAzureServiceprincipalArgs]] = None,
azure_userpasses: Optional[Sequence[CloudconnectoruserAzureUserpassArgs]] = None,
cloudconnectoruser_id: Optional[str] = None,
configpb_attributes: Optional[Sequence[CloudconnectoruserConfigpbAttributeArgs]] = None,
gcp_credentials: Optional[Sequence[CloudconnectoruserGcpCredentialArgs]] = None,
name: Optional[str] = None,
nsxt_credentials: Optional[Sequence[CloudconnectoruserNsxtCredentialArgs]] = None,
password: Optional[str] = None,
private_key: Optional[str] = None,
public_key: Optional[str] = None,
tenant_ref: Optional[str] = None,
tencent_credentials: Optional[Sequence[CloudconnectoruserTencentCredentialArgs]] = None,
uuid: Optional[str] = None,
vcenter_credentials: Optional[Sequence[CloudconnectoruserVcenterCredentialArgs]] = None)
func NewCloudconnectoruser(ctx *Context, name string, args *CloudconnectoruserArgs, opts ...ResourceOption) (*Cloudconnectoruser, error)
public Cloudconnectoruser(string name, CloudconnectoruserArgs? args = null, CustomResourceOptions? opts = null)
public Cloudconnectoruser(String name, CloudconnectoruserArgs args)
public Cloudconnectoruser(String name, CloudconnectoruserArgs args, CustomResourceOptions options)
type: avi:Cloudconnectoruser
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 CloudconnectoruserArgs
- 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 CloudconnectoruserArgs
- 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 CloudconnectoruserArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CloudconnectoruserArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CloudconnectoruserArgs
- 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 cloudconnectoruserResource = new Avi.Cloudconnectoruser("cloudconnectoruserResource", new()
{
AzureServiceprincipals = new[]
{
new Avi.Inputs.CloudconnectoruserAzureServiceprincipalArgs
{
ApplicationId = "string",
AuthenticationToken = "string",
TenantId = "string",
},
},
AzureUserpasses = new[]
{
new Avi.Inputs.CloudconnectoruserAzureUserpassArgs
{
Password = "string",
TenantName = "string",
Username = "string",
},
},
CloudconnectoruserId = "string",
ConfigpbAttributes = new[]
{
new Avi.Inputs.CloudconnectoruserConfigpbAttributeArgs
{
Version = "string",
},
},
GcpCredentials = new[]
{
new Avi.Inputs.CloudconnectoruserGcpCredentialArgs
{
ServiceAccountKeyfileData = "string",
},
},
Name = "string",
NsxtCredentials = new[]
{
new Avi.Inputs.CloudconnectoruserNsxtCredentialArgs
{
Password = "string",
Username = "string",
},
},
Password = "string",
PrivateKey = "string",
PublicKey = "string",
TenantRef = "string",
TencentCredentials = new[]
{
new Avi.Inputs.CloudconnectoruserTencentCredentialArgs
{
SecretId = "string",
SecretKey = "string",
},
},
Uuid = "string",
VcenterCredentials = new[]
{
new Avi.Inputs.CloudconnectoruserVcenterCredentialArgs
{
Password = "string",
Username = "string",
},
},
});
example, err := avi.NewCloudconnectoruser(ctx, "cloudconnectoruserResource", &avi.CloudconnectoruserArgs{
AzureServiceprincipals: avi.CloudconnectoruserAzureServiceprincipalArray{
&avi.CloudconnectoruserAzureServiceprincipalArgs{
ApplicationId: pulumi.String("string"),
AuthenticationToken: pulumi.String("string"),
TenantId: pulumi.String("string"),
},
},
AzureUserpasses: avi.CloudconnectoruserAzureUserpassArray{
&avi.CloudconnectoruserAzureUserpassArgs{
Password: pulumi.String("string"),
TenantName: pulumi.String("string"),
Username: pulumi.String("string"),
},
},
CloudconnectoruserId: pulumi.String("string"),
ConfigpbAttributes: avi.CloudconnectoruserConfigpbAttributeArray{
&avi.CloudconnectoruserConfigpbAttributeArgs{
Version: pulumi.String("string"),
},
},
GcpCredentials: avi.CloudconnectoruserGcpCredentialArray{
&avi.CloudconnectoruserGcpCredentialArgs{
ServiceAccountKeyfileData: pulumi.String("string"),
},
},
Name: pulumi.String("string"),
NsxtCredentials: avi.CloudconnectoruserNsxtCredentialArray{
&avi.CloudconnectoruserNsxtCredentialArgs{
Password: pulumi.String("string"),
Username: pulumi.String("string"),
},
},
Password: pulumi.String("string"),
PrivateKey: pulumi.String("string"),
PublicKey: pulumi.String("string"),
TenantRef: pulumi.String("string"),
TencentCredentials: avi.CloudconnectoruserTencentCredentialArray{
&avi.CloudconnectoruserTencentCredentialArgs{
SecretId: pulumi.String("string"),
SecretKey: pulumi.String("string"),
},
},
Uuid: pulumi.String("string"),
VcenterCredentials: avi.CloudconnectoruserVcenterCredentialArray{
&avi.CloudconnectoruserVcenterCredentialArgs{
Password: pulumi.String("string"),
Username: pulumi.String("string"),
},
},
})
var cloudconnectoruserResource = new Cloudconnectoruser("cloudconnectoruserResource", CloudconnectoruserArgs.builder()
.azureServiceprincipals(CloudconnectoruserAzureServiceprincipalArgs.builder()
.applicationId("string")
.authenticationToken("string")
.tenantId("string")
.build())
.azureUserpasses(CloudconnectoruserAzureUserpassArgs.builder()
.password("string")
.tenantName("string")
.username("string")
.build())
.cloudconnectoruserId("string")
.configpbAttributes(CloudconnectoruserConfigpbAttributeArgs.builder()
.version("string")
.build())
.gcpCredentials(CloudconnectoruserGcpCredentialArgs.builder()
.serviceAccountKeyfileData("string")
.build())
.name("string")
.nsxtCredentials(CloudconnectoruserNsxtCredentialArgs.builder()
.password("string")
.username("string")
.build())
.password("string")
.privateKey("string")
.publicKey("string")
.tenantRef("string")
.tencentCredentials(CloudconnectoruserTencentCredentialArgs.builder()
.secretId("string")
.secretKey("string")
.build())
.uuid("string")
.vcenterCredentials(CloudconnectoruserVcenterCredentialArgs.builder()
.password("string")
.username("string")
.build())
.build());
cloudconnectoruser_resource = avi.Cloudconnectoruser("cloudconnectoruserResource",
azure_serviceprincipals=[{
"application_id": "string",
"authentication_token": "string",
"tenant_id": "string",
}],
azure_userpasses=[{
"password": "string",
"tenant_name": "string",
"username": "string",
}],
cloudconnectoruser_id="string",
configpb_attributes=[{
"version": "string",
}],
gcp_credentials=[{
"service_account_keyfile_data": "string",
}],
name="string",
nsxt_credentials=[{
"password": "string",
"username": "string",
}],
password="string",
private_key="string",
public_key="string",
tenant_ref="string",
tencent_credentials=[{
"secret_id": "string",
"secret_key": "string",
}],
uuid="string",
vcenter_credentials=[{
"password": "string",
"username": "string",
}])
const cloudconnectoruserResource = new avi.Cloudconnectoruser("cloudconnectoruserResource", {
azureServiceprincipals: [{
applicationId: "string",
authenticationToken: "string",
tenantId: "string",
}],
azureUserpasses: [{
password: "string",
tenantName: "string",
username: "string",
}],
cloudconnectoruserId: "string",
configpbAttributes: [{
version: "string",
}],
gcpCredentials: [{
serviceAccountKeyfileData: "string",
}],
name: "string",
nsxtCredentials: [{
password: "string",
username: "string",
}],
password: "string",
privateKey: "string",
publicKey: "string",
tenantRef: "string",
tencentCredentials: [{
secretId: "string",
secretKey: "string",
}],
uuid: "string",
vcenterCredentials: [{
password: "string",
username: "string",
}],
});
type: avi:Cloudconnectoruser
properties:
azureServiceprincipals:
- applicationId: string
authenticationToken: string
tenantId: string
azureUserpasses:
- password: string
tenantName: string
username: string
cloudconnectoruserId: string
configpbAttributes:
- version: string
gcpCredentials:
- serviceAccountKeyfileData: string
name: string
nsxtCredentials:
- password: string
username: string
password: string
privateKey: string
publicKey: string
tenantRef: string
tencentCredentials:
- secretId: string
secretKey: string
uuid: string
vcenterCredentials:
- password: string
username: string
Cloudconnectoruser 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 Cloudconnectoruser resource accepts the following input properties:
- Azure
Serviceprincipals List<CloudconnectoruserAzure Serviceprincipal> - Field introduced in 17.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Azure
Userpasses List<CloudconnectoruserAzure Userpass> - Field introduced in 17.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Cloudconnectoruser
Id string - Configpb
Attributes List<CloudconnectoruserConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Gcp
Credentials List<CloudconnectoruserGcp Credential> - Credentials for google cloud platform. Field introduced in 18.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Name string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Nsxt
Credentials List<CloudconnectoruserNsxt Credential> - Credentials to talk to nsx-t manager. Field introduced in 20.1.1. Allowed with any value in enterprise, basic, enterprise with cloud services edition.
- Password string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Private
Key string - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Public
Key string - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tencent
Credentials List<CloudconnectoruserTencent Credential> - Credentials for tencent cloud. Field introduced in 18.2.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Vcenter
Credentials List<CloudconnectoruserVcenter Credential> - Credentials to talk to vcenter. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Azure
Serviceprincipals []CloudconnectoruserAzure Serviceprincipal Args - Field introduced in 17.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Azure
Userpasses []CloudconnectoruserAzure Userpass Args - Field introduced in 17.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Cloudconnectoruser
Id string - Configpb
Attributes []CloudconnectoruserConfigpb Attribute Args - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Gcp
Credentials []CloudconnectoruserGcp Credential Args - Credentials for google cloud platform. Field introduced in 18.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Name string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Nsxt
Credentials []CloudconnectoruserNsxt Credential Args - Credentials to talk to nsx-t manager. Field introduced in 20.1.1. Allowed with any value in enterprise, basic, enterprise with cloud services edition.
- Password string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Private
Key string - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Public
Key string - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tencent
Credentials []CloudconnectoruserTencent Credential Args - Credentials for tencent cloud. Field introduced in 18.2.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Vcenter
Credentials []CloudconnectoruserVcenter Credential Args - Credentials to talk to vcenter. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- azure
Serviceprincipals List<CloudconnectoruserAzure Serviceprincipal> - Field introduced in 17.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- azure
Userpasses List<CloudconnectoruserAzure Userpass> - Field introduced in 17.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- cloudconnectoruser
Id String - configpb
Attributes List<CloudconnectoruserConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- gcp
Credentials List<CloudconnectoruserGcp Credential> - Credentials for google cloud platform. Field introduced in 18.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- nsxt
Credentials List<CloudconnectoruserNsxt Credential> - Credentials to talk to nsx-t manager. Field introduced in 20.1.1. Allowed with any value in enterprise, basic, enterprise with cloud services edition.
- password String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- private
Key String - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- public
Key String - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tencent
Credentials List<CloudconnectoruserTencent Credential> - Credentials for tencent cloud. Field introduced in 18.2.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- vcenter
Credentials List<CloudconnectoruserVcenter Credential> - Credentials to talk to vcenter. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- azure
Serviceprincipals CloudconnectoruserAzure Serviceprincipal[] - Field introduced in 17.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- azure
Userpasses CloudconnectoruserAzure Userpass[] - Field introduced in 17.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- cloudconnectoruser
Id string - configpb
Attributes CloudconnectoruserConfigpb Attribute[] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- gcp
Credentials CloudconnectoruserGcp Credential[] - Credentials for google cloud platform. Field introduced in 18.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- nsxt
Credentials CloudconnectoruserNsxt Credential[] - Credentials to talk to nsx-t manager. Field introduced in 20.1.1. Allowed with any value in enterprise, basic, enterprise with cloud services edition.
- password string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- private
Key string - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- public
Key string - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tencent
Credentials CloudconnectoruserTencent Credential[] - Credentials for tencent cloud. Field introduced in 18.2.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- vcenter
Credentials CloudconnectoruserVcenter Credential[] - Credentials to talk to vcenter. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- azure_
serviceprincipals Sequence[CloudconnectoruserAzure Serviceprincipal Args] - Field introduced in 17.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- azure_
userpasses Sequence[CloudconnectoruserAzure Userpass Args] - Field introduced in 17.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- cloudconnectoruser_
id str - configpb_
attributes Sequence[CloudconnectoruserConfigpb Attribute Args] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- gcp_
credentials Sequence[CloudconnectoruserGcp Credential Args] - Credentials for google cloud platform. Field introduced in 18.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- nsxt_
credentials Sequence[CloudconnectoruserNsxt Credential Args] - Credentials to talk to nsx-t manager. Field introduced in 20.1.1. Allowed with any value in enterprise, basic, enterprise with cloud services edition.
- password str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- private_
key str - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- public_
key str - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant_
ref str - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tencent_
credentials Sequence[CloudconnectoruserTencent Credential Args] - Credentials for tencent cloud. Field introduced in 18.2.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- vcenter_
credentials Sequence[CloudconnectoruserVcenter Credential Args] - Credentials to talk to vcenter. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- azure
Serviceprincipals List<Property Map> - Field introduced in 17.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- azure
Userpasses List<Property Map> - Field introduced in 17.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- cloudconnectoruser
Id String - configpb
Attributes List<Property Map> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- gcp
Credentials List<Property Map> - Credentials for google cloud platform. Field introduced in 18.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- nsxt
Credentials List<Property Map> - Credentials to talk to nsx-t manager. Field introduced in 20.1.1. Allowed with any value in enterprise, basic, enterprise with cloud services edition.
- password String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- private
Key String - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- public
Key String - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tencent
Credentials List<Property Map> - Credentials for tencent cloud. Field introduced in 18.2.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- vcenter
Credentials List<Property Map> - Credentials to talk to vcenter. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
Outputs
All input properties are implicitly available as output properties. Additionally, the Cloudconnectoruser 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 Cloudconnectoruser Resource
Get an existing Cloudconnectoruser 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?: CloudconnectoruserState, opts?: CustomResourceOptions): Cloudconnectoruser
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
azure_serviceprincipals: Optional[Sequence[CloudconnectoruserAzureServiceprincipalArgs]] = None,
azure_userpasses: Optional[Sequence[CloudconnectoruserAzureUserpassArgs]] = None,
cloudconnectoruser_id: Optional[str] = None,
configpb_attributes: Optional[Sequence[CloudconnectoruserConfigpbAttributeArgs]] = None,
gcp_credentials: Optional[Sequence[CloudconnectoruserGcpCredentialArgs]] = None,
name: Optional[str] = None,
nsxt_credentials: Optional[Sequence[CloudconnectoruserNsxtCredentialArgs]] = None,
password: Optional[str] = None,
private_key: Optional[str] = None,
public_key: Optional[str] = None,
tenant_ref: Optional[str] = None,
tencent_credentials: Optional[Sequence[CloudconnectoruserTencentCredentialArgs]] = None,
uuid: Optional[str] = None,
vcenter_credentials: Optional[Sequence[CloudconnectoruserVcenterCredentialArgs]] = None) -> Cloudconnectoruser
func GetCloudconnectoruser(ctx *Context, name string, id IDInput, state *CloudconnectoruserState, opts ...ResourceOption) (*Cloudconnectoruser, error)
public static Cloudconnectoruser Get(string name, Input<string> id, CloudconnectoruserState? state, CustomResourceOptions? opts = null)
public static Cloudconnectoruser get(String name, Output<String> id, CloudconnectoruserState state, CustomResourceOptions options)
resources: _: type: avi:Cloudconnectoruser 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.
- Azure
Serviceprincipals List<CloudconnectoruserAzure Serviceprincipal> - Field introduced in 17.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Azure
Userpasses List<CloudconnectoruserAzure Userpass> - Field introduced in 17.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Cloudconnectoruser
Id string - Configpb
Attributes List<CloudconnectoruserConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Gcp
Credentials List<CloudconnectoruserGcp Credential> - Credentials for google cloud platform. Field introduced in 18.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Name string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Nsxt
Credentials List<CloudconnectoruserNsxt Credential> - Credentials to talk to nsx-t manager. Field introduced in 20.1.1. Allowed with any value in enterprise, basic, enterprise with cloud services edition.
- Password string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Private
Key string - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Public
Key string - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tencent
Credentials List<CloudconnectoruserTencent Credential> - Credentials for tencent cloud. Field introduced in 18.2.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Vcenter
Credentials List<CloudconnectoruserVcenter Credential> - Credentials to talk to vcenter. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Azure
Serviceprincipals []CloudconnectoruserAzure Serviceprincipal Args - Field introduced in 17.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Azure
Userpasses []CloudconnectoruserAzure Userpass Args - Field introduced in 17.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Cloudconnectoruser
Id string - Configpb
Attributes []CloudconnectoruserConfigpb Attribute Args - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Gcp
Credentials []CloudconnectoruserGcp Credential Args - Credentials for google cloud platform. Field introduced in 18.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Name string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Nsxt
Credentials []CloudconnectoruserNsxt Credential Args - Credentials to talk to nsx-t manager. Field introduced in 20.1.1. Allowed with any value in enterprise, basic, enterprise with cloud services edition.
- Password string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Private
Key string - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Public
Key string - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tencent
Credentials []CloudconnectoruserTencent Credential Args - Credentials for tencent cloud. Field introduced in 18.2.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Vcenter
Credentials []CloudconnectoruserVcenter Credential Args - Credentials to talk to vcenter. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- azure
Serviceprincipals List<CloudconnectoruserAzure Serviceprincipal> - Field introduced in 17.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- azure
Userpasses List<CloudconnectoruserAzure Userpass> - Field introduced in 17.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- cloudconnectoruser
Id String - configpb
Attributes List<CloudconnectoruserConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- gcp
Credentials List<CloudconnectoruserGcp Credential> - Credentials for google cloud platform. Field introduced in 18.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- nsxt
Credentials List<CloudconnectoruserNsxt Credential> - Credentials to talk to nsx-t manager. Field introduced in 20.1.1. Allowed with any value in enterprise, basic, enterprise with cloud services edition.
- password String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- private
Key String - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- public
Key String - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tencent
Credentials List<CloudconnectoruserTencent Credential> - Credentials for tencent cloud. Field introduced in 18.2.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- vcenter
Credentials List<CloudconnectoruserVcenter Credential> - Credentials to talk to vcenter. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- azure
Serviceprincipals CloudconnectoruserAzure Serviceprincipal[] - Field introduced in 17.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- azure
Userpasses CloudconnectoruserAzure Userpass[] - Field introduced in 17.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- cloudconnectoruser
Id string - configpb
Attributes CloudconnectoruserConfigpb Attribute[] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- gcp
Credentials CloudconnectoruserGcp Credential[] - Credentials for google cloud platform. Field introduced in 18.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- nsxt
Credentials CloudconnectoruserNsxt Credential[] - Credentials to talk to nsx-t manager. Field introduced in 20.1.1. Allowed with any value in enterprise, basic, enterprise with cloud services edition.
- password string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- private
Key string - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- public
Key string - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tencent
Credentials CloudconnectoruserTencent Credential[] - Credentials for tencent cloud. Field introduced in 18.2.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- vcenter
Credentials CloudconnectoruserVcenter Credential[] - Credentials to talk to vcenter. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- azure_
serviceprincipals Sequence[CloudconnectoruserAzure Serviceprincipal Args] - Field introduced in 17.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- azure_
userpasses Sequence[CloudconnectoruserAzure Userpass Args] - Field introduced in 17.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- cloudconnectoruser_
id str - configpb_
attributes Sequence[CloudconnectoruserConfigpb Attribute Args] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- gcp_
credentials Sequence[CloudconnectoruserGcp Credential Args] - Credentials for google cloud platform. Field introduced in 18.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- nsxt_
credentials Sequence[CloudconnectoruserNsxt Credential Args] - Credentials to talk to nsx-t manager. Field introduced in 20.1.1. Allowed with any value in enterprise, basic, enterprise with cloud services edition.
- password str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- private_
key str - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- public_
key str - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant_
ref str - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tencent_
credentials Sequence[CloudconnectoruserTencent Credential Args] - Credentials for tencent cloud. Field introduced in 18.2.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- vcenter_
credentials Sequence[CloudconnectoruserVcenter Credential Args] - Credentials to talk to vcenter. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- azure
Serviceprincipals List<Property Map> - Field introduced in 17.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- azure
Userpasses List<Property Map> - Field introduced in 17.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- cloudconnectoruser
Id String - configpb
Attributes List<Property Map> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- gcp
Credentials List<Property Map> - Credentials for google cloud platform. Field introduced in 18.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- nsxt
Credentials List<Property Map> - Credentials to talk to nsx-t manager. Field introduced in 20.1.1. Allowed with any value in enterprise, basic, enterprise with cloud services edition.
- password String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- private
Key String - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- public
Key String - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tencent
Credentials List<Property Map> - Credentials for tencent cloud. Field introduced in 18.2.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- vcenter
Credentials List<Property Map> - Credentials to talk to vcenter. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
Supporting Types
CloudconnectoruserAzureServiceprincipal, CloudconnectoruserAzureServiceprincipalArgs
- Application
Id string - Authentication
Token string - Tenant
Id string
- Application
Id string - Authentication
Token string - Tenant
Id string
- application
Id String - authentication
Token String - tenant
Id String
- application
Id string - authentication
Token string - tenant
Id string
- application_
id str - authentication_
token str - tenant_
id str
- application
Id String - authentication
Token String - tenant
Id String
CloudconnectoruserAzureUserpass, CloudconnectoruserAzureUserpassArgs
- Password string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Name string - Username string
- Password string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Name string - Username string
- password String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Name String - username String
- password string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Name string - username string
- password str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant_
name str - username str
- password String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Name String - username String
CloudconnectoruserConfigpbAttribute, CloudconnectoruserConfigpbAttributeArgs
- Version string
- Version string
- version String
- version string
- version str
- version String
CloudconnectoruserGcpCredential, CloudconnectoruserGcpCredentialArgs
- Service
Account stringKeyfile Data
- Service
Account stringKeyfile Data
- service
Account StringKeyfile Data
- service
Account stringKeyfile Data
- service
Account StringKeyfile Data
CloudconnectoruserNsxtCredential, CloudconnectoruserNsxtCredentialArgs
CloudconnectoruserTencentCredential, CloudconnectoruserTencentCredentialArgs
- secret_
id str - secret_
key str
CloudconnectoruserVcenterCredential, CloudconnectoruserVcenterCredentialArgs
Package Details
- Repository
- avi vmware/terraform-provider-avi
- License
- Notes
- This Pulumi package is based on the
avi
Terraform Provider.