import * as pulumi from "@pulumi/pulumi"; import { input as inputs, output as outputs } from "../types"; /** * ## Example Usage * ### S * This is an example of how to create a network profile resource. * * **Network profile:** * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as vra from "@pulumiverse/vra"; * * const simple = new vra.network.Profile("simple", { * description: "Simple Network Profile with no isolation.", * regionId: data.vra_region["this"].id, * fabricNetworkIds: [ * data.vra_fabric_network.subnet_1.id, * data.vra_fabric_network.subnet_2.id, * ], * isolationType: "NONE", * tags: [{ * key: "foo", * value: "bar", * }], * }); * ``` * * A network profile resource supports the following arguments: */ export declare class Profile extends pulumi.CustomResource { /** * Get an existing Profile resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: ProfileState, opts?: pulumi.CustomResourceOptions): Profile; /** * Returns true if the given object is an instance of Profile. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Profile; /** * The ID of the cloud account this entity belongs to. */ readonly cloudAccountId: pulumi.Output; /** * Date when entity was created. Date and time format is ISO 8601 and UTC. */ readonly createdAt: pulumi.Output; /** * Additional properties that may be used to extend the Network Profile object that is produced from this specification. For isolationType security group, datastoreId identifies the Compute Resource Edge datastore. computeCluster and resourcePoolId identify the Compute Resource Edge cluster. For isolationType subnet, distributedLogicalRouterStateLink identifies the on-demand network distributed local router. onDemandNetworkIPAssignmentType identifies the on-demand network IP range assignment type static, dynamic, or mixed. */ readonly customProperties: pulumi.Output<{ [key: string]: any; }>; /** * A human-friendly description. */ readonly description: pulumi.Output; /** * The external regionId of the resource. */ readonly externalRegionId: pulumi.Output; /** * A list of fabric network Ids which are assigned to the network profile. * example:[ "6543" ] */ readonly fabricNetworkIds: pulumi.Output; /** * The id of the fabric network used for outbound access. */ readonly isolatedExternalFabricNetworkId: pulumi.Output; /** * The CIDR prefix length to be used for the isolated networks that are created with the network profile. */ readonly isolatedNetworkCidrPrefix: pulumi.Output; /** * CIDR of the isolation network domain. */ readonly isolatedNetworkDomainCidr: pulumi.Output; /** * The id of the network domain used for creating isolated networks. */ readonly isolatedNetworkDomainId: pulumi.Output; /** * Specifies the isolation type e.g. none, subnet or security group */ readonly isolationType: pulumi.Output; /** * HATEOAS of the entity */ readonly links: pulumi.Output; /** * A human-friendly name used as an identifier in APIs that support this option. */ readonly name: pulumi.Output; /** * ID of organization that entity belongs to. */ readonly orgId: pulumi.Output; /** * The id of the organization this entity belongs to. Deprecated, refer to orgId instead. */ readonly organizationId: pulumi.Output; /** * Email of the user that owns the entity. */ readonly owner: pulumi.Output; /** * The id of the region for which this profile is defined as in vRealize Automation(vRA). */ readonly regionId: pulumi.Output; /** * A list of security group Ids which are assigned to the network profile. * example:[ "6545" ] */ readonly securityGroupIds: pulumi.Output; /** * A set of tag keys and optional values that were set on this Network Profile. * example:[ { "key" : "ownedBy", "value": "Rainpole" } ] */ readonly tags: pulumi.Output; /** * Date when the entity was last updated. The date is ISO 8601 and UTC. */ readonly updatedAt: pulumi.Output; /** * Create a Profile resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ProfileArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Profile resources. */ export interface ProfileState { /** * The ID of the cloud account this entity belongs to. */ cloudAccountId?: pulumi.Input; /** * Date when entity was created. Date and time format is ISO 8601 and UTC. */ createdAt?: pulumi.Input; /** * Additional properties that may be used to extend the Network Profile object that is produced from this specification. For isolationType security group, datastoreId identifies the Compute Resource Edge datastore. computeCluster and resourcePoolId identify the Compute Resource Edge cluster. For isolationType subnet, distributedLogicalRouterStateLink identifies the on-demand network distributed local router. onDemandNetworkIPAssignmentType identifies the on-demand network IP range assignment type static, dynamic, or mixed. */ customProperties?: pulumi.Input<{ [key: string]: any; }>; /** * A human-friendly description. */ description?: pulumi.Input; /** * The external regionId of the resource. */ externalRegionId?: pulumi.Input; /** * A list of fabric network Ids which are assigned to the network profile. * example:[ "6543" ] */ fabricNetworkIds?: pulumi.Input[]>; /** * The id of the fabric network used for outbound access. */ isolatedExternalFabricNetworkId?: pulumi.Input; /** * The CIDR prefix length to be used for the isolated networks that are created with the network profile. */ isolatedNetworkCidrPrefix?: pulumi.Input; /** * CIDR of the isolation network domain. */ isolatedNetworkDomainCidr?: pulumi.Input; /** * The id of the network domain used for creating isolated networks. */ isolatedNetworkDomainId?: pulumi.Input; /** * Specifies the isolation type e.g. none, subnet or security group */ isolationType?: pulumi.Input; /** * HATEOAS of the entity */ links?: pulumi.Input[]>; /** * A human-friendly name used as an identifier in APIs that support this option. */ name?: pulumi.Input; /** * ID of organization that entity belongs to. */ orgId?: pulumi.Input; /** * The id of the organization this entity belongs to. Deprecated, refer to orgId instead. */ organizationId?: pulumi.Input; /** * Email of the user that owns the entity. */ owner?: pulumi.Input; /** * The id of the region for which this profile is defined as in vRealize Automation(vRA). */ regionId?: pulumi.Input; /** * A list of security group Ids which are assigned to the network profile. * example:[ "6545" ] */ securityGroupIds?: pulumi.Input[]>; /** * A set of tag keys and optional values that were set on this Network Profile. * example:[ { "key" : "ownedBy", "value": "Rainpole" } ] */ tags?: pulumi.Input[]>; /** * Date when the entity was last updated. The date is ISO 8601 and UTC. */ updatedAt?: pulumi.Input; } /** * The set of arguments for constructing a Profile resource. */ export interface ProfileArgs { /** * Additional properties that may be used to extend the Network Profile object that is produced from this specification. For isolationType security group, datastoreId identifies the Compute Resource Edge datastore. computeCluster and resourcePoolId identify the Compute Resource Edge cluster. For isolationType subnet, distributedLogicalRouterStateLink identifies the on-demand network distributed local router. onDemandNetworkIPAssignmentType identifies the on-demand network IP range assignment type static, dynamic, or mixed. */ customProperties?: pulumi.Input<{ [key: string]: any; }>; /** * A human-friendly description. */ description?: pulumi.Input; /** * A list of fabric network Ids which are assigned to the network profile. * example:[ "6543" ] */ fabricNetworkIds?: pulumi.Input[]>; /** * The id of the fabric network used for outbound access. */ isolatedExternalFabricNetworkId?: pulumi.Input; /** * The CIDR prefix length to be used for the isolated networks that are created with the network profile. */ isolatedNetworkCidrPrefix?: pulumi.Input; /** * CIDR of the isolation network domain. */ isolatedNetworkDomainCidr?: pulumi.Input; /** * The id of the network domain used for creating isolated networks. */ isolatedNetworkDomainId?: pulumi.Input; /** * Specifies the isolation type e.g. none, subnet or security group */ isolationType?: pulumi.Input; /** * A human-friendly name used as an identifier in APIs that support this option. */ name?: pulumi.Input; /** * The id of the region for which this profile is defined as in vRealize Automation(vRA). */ regionId: pulumi.Input; /** * A list of security group Ids which are assigned to the network profile. * example:[ "6545" ] */ securityGroupIds?: pulumi.Input[]>; /** * A set of tag keys and optional values that were set on this Network Profile. * example:[ { "key" : "ownedBy", "value": "Rainpole" } ] */ tags?: pulumi.Input[]>; }