azure-native.offazure.HyperVSite
Explore with Pulumi AI
Site REST Resource. Azure REST API version: 2020-07-07. Prior API version in Azure Native 1.x: 2020-01-01.
Example Usage
Create Hyper-V site
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var hyperVSite = new AzureNative.OffAzure.HyperVSite("hyperVSite", new()
{
Location = "eastus",
Properties = new AzureNative.OffAzure.Inputs.SitePropertiesArgs
{
ServicePrincipalIdentityDetails = new AzureNative.OffAzure.Inputs.SiteSpnPropertiesArgs
{
AadAuthority = "https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47",
ApplicationId = "e9f013df-2a2a-4871-b766-e79867f30348",
Audience = "https://72f988bf-86f1-41af-91ab-2d7cd011db47/MaheshSite17ac9agentauthaadapp",
ObjectId = "2cd492bc-7ef3-4ee0-b301-59a88108b47b",
TenantId = "72f988bf-86f1-41af-91ab-2d7cd011db47",
},
},
ResourceGroupName = "pajindTest",
SiteName = "appliance1e39site",
});
});
package main
import (
offazure "github.com/pulumi/pulumi-azure-native-sdk/offazure/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := offazure.NewHyperVSite(ctx, "hyperVSite", &offazure.HyperVSiteArgs{
Location: pulumi.String("eastus"),
Properties: &offazure.SitePropertiesArgs{
ServicePrincipalIdentityDetails: &offazure.SiteSpnPropertiesArgs{
AadAuthority: pulumi.String("https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47"),
ApplicationId: pulumi.String("e9f013df-2a2a-4871-b766-e79867f30348"),
Audience: pulumi.String("https://72f988bf-86f1-41af-91ab-2d7cd011db47/MaheshSite17ac9agentauthaadapp"),
ObjectId: pulumi.String("2cd492bc-7ef3-4ee0-b301-59a88108b47b"),
TenantId: pulumi.String("72f988bf-86f1-41af-91ab-2d7cd011db47"),
},
},
ResourceGroupName: pulumi.String("pajindTest"),
SiteName: pulumi.String("appliance1e39site"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.offazure.HyperVSite;
import com.pulumi.azurenative.offazure.HyperVSiteArgs;
import com.pulumi.azurenative.offazure.inputs.SitePropertiesArgs;
import com.pulumi.azurenative.offazure.inputs.SiteSpnPropertiesArgs;
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 hyperVSite = new HyperVSite("hyperVSite", HyperVSiteArgs.builder()
.location("eastus")
.properties(SitePropertiesArgs.builder()
.servicePrincipalIdentityDetails(SiteSpnPropertiesArgs.builder()
.aadAuthority("https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47")
.applicationId("e9f013df-2a2a-4871-b766-e79867f30348")
.audience("https://72f988bf-86f1-41af-91ab-2d7cd011db47/MaheshSite17ac9agentauthaadapp")
.objectId("2cd492bc-7ef3-4ee0-b301-59a88108b47b")
.tenantId("72f988bf-86f1-41af-91ab-2d7cd011db47")
.build())
.build())
.resourceGroupName("pajindTest")
.siteName("appliance1e39site")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
hyper_v_site = azure_native.offazure.HyperVSite("hyperVSite",
location="eastus",
properties=azure_native.offazure.SitePropertiesArgs(
service_principal_identity_details=azure_native.offazure.SiteSpnPropertiesArgs(
aad_authority="https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47",
application_id="e9f013df-2a2a-4871-b766-e79867f30348",
audience="https://72f988bf-86f1-41af-91ab-2d7cd011db47/MaheshSite17ac9agentauthaadapp",
object_id="2cd492bc-7ef3-4ee0-b301-59a88108b47b",
tenant_id="72f988bf-86f1-41af-91ab-2d7cd011db47",
),
),
resource_group_name="pajindTest",
site_name="appliance1e39site")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const hyperVSite = new azure_native.offazure.HyperVSite("hyperVSite", {
location: "eastus",
properties: {
servicePrincipalIdentityDetails: {
aadAuthority: "https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47",
applicationId: "e9f013df-2a2a-4871-b766-e79867f30348",
audience: "https://72f988bf-86f1-41af-91ab-2d7cd011db47/MaheshSite17ac9agentauthaadapp",
objectId: "2cd492bc-7ef3-4ee0-b301-59a88108b47b",
tenantId: "72f988bf-86f1-41af-91ab-2d7cd011db47",
},
},
resourceGroupName: "pajindTest",
siteName: "appliance1e39site",
});
resources:
hyperVSite:
type: azure-native:offazure:HyperVSite
properties:
location: eastus
properties:
servicePrincipalIdentityDetails:
aadAuthority: https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47
applicationId: e9f013df-2a2a-4871-b766-e79867f30348
audience: https://72f988bf-86f1-41af-91ab-2d7cd011db47/MaheshSite17ac9agentauthaadapp
objectId: 2cd492bc-7ef3-4ee0-b301-59a88108b47b
tenantId: 72f988bf-86f1-41af-91ab-2d7cd011db47
resourceGroupName: pajindTest
siteName: appliance1e39site
Create HyperVSite Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new HyperVSite(name: string, args: HyperVSiteArgs, opts?: CustomResourceOptions);
@overload
def HyperVSite(resource_name: str,
args: HyperVSiteArgs,
opts: Optional[ResourceOptions] = None)
@overload
def HyperVSite(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
e_tag: Optional[str] = None,
location: Optional[str] = None,
name: Optional[str] = None,
properties: Optional[SitePropertiesArgs] = None,
site_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewHyperVSite(ctx *Context, name string, args HyperVSiteArgs, opts ...ResourceOption) (*HyperVSite, error)
public HyperVSite(string name, HyperVSiteArgs args, CustomResourceOptions? opts = null)
public HyperVSite(String name, HyperVSiteArgs args)
public HyperVSite(String name, HyperVSiteArgs args, CustomResourceOptions options)
type: azure-native:offazure:HyperVSite
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 HyperVSiteArgs
- 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 HyperVSiteArgs
- 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 HyperVSiteArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args HyperVSiteArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args HyperVSiteArgs
- 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 hyperVSiteResource = new AzureNative.OffAzure.HyperVSite("hyperVSiteResource", new()
{
ResourceGroupName = "string",
ETag = "string",
Location = "string",
Name = "string",
Properties = new AzureNative.OffAzure.Inputs.SitePropertiesArgs
{
AgentDetails = new AzureNative.OffAzure.Inputs.SiteAgentPropertiesArgs
{
KeyVaultId = "string",
KeyVaultUri = "string",
},
ApplianceName = "string",
DiscoverySolutionId = "string",
ServicePrincipalIdentityDetails = new AzureNative.OffAzure.Inputs.SiteSpnPropertiesArgs
{
AadAuthority = "string",
ApplicationId = "string",
Audience = "string",
ObjectId = "string",
RawCertData = "string",
TenantId = "string",
},
},
SiteName = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := offazure.NewHyperVSite(ctx, "hyperVSiteResource", &offazure.HyperVSiteArgs{
ResourceGroupName: pulumi.String("string"),
ETag: pulumi.String("string"),
Location: pulumi.String("string"),
Name: pulumi.String("string"),
Properties: &offazure.SitePropertiesArgs{
AgentDetails: &offazure.SiteAgentPropertiesArgs{
KeyVaultId: pulumi.String("string"),
KeyVaultUri: pulumi.String("string"),
},
ApplianceName: pulumi.String("string"),
DiscoverySolutionId: pulumi.String("string"),
ServicePrincipalIdentityDetails: &offazure.SiteSpnPropertiesArgs{
AadAuthority: pulumi.String("string"),
ApplicationId: pulumi.String("string"),
Audience: pulumi.String("string"),
ObjectId: pulumi.String("string"),
RawCertData: pulumi.String("string"),
TenantId: pulumi.String("string"),
},
},
SiteName: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var hyperVSiteResource = new HyperVSite("hyperVSiteResource", HyperVSiteArgs.builder()
.resourceGroupName("string")
.eTag("string")
.location("string")
.name("string")
.properties(SitePropertiesArgs.builder()
.agentDetails(SiteAgentPropertiesArgs.builder()
.keyVaultId("string")
.keyVaultUri("string")
.build())
.applianceName("string")
.discoverySolutionId("string")
.servicePrincipalIdentityDetails(SiteSpnPropertiesArgs.builder()
.aadAuthority("string")
.applicationId("string")
.audience("string")
.objectId("string")
.rawCertData("string")
.tenantId("string")
.build())
.build())
.siteName("string")
.tags(Map.of("string", "string"))
.build());
hyper_v_site_resource = azure_native.offazure.HyperVSite("hyperVSiteResource",
resource_group_name="string",
e_tag="string",
location="string",
name="string",
properties=azure_native.offazure.SitePropertiesArgs(
agent_details=azure_native.offazure.SiteAgentPropertiesArgs(
key_vault_id="string",
key_vault_uri="string",
),
appliance_name="string",
discovery_solution_id="string",
service_principal_identity_details=azure_native.offazure.SiteSpnPropertiesArgs(
aad_authority="string",
application_id="string",
audience="string",
object_id="string",
raw_cert_data="string",
tenant_id="string",
),
),
site_name="string",
tags={
"string": "string",
})
const hyperVSiteResource = new azure_native.offazure.HyperVSite("hyperVSiteResource", {
resourceGroupName: "string",
eTag: "string",
location: "string",
name: "string",
properties: {
agentDetails: {
keyVaultId: "string",
keyVaultUri: "string",
},
applianceName: "string",
discoverySolutionId: "string",
servicePrincipalIdentityDetails: {
aadAuthority: "string",
applicationId: "string",
audience: "string",
objectId: "string",
rawCertData: "string",
tenantId: "string",
},
},
siteName: "string",
tags: {
string: "string",
},
});
type: azure-native:offazure:HyperVSite
properties:
eTag: string
location: string
name: string
properties:
agentDetails:
keyVaultId: string
keyVaultUri: string
applianceName: string
discoverySolutionId: string
servicePrincipalIdentityDetails:
aadAuthority: string
applicationId: string
audience: string
objectId: string
rawCertData: string
tenantId: string
resourceGroupName: string
siteName: string
tags:
string: string
HyperVSite Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The HyperVSite resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- ETag string
- eTag for concurrency control.
- Location string
- Azure location in which Sites is created.
- Name string
- Name of the Hyper-V site.
- Properties
Pulumi.
Azure Native. Off Azure. Inputs. Site Properties - Nested properties of Hyper-V site.
- Site
Name string - Site name.
- Dictionary<string, string>
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- ETag string
- eTag for concurrency control.
- Location string
- Azure location in which Sites is created.
- Name string
- Name of the Hyper-V site.
- Properties
Site
Properties Args - Nested properties of Hyper-V site.
- Site
Name string - Site name.
- map[string]string
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- e
Tag String - eTag for concurrency control.
- location String
- Azure location in which Sites is created.
- name String
- Name of the Hyper-V site.
- properties
Site
Properties - Nested properties of Hyper-V site.
- site
Name String - Site name.
- Map<String,String>
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- e
Tag string - eTag for concurrency control.
- location string
- Azure location in which Sites is created.
- name string
- Name of the Hyper-V site.
- properties
Site
Properties - Nested properties of Hyper-V site.
- site
Name string - Site name.
- {[key: string]: string}
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- e_
tag str - eTag for concurrency control.
- location str
- Azure location in which Sites is created.
- name str
- Name of the Hyper-V site.
- properties
Site
Properties Args - Nested properties of Hyper-V site.
- site_
name str - Site name.
- Mapping[str, str]
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- e
Tag String - eTag for concurrency control.
- location String
- Azure location in which Sites is created.
- name String
- Name of the Hyper-V site.
- properties Property Map
- Nested properties of Hyper-V site.
- site
Name String - Site name.
- Map<String>
Outputs
All input properties are implicitly available as output properties. Additionally, the HyperVSite resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- System
Data Pulumi.Azure Native. Off Azure. Outputs. System Data Response - Metadata pertaining to creation and last modification of the resource.
- Type string
- Type of resource. Type = Microsoft.OffAzure/HyperVSites.
- Id string
- The provider-assigned unique ID for this managed resource.
- System
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- Type string
- Type of resource. Type = Microsoft.OffAzure/HyperVSites.
- id String
- The provider-assigned unique ID for this managed resource.
- system
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type String
- Type of resource. Type = Microsoft.OffAzure/HyperVSites.
- id string
- The provider-assigned unique ID for this managed resource.
- system
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type string
- Type of resource. Type = Microsoft.OffAzure/HyperVSites.
- id str
- The provider-assigned unique ID for this managed resource.
- system_
data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type str
- Type of resource. Type = Microsoft.OffAzure/HyperVSites.
- id String
- The provider-assigned unique ID for this managed resource.
- system
Data Property Map - Metadata pertaining to creation and last modification of the resource.
- type String
- Type of resource. Type = Microsoft.OffAzure/HyperVSites.
Supporting Types
SiteAgentProperties, SiteAgentPropertiesArgs
- Key
Vault stringId - Gets or sets the key vault ARM Id.
- Key
Vault stringUri - Gets or sets the key vault URI.
- Key
Vault stringId - Gets or sets the key vault ARM Id.
- Key
Vault stringUri - Gets or sets the key vault URI.
- key
Vault StringId - Gets or sets the key vault ARM Id.
- key
Vault StringUri - Gets or sets the key vault URI.
- key
Vault stringId - Gets or sets the key vault ARM Id.
- key
Vault stringUri - Gets or sets the key vault URI.
- key_
vault_ strid - Gets or sets the key vault ARM Id.
- key_
vault_ struri - Gets or sets the key vault URI.
- key
Vault StringId - Gets or sets the key vault ARM Id.
- key
Vault StringUri - Gets or sets the key vault URI.
SiteAgentPropertiesResponse, SiteAgentPropertiesResponseArgs
- Id string
- Gets the ID of the agent.
- Last
Heart stringBeat Utc - Gets the last heartbeat time of the agent in UTC.
- Version string
- Gets the version of the agent.
- Key
Vault stringId - Gets or sets the key vault ARM Id.
- Key
Vault stringUri - Gets or sets the key vault URI.
- Id string
- Gets the ID of the agent.
- Last
Heart stringBeat Utc - Gets the last heartbeat time of the agent in UTC.
- Version string
- Gets the version of the agent.
- Key
Vault stringId - Gets or sets the key vault ARM Id.
- Key
Vault stringUri - Gets or sets the key vault URI.
- id String
- Gets the ID of the agent.
- last
Heart StringBeat Utc - Gets the last heartbeat time of the agent in UTC.
- version String
- Gets the version of the agent.
- key
Vault StringId - Gets or sets the key vault ARM Id.
- key
Vault StringUri - Gets or sets the key vault URI.
- id string
- Gets the ID of the agent.
- last
Heart stringBeat Utc - Gets the last heartbeat time of the agent in UTC.
- version string
- Gets the version of the agent.
- key
Vault stringId - Gets or sets the key vault ARM Id.
- key
Vault stringUri - Gets or sets the key vault URI.
- id str
- Gets the ID of the agent.
- last_
heart_ strbeat_ utc - Gets the last heartbeat time of the agent in UTC.
- version str
- Gets the version of the agent.
- key_
vault_ strid - Gets or sets the key vault ARM Id.
- key_
vault_ struri - Gets or sets the key vault URI.
- id String
- Gets the ID of the agent.
- last
Heart StringBeat Utc - Gets the last heartbeat time of the agent in UTC.
- version String
- Gets the version of the agent.
- key
Vault StringId - Gets or sets the key vault ARM Id.
- key
Vault StringUri - Gets or sets the key vault URI.
SiteProperties, SitePropertiesArgs
- Agent
Details Pulumi.Azure Native. Off Azure. Inputs. Site Agent Properties - On-premises agent details.
- Appliance
Name string - Appliance Name.
- Discovery
Solution stringId - ARM ID of migration hub solution for SDS.
- Service
Principal Pulumi.Identity Details Azure Native. Off Azure. Inputs. Site Spn Properties - Service principal identity details used by agent for communication to the service.
- Agent
Details SiteAgent Properties - On-premises agent details.
- Appliance
Name string - Appliance Name.
- Discovery
Solution stringId - ARM ID of migration hub solution for SDS.
- Service
Principal SiteIdentity Details Spn Properties - Service principal identity details used by agent for communication to the service.
- agent
Details SiteAgent Properties - On-premises agent details.
- appliance
Name String - Appliance Name.
- discovery
Solution StringId - ARM ID of migration hub solution for SDS.
- service
Principal SiteIdentity Details Spn Properties - Service principal identity details used by agent for communication to the service.
- agent
Details SiteAgent Properties - On-premises agent details.
- appliance
Name string - Appliance Name.
- discovery
Solution stringId - ARM ID of migration hub solution for SDS.
- service
Principal SiteIdentity Details Spn Properties - Service principal identity details used by agent for communication to the service.
- agent_
details SiteAgent Properties - On-premises agent details.
- appliance_
name str - Appliance Name.
- discovery_
solution_ strid - ARM ID of migration hub solution for SDS.
- service_
principal_ Siteidentity_ details Spn Properties - Service principal identity details used by agent for communication to the service.
- agent
Details Property Map - On-premises agent details.
- appliance
Name String - Appliance Name.
- discovery
Solution StringId - ARM ID of migration hub solution for SDS.
- service
Principal Property MapIdentity Details - Service principal identity details used by agent for communication to the service.
SitePropertiesResponse, SitePropertiesResponseArgs
- Service
Endpoint string - Service endpoint.
- Agent
Details Pulumi.Azure Native. Off Azure. Inputs. Site Agent Properties Response - On-premises agent details.
- Appliance
Name string - Appliance Name.
- Discovery
Solution stringId - ARM ID of migration hub solution for SDS.
- Service
Principal Pulumi.Identity Details Azure Native. Off Azure. Inputs. Site Spn Properties Response - Service principal identity details used by agent for communication to the service.
- Service
Endpoint string - Service endpoint.
- Agent
Details SiteAgent Properties Response - On-premises agent details.
- Appliance
Name string - Appliance Name.
- Discovery
Solution stringId - ARM ID of migration hub solution for SDS.
- Service
Principal SiteIdentity Details Spn Properties Response - Service principal identity details used by agent for communication to the service.
- service
Endpoint String - Service endpoint.
- agent
Details SiteAgent Properties Response - On-premises agent details.
- appliance
Name String - Appliance Name.
- discovery
Solution StringId - ARM ID of migration hub solution for SDS.
- service
Principal SiteIdentity Details Spn Properties Response - Service principal identity details used by agent for communication to the service.
- service
Endpoint string - Service endpoint.
- agent
Details SiteAgent Properties Response - On-premises agent details.
- appliance
Name string - Appliance Name.
- discovery
Solution stringId - ARM ID of migration hub solution for SDS.
- service
Principal SiteIdentity Details Spn Properties Response - Service principal identity details used by agent for communication to the service.
- service_
endpoint str - Service endpoint.
- agent_
details SiteAgent Properties Response - On-premises agent details.
- appliance_
name str - Appliance Name.
- discovery_
solution_ strid - ARM ID of migration hub solution for SDS.
- service_
principal_ Siteidentity_ details Spn Properties Response - Service principal identity details used by agent for communication to the service.
- service
Endpoint String - Service endpoint.
- agent
Details Property Map - On-premises agent details.
- appliance
Name String - Appliance Name.
- discovery
Solution StringId - ARM ID of migration hub solution for SDS.
- service
Principal Property MapIdentity Details - Service principal identity details used by agent for communication to the service.
SiteSpnProperties, SiteSpnPropertiesArgs
- string
- Gets or sets the AAD Authority URL which was used to request the token for the service principal.
- Application
Id string - Gets or sets the application/client Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- Audience string
- Gets or sets the intended audience for the service principal.
- Object
Id string Gets or sets the object Id of the service principal with which the on-premise
management/data plane components would communicate with our Azure
services.
- Raw
Cert stringData - Gets or sets the raw certificate data for building certificate expiry flows.
- Tenant
Id string - Gets or sets the tenant Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- string
- Gets or sets the AAD Authority URL which was used to request the token for the service principal.
- Application
Id string - Gets or sets the application/client Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- Audience string
- Gets or sets the intended audience for the service principal.
- Object
Id string Gets or sets the object Id of the service principal with which the on-premise
management/data plane components would communicate with our Azure
services.
- Raw
Cert stringData - Gets or sets the raw certificate data for building certificate expiry flows.
- Tenant
Id string - Gets or sets the tenant Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- String
- Gets or sets the AAD Authority URL which was used to request the token for the service principal.
- application
Id String - Gets or sets the application/client Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- audience String
- Gets or sets the intended audience for the service principal.
- object
Id String Gets or sets the object Id of the service principal with which the on-premise
management/data plane components would communicate with our Azure
services.
- raw
Cert StringData - Gets or sets the raw certificate data for building certificate expiry flows.
- tenant
Id String - Gets or sets the tenant Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- string
- Gets or sets the AAD Authority URL which was used to request the token for the service principal.
- application
Id string - Gets or sets the application/client Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- audience string
- Gets or sets the intended audience for the service principal.
- object
Id string Gets or sets the object Id of the service principal with which the on-premise
management/data plane components would communicate with our Azure
services.
- raw
Cert stringData - Gets or sets the raw certificate data for building certificate expiry flows.
- tenant
Id string - Gets or sets the tenant Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- str
- Gets or sets the AAD Authority URL which was used to request the token for the service principal.
- application_
id str - Gets or sets the application/client Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- audience str
- Gets or sets the intended audience for the service principal.
- object_
id str Gets or sets the object Id of the service principal with which the on-premise
management/data plane components would communicate with our Azure
services.
- raw_
cert_ strdata - Gets or sets the raw certificate data for building certificate expiry flows.
- tenant_
id str - Gets or sets the tenant Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- String
- Gets or sets the AAD Authority URL which was used to request the token for the service principal.
- application
Id String - Gets or sets the application/client Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- audience String
- Gets or sets the intended audience for the service principal.
- object
Id String Gets or sets the object Id of the service principal with which the on-premise
management/data plane components would communicate with our Azure
services.
- raw
Cert StringData - Gets or sets the raw certificate data for building certificate expiry flows.
- tenant
Id String - Gets or sets the tenant Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
SiteSpnPropertiesResponse, SiteSpnPropertiesResponseArgs
- string
- Gets or sets the AAD Authority URL which was used to request the token for the service principal.
- Application
Id string - Gets or sets the application/client Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- Audience string
- Gets or sets the intended audience for the service principal.
- Object
Id string Gets or sets the object Id of the service principal with which the on-premise
management/data plane components would communicate with our Azure
services.
- Raw
Cert stringData - Gets or sets the raw certificate data for building certificate expiry flows.
- Tenant
Id string - Gets or sets the tenant Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- string
- Gets or sets the AAD Authority URL which was used to request the token for the service principal.
- Application
Id string - Gets or sets the application/client Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- Audience string
- Gets or sets the intended audience for the service principal.
- Object
Id string Gets or sets the object Id of the service principal with which the on-premise
management/data plane components would communicate with our Azure
services.
- Raw
Cert stringData - Gets or sets the raw certificate data for building certificate expiry flows.
- Tenant
Id string - Gets or sets the tenant Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- String
- Gets or sets the AAD Authority URL which was used to request the token for the service principal.
- application
Id String - Gets or sets the application/client Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- audience String
- Gets or sets the intended audience for the service principal.
- object
Id String Gets or sets the object Id of the service principal with which the on-premise
management/data plane components would communicate with our Azure
services.
- raw
Cert StringData - Gets or sets the raw certificate data for building certificate expiry flows.
- tenant
Id String - Gets or sets the tenant Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- string
- Gets or sets the AAD Authority URL which was used to request the token for the service principal.
- application
Id string - Gets or sets the application/client Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- audience string
- Gets or sets the intended audience for the service principal.
- object
Id string Gets or sets the object Id of the service principal with which the on-premise
management/data plane components would communicate with our Azure
services.
- raw
Cert stringData - Gets or sets the raw certificate data for building certificate expiry flows.
- tenant
Id string - Gets or sets the tenant Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- str
- Gets or sets the AAD Authority URL which was used to request the token for the service principal.
- application_
id str - Gets or sets the application/client Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- audience str
- Gets or sets the intended audience for the service principal.
- object_
id str Gets or sets the object Id of the service principal with which the on-premise
management/data plane components would communicate with our Azure
services.
- raw_
cert_ strdata - Gets or sets the raw certificate data for building certificate expiry flows.
- tenant_
id str - Gets or sets the tenant Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- String
- Gets or sets the AAD Authority URL which was used to request the token for the service principal.
- application
Id String - Gets or sets the application/client Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- audience String
- Gets or sets the intended audience for the service principal.
- object
Id String Gets or sets the object Id of the service principal with which the on-premise
management/data plane components would communicate with our Azure
services.
- raw
Cert StringData - Gets or sets the raw certificate data for building certificate expiry flows.
- tenant
Id String - Gets or sets the tenant Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:offazure:HyperVSite appliance1e39site /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.OffAzure/HyperVSites/{siteName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0