vra.Integration
Explore with Pulumi AI
Creates a VMware vRealize Automation Integration resource.
Example Usage
S
The following example shows how to create an Integration resource:
import * as pulumi from "@pulumi/pulumi";
import * as vra from "@pulumi/vra";
const _this = new vra.Integration("this", {
    description: "SaltStack Integration",
    integrationProperties: {
        hostName: _var.hostname,
    },
    integrationType: "saltstack",
    privateKeyId: _var.username,
    privateKey: _var.password,
    tags: [{
        key: "created_by",
        value: "vra-terraform-provider",
    }],
});
import pulumi
import pulumi_vra as vra
this = vra.Integration("this",
    description="SaltStack Integration",
    integration_properties={
        "hostName": var["hostname"],
    },
    integration_type="saltstack",
    private_key_id=var["username"],
    private_key=var["password"],
    tags=[{
        "key": "created_by",
        "value": "vra-terraform-provider",
    }])
package main
import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/vra/vra"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := vra.NewIntegration(ctx, "this", &vra.IntegrationArgs{
			Description: pulumi.String("SaltStack Integration"),
			IntegrationProperties: pulumi.StringMap{
				"hostName": pulumi.Any(_var.Hostname),
			},
			IntegrationType: pulumi.String("saltstack"),
			PrivateKeyId:    pulumi.Any(_var.Username),
			PrivateKey:      pulumi.Any(_var.Password),
			Tags: vra.IntegrationTagArray{
				&vra.IntegrationTagArgs{
					Key:   pulumi.String("created_by"),
					Value: pulumi.String("vra-terraform-provider"),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Vra = Pulumi.Vra;
return await Deployment.RunAsync(() => 
{
    var @this = new Vra.Integration("this", new()
    {
        Description = "SaltStack Integration",
        IntegrationProperties = 
        {
            { "hostName", @var.Hostname },
        },
        IntegrationType = "saltstack",
        PrivateKeyId = @var.Username,
        PrivateKey = @var.Password,
        Tags = new[]
        {
            new Vra.Inputs.IntegrationTagArgs
            {
                Key = "created_by",
                Value = "vra-terraform-provider",
            },
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.vra.Integration;
import com.pulumi.vra.IntegrationArgs;
import com.pulumi.vra.inputs.IntegrationTagArgs;
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 this_ = new Integration("this", IntegrationArgs.builder()
            .description("SaltStack Integration")
            .integrationProperties(Map.of("hostName", var_.hostname()))
            .integrationType("saltstack")
            .privateKeyId(var_.username())
            .privateKey(var_.password())
            .tags(IntegrationTagArgs.builder()
                .key("created_by")
                .value("vra-terraform-provider")
                .build())
            .build());
    }
}
resources:
  this:
    type: vra:Integration
    properties:
      description: SaltStack Integration
      integrationProperties:
        hostName: ${var.hostname}
      integrationType: saltstack
      privateKeyId: ${var.username}
      privateKey: ${var.password}
      tags:
        - key: created_by
          value: vra-terraform-provider
Create Integration Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Integration(name: string, args: IntegrationArgs, opts?: CustomResourceOptions);@overload
def Integration(resource_name: str,
                args: IntegrationArgs,
                opts: Optional[ResourceOptions] = None)
@overload
def Integration(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                integration_properties: Optional[Mapping[str, str]] = None,
                integration_type: Optional[str] = None,
                associated_cloud_account_ids: Optional[Sequence[str]] = None,
                certificate: Optional[str] = None,
                custom_properties: Optional[Mapping[str, str]] = None,
                description: Optional[str] = None,
                integration_id: Optional[str] = None,
                name: Optional[str] = None,
                private_key: Optional[str] = None,
                private_key_id: Optional[str] = None,
                tags: Optional[Sequence[IntegrationTagArgs]] = None)func NewIntegration(ctx *Context, name string, args IntegrationArgs, opts ...ResourceOption) (*Integration, error)public Integration(string name, IntegrationArgs args, CustomResourceOptions? opts = null)
public Integration(String name, IntegrationArgs args)
public Integration(String name, IntegrationArgs args, CustomResourceOptions options)
type: vra:Integration
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 IntegrationArgs
- 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 IntegrationArgs
- 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 IntegrationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IntegrationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IntegrationArgs
- 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 integrationResource = new Vra.Integration("integrationResource", new()
{
    IntegrationProperties = 
    {
        { "string", "string" },
    },
    IntegrationType = "string",
    AssociatedCloudAccountIds = new[]
    {
        "string",
    },
    Certificate = "string",
    CustomProperties = 
    {
        { "string", "string" },
    },
    Description = "string",
    IntegrationId = "string",
    Name = "string",
    PrivateKey = "string",
    PrivateKeyId = "string",
    Tags = new[]
    {
        new Vra.Inputs.IntegrationTagArgs
        {
            Key = "string",
            Value = "string",
        },
    },
});
example, err := vra.NewIntegration(ctx, "integrationResource", &vra.IntegrationArgs{
	IntegrationProperties: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	IntegrationType: pulumi.String("string"),
	AssociatedCloudAccountIds: pulumi.StringArray{
		pulumi.String("string"),
	},
	Certificate: pulumi.String("string"),
	CustomProperties: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Description:   pulumi.String("string"),
	IntegrationId: pulumi.String("string"),
	Name:          pulumi.String("string"),
	PrivateKey:    pulumi.String("string"),
	PrivateKeyId:  pulumi.String("string"),
	Tags: vra.IntegrationTagArray{
		&vra.IntegrationTagArgs{
			Key:   pulumi.String("string"),
			Value: pulumi.String("string"),
		},
	},
})
var integrationResource = new Integration("integrationResource", IntegrationArgs.builder()
    .integrationProperties(Map.of("string", "string"))
    .integrationType("string")
    .associatedCloudAccountIds("string")
    .certificate("string")
    .customProperties(Map.of("string", "string"))
    .description("string")
    .integrationId("string")
    .name("string")
    .privateKey("string")
    .privateKeyId("string")
    .tags(IntegrationTagArgs.builder()
        .key("string")
        .value("string")
        .build())
    .build());
integration_resource = vra.Integration("integrationResource",
    integration_properties={
        "string": "string",
    },
    integration_type="string",
    associated_cloud_account_ids=["string"],
    certificate="string",
    custom_properties={
        "string": "string",
    },
    description="string",
    integration_id="string",
    name="string",
    private_key="string",
    private_key_id="string",
    tags=[{
        "key": "string",
        "value": "string",
    }])
const integrationResource = new vra.Integration("integrationResource", {
    integrationProperties: {
        string: "string",
    },
    integrationType: "string",
    associatedCloudAccountIds: ["string"],
    certificate: "string",
    customProperties: {
        string: "string",
    },
    description: "string",
    integrationId: "string",
    name: "string",
    privateKey: "string",
    privateKeyId: "string",
    tags: [{
        key: "string",
        value: "string",
    }],
});
type: vra:Integration
properties:
    associatedCloudAccountIds:
        - string
    certificate: string
    customProperties:
        string: string
    description: string
    integrationId: string
    integrationProperties:
        string: string
    integrationType: string
    name: string
    privateKey: string
    privateKeyId: string
    tags:
        - key: string
          value: string
Integration 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 Integration resource accepts the following input properties:
- IntegrationProperties Dictionary<string, string>
- Integration specific properties supplied in as name value pairs.
- IntegrationType string
- Integration type.
- AssociatedCloud List<string>Account Ids 
- Ids of the cloud accounts to associate with this integration.
- Certificate string
- Certificate to be used to connect to the integration.
- CustomProperties Dictionary<string, string>
- Additional custom properties that may be used to extend the Integration.
- Description string
- A human-friendly description.
- IntegrationId string
- (Optional) The id of the integration.
- Name string
- The name of the integration.
- PrivateKey string
- Secret access key or password to be used to authenticate with the integration.
- PrivateKey stringId 
- Access key id or username to be used to authenticate with the integration.
- 
List<IntegrationTag> 
- A set of tag keys and optional values to apply to the integration. Example: [ { "key" : "provider", "value": "vmware" } ].
- IntegrationProperties map[string]string
- Integration specific properties supplied in as name value pairs.
- IntegrationType string
- Integration type.
- AssociatedCloud []stringAccount Ids 
- Ids of the cloud accounts to associate with this integration.
- Certificate string
- Certificate to be used to connect to the integration.
- CustomProperties map[string]string
- Additional custom properties that may be used to extend the Integration.
- Description string
- A human-friendly description.
- IntegrationId string
- (Optional) The id of the integration.
- Name string
- The name of the integration.
- PrivateKey string
- Secret access key or password to be used to authenticate with the integration.
- PrivateKey stringId 
- Access key id or username to be used to authenticate with the integration.
- 
[]IntegrationTag Args 
- A set of tag keys and optional values to apply to the integration. Example: [ { "key" : "provider", "value": "vmware" } ].
- integrationProperties Map<String,String>
- Integration specific properties supplied in as name value pairs.
- integrationType String
- Integration type.
- associatedCloud List<String>Account Ids 
- Ids of the cloud accounts to associate with this integration.
- certificate String
- Certificate to be used to connect to the integration.
- customProperties Map<String,String>
- Additional custom properties that may be used to extend the Integration.
- description String
- A human-friendly description.
- integrationId String
- (Optional) The id of the integration.
- name String
- The name of the integration.
- privateKey String
- Secret access key or password to be used to authenticate with the integration.
- privateKey StringId 
- Access key id or username to be used to authenticate with the integration.
- 
List<IntegrationTag> 
- A set of tag keys and optional values to apply to the integration. Example: [ { "key" : "provider", "value": "vmware" } ].
- integrationProperties {[key: string]: string}
- Integration specific properties supplied in as name value pairs.
- integrationType string
- Integration type.
- associatedCloud string[]Account Ids 
- Ids of the cloud accounts to associate with this integration.
- certificate string
- Certificate to be used to connect to the integration.
- customProperties {[key: string]: string}
- Additional custom properties that may be used to extend the Integration.
- description string
- A human-friendly description.
- integrationId string
- (Optional) The id of the integration.
- name string
- The name of the integration.
- privateKey string
- Secret access key or password to be used to authenticate with the integration.
- privateKey stringId 
- Access key id or username to be used to authenticate with the integration.
- 
IntegrationTag[] 
- A set of tag keys and optional values to apply to the integration. Example: [ { "key" : "provider", "value": "vmware" } ].
- integration_properties Mapping[str, str]
- Integration specific properties supplied in as name value pairs.
- integration_type str
- Integration type.
- associated_cloud_ Sequence[str]account_ ids 
- Ids of the cloud accounts to associate with this integration.
- certificate str
- Certificate to be used to connect to the integration.
- custom_properties Mapping[str, str]
- Additional custom properties that may be used to extend the Integration.
- description str
- A human-friendly description.
- integration_id str
- (Optional) The id of the integration.
- name str
- The name of the integration.
- private_key str
- Secret access key or password to be used to authenticate with the integration.
- private_key_ strid 
- Access key id or username to be used to authenticate with the integration.
- 
Sequence[IntegrationTag Args] 
- A set of tag keys and optional values to apply to the integration. Example: [ { "key" : "provider", "value": "vmware" } ].
- integrationProperties Map<String>
- Integration specific properties supplied in as name value pairs.
- integrationType String
- Integration type.
- associatedCloud List<String>Account Ids 
- Ids of the cloud accounts to associate with this integration.
- certificate String
- Certificate to be used to connect to the integration.
- customProperties Map<String>
- Additional custom properties that may be used to extend the Integration.
- description String
- A human-friendly description.
- integrationId String
- (Optional) The id of the integration.
- name String
- The name of the integration.
- privateKey String
- Secret access key or password to be used to authenticate with the integration.
- privateKey StringId 
- Access key id or username to be used to authenticate with the integration.
- List<Property Map>
- A set of tag keys and optional values to apply to the integration. Example: [ { "key" : "provider", "value": "vmware" } ].
Outputs
All input properties are implicitly available as output properties. Additionally, the Integration resource produces the following output properties:
- CreatedAt string
- Date when the entity was created. The date is in ISO 8601 and UTC.
- Id string
- The provider-assigned unique ID for this managed resource.
- Links
List<IntegrationLink> 
- HATEOAS of entity.
- OrgId string
- The id of the organization this entity belongs to.
- Owner string
- Email of the user that owns the entity.
- UpdatedAt string
- Date when the entity was last updated. The date is ISO 8601 and UTC.
- CreatedAt string
- Date when the entity was created. The date is in ISO 8601 and UTC.
- Id string
- The provider-assigned unique ID for this managed resource.
- Links
[]IntegrationLink 
- HATEOAS of entity.
- OrgId string
- The id of the organization this entity belongs to.
- Owner string
- Email of the user that owns the entity.
- UpdatedAt string
- Date when the entity was last updated. The date is ISO 8601 and UTC.
- createdAt String
- Date when the entity was created. The date is in ISO 8601 and UTC.
- id String
- The provider-assigned unique ID for this managed resource.
- links
List<IntegrationLink> 
- HATEOAS of entity.
- orgId String
- The id of the organization this entity belongs to.
- owner String
- Email of the user that owns the entity.
- updatedAt String
- Date when the entity was last updated. The date is ISO 8601 and UTC.
- createdAt string
- Date when the entity was created. The date is in ISO 8601 and UTC.
- id string
- The provider-assigned unique ID for this managed resource.
- links
IntegrationLink[] 
- HATEOAS of entity.
- orgId string
- The id of the organization this entity belongs to.
- owner string
- Email of the user that owns the entity.
- updatedAt string
- Date when the entity was last updated. The date is ISO 8601 and UTC.
- created_at str
- Date when the entity was created. The date is in ISO 8601 and UTC.
- id str
- The provider-assigned unique ID for this managed resource.
- links
Sequence[IntegrationLink] 
- HATEOAS of entity.
- org_id str
- The id of the organization this entity belongs to.
- owner str
- Email of the user that owns the entity.
- updated_at str
- Date when the entity was last updated. The date is ISO 8601 and UTC.
- createdAt String
- Date when the entity was created. The date is in ISO 8601 and UTC.
- id String
- The provider-assigned unique ID for this managed resource.
- links List<Property Map>
- HATEOAS of entity.
- orgId String
- The id of the organization this entity belongs to.
- owner String
- Email of the user that owns the entity.
- updatedAt String
- Date when the entity was last updated. The date is ISO 8601 and UTC.
Look up Existing Integration Resource
Get an existing Integration 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?: IntegrationState, opts?: CustomResourceOptions): Integration@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        associated_cloud_account_ids: Optional[Sequence[str]] = None,
        certificate: Optional[str] = None,
        created_at: Optional[str] = None,
        custom_properties: Optional[Mapping[str, str]] = None,
        description: Optional[str] = None,
        integration_id: Optional[str] = None,
        integration_properties: Optional[Mapping[str, str]] = None,
        integration_type: Optional[str] = None,
        links: Optional[Sequence[IntegrationLinkArgs]] = None,
        name: Optional[str] = None,
        org_id: Optional[str] = None,
        owner: Optional[str] = None,
        private_key: Optional[str] = None,
        private_key_id: Optional[str] = None,
        tags: Optional[Sequence[IntegrationTagArgs]] = None,
        updated_at: Optional[str] = None) -> Integrationfunc GetIntegration(ctx *Context, name string, id IDInput, state *IntegrationState, opts ...ResourceOption) (*Integration, error)public static Integration Get(string name, Input<string> id, IntegrationState? state, CustomResourceOptions? opts = null)public static Integration get(String name, Output<String> id, IntegrationState state, CustomResourceOptions options)resources:  _:    type: vra:Integration    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.
- AssociatedCloud List<string>Account Ids 
- Ids of the cloud accounts to associate with this integration.
- Certificate string
- Certificate to be used to connect to the integration.
- CreatedAt string
- Date when the entity was created. The date is in ISO 8601 and UTC.
- CustomProperties Dictionary<string, string>
- Additional custom properties that may be used to extend the Integration.
- Description string
- A human-friendly description.
- IntegrationId string
- (Optional) The id of the integration.
- IntegrationProperties Dictionary<string, string>
- Integration specific properties supplied in as name value pairs.
- IntegrationType string
- Integration type.
- Links
List<IntegrationLink> 
- HATEOAS of entity.
- Name string
- The name of the integration.
- OrgId string
- The id of the organization this entity belongs to.
- Owner string
- Email of the user that owns the entity.
- PrivateKey string
- Secret access key or password to be used to authenticate with the integration.
- PrivateKey stringId 
- Access key id or username to be used to authenticate with the integration.
- 
List<IntegrationTag> 
- A set of tag keys and optional values to apply to the integration. Example: [ { "key" : "provider", "value": "vmware" } ].
- UpdatedAt string
- Date when the entity was last updated. The date is ISO 8601 and UTC.
- AssociatedCloud []stringAccount Ids 
- Ids of the cloud accounts to associate with this integration.
- Certificate string
- Certificate to be used to connect to the integration.
- CreatedAt string
- Date when the entity was created. The date is in ISO 8601 and UTC.
- CustomProperties map[string]string
- Additional custom properties that may be used to extend the Integration.
- Description string
- A human-friendly description.
- IntegrationId string
- (Optional) The id of the integration.
- IntegrationProperties map[string]string
- Integration specific properties supplied in as name value pairs.
- IntegrationType string
- Integration type.
- Links
[]IntegrationLink Args 
- HATEOAS of entity.
- Name string
- The name of the integration.
- OrgId string
- The id of the organization this entity belongs to.
- Owner string
- Email of the user that owns the entity.
- PrivateKey string
- Secret access key or password to be used to authenticate with the integration.
- PrivateKey stringId 
- Access key id or username to be used to authenticate with the integration.
- 
[]IntegrationTag Args 
- A set of tag keys and optional values to apply to the integration. Example: [ { "key" : "provider", "value": "vmware" } ].
- UpdatedAt string
- Date when the entity was last updated. The date is ISO 8601 and UTC.
- associatedCloud List<String>Account Ids 
- Ids of the cloud accounts to associate with this integration.
- certificate String
- Certificate to be used to connect to the integration.
- createdAt String
- Date when the entity was created. The date is in ISO 8601 and UTC.
- customProperties Map<String,String>
- Additional custom properties that may be used to extend the Integration.
- description String
- A human-friendly description.
- integrationId String
- (Optional) The id of the integration.
- integrationProperties Map<String,String>
- Integration specific properties supplied in as name value pairs.
- integrationType String
- Integration type.
- links
List<IntegrationLink> 
- HATEOAS of entity.
- name String
- The name of the integration.
- orgId String
- The id of the organization this entity belongs to.
- owner String
- Email of the user that owns the entity.
- privateKey String
- Secret access key or password to be used to authenticate with the integration.
- privateKey StringId 
- Access key id or username to be used to authenticate with the integration.
- 
List<IntegrationTag> 
- A set of tag keys and optional values to apply to the integration. Example: [ { "key" : "provider", "value": "vmware" } ].
- updatedAt String
- Date when the entity was last updated. The date is ISO 8601 and UTC.
- associatedCloud string[]Account Ids 
- Ids of the cloud accounts to associate with this integration.
- certificate string
- Certificate to be used to connect to the integration.
- createdAt string
- Date when the entity was created. The date is in ISO 8601 and UTC.
- customProperties {[key: string]: string}
- Additional custom properties that may be used to extend the Integration.
- description string
- A human-friendly description.
- integrationId string
- (Optional) The id of the integration.
- integrationProperties {[key: string]: string}
- Integration specific properties supplied in as name value pairs.
- integrationType string
- Integration type.
- links
IntegrationLink[] 
- HATEOAS of entity.
- name string
- The name of the integration.
- orgId string
- The id of the organization this entity belongs to.
- owner string
- Email of the user that owns the entity.
- privateKey string
- Secret access key or password to be used to authenticate with the integration.
- privateKey stringId 
- Access key id or username to be used to authenticate with the integration.
- 
IntegrationTag[] 
- A set of tag keys and optional values to apply to the integration. Example: [ { "key" : "provider", "value": "vmware" } ].
- updatedAt string
- Date when the entity was last updated. The date is ISO 8601 and UTC.
- associated_cloud_ Sequence[str]account_ ids 
- Ids of the cloud accounts to associate with this integration.
- certificate str
- Certificate to be used to connect to the integration.
- created_at str
- Date when the entity was created. The date is in ISO 8601 and UTC.
- custom_properties Mapping[str, str]
- Additional custom properties that may be used to extend the Integration.
- description str
- A human-friendly description.
- integration_id str
- (Optional) The id of the integration.
- integration_properties Mapping[str, str]
- Integration specific properties supplied in as name value pairs.
- integration_type str
- Integration type.
- links
Sequence[IntegrationLink Args] 
- HATEOAS of entity.
- name str
- The name of the integration.
- org_id str
- The id of the organization this entity belongs to.
- owner str
- Email of the user that owns the entity.
- private_key str
- Secret access key or password to be used to authenticate with the integration.
- private_key_ strid 
- Access key id or username to be used to authenticate with the integration.
- 
Sequence[IntegrationTag Args] 
- A set of tag keys and optional values to apply to the integration. Example: [ { "key" : "provider", "value": "vmware" } ].
- updated_at str
- Date when the entity was last updated. The date is ISO 8601 and UTC.
- associatedCloud List<String>Account Ids 
- Ids of the cloud accounts to associate with this integration.
- certificate String
- Certificate to be used to connect to the integration.
- createdAt String
- Date when the entity was created. The date is in ISO 8601 and UTC.
- customProperties Map<String>
- Additional custom properties that may be used to extend the Integration.
- description String
- A human-friendly description.
- integrationId String
- (Optional) The id of the integration.
- integrationProperties Map<String>
- Integration specific properties supplied in as name value pairs.
- integrationType String
- Integration type.
- links List<Property Map>
- HATEOAS of entity.
- name String
- The name of the integration.
- orgId String
- The id of the organization this entity belongs to.
- owner String
- Email of the user that owns the entity.
- privateKey String
- Secret access key or password to be used to authenticate with the integration.
- privateKey StringId 
- Access key id or username to be used to authenticate with the integration.
- List<Property Map>
- A set of tag keys and optional values to apply to the integration. Example: [ { "key" : "provider", "value": "vmware" } ].
- updatedAt String
- Date when the entity was last updated. The date is ISO 8601 and UTC.
Supporting Types
IntegrationLink, IntegrationLinkArgs    
IntegrationTag, IntegrationTagArgs    
Import
To import an existing integration, use the id as in the following example:
$ pulumi import vra:index/integration:Integration `vra_integration 90b9a230-bd61-4d39-a082-b12a17cd03c8`
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- vra vmware/terraform-provider-vra
- License
- Notes
- This Pulumi package is based on the vraTerraform Provider.