azure-native.compute.CloudService
Explore with Pulumi AI
Describes the cloud service. API Version: 2021-03-01.
Example Usage
Create New Cloud Service with Multiple Roles
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var cloudService = new AzureNative.Compute.CloudService("cloudService", new()
{
CloudServiceName = "{cs-name}",
Location = "westus",
Properties = new AzureNative.Compute.Inputs.CloudServicePropertiesArgs
{
Configuration = "{ServiceConfiguration}",
NetworkProfile = new AzureNative.Compute.Inputs.CloudServiceNetworkProfileArgs
{
LoadBalancerConfigurations = new[]
{
new AzureNative.Compute.Inputs.LoadBalancerConfigurationArgs
{
Name = "contosolb",
Properties = new AzureNative.Compute.Inputs.LoadBalancerConfigurationPropertiesArgs
{
FrontendIPConfigurations = new[]
{
new AzureNative.Compute.Inputs.LoadBalancerFrontendIPConfigurationArgs
{
Name = "contosofe",
Properties = new AzureNative.Compute.Inputs.LoadBalancerFrontendIPConfigurationPropertiesArgs
{
PublicIPAddress = new AzureNative.Compute.Inputs.SubResourceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/ConstosoRG/providers/Microsoft.Network/publicIPAddresses/contosopublicip",
},
},
},
},
},
},
},
},
PackageUrl = "{PackageUrl}",
RoleProfile = new AzureNative.Compute.Inputs.CloudServiceRoleProfileArgs
{
Roles = new[]
{
new AzureNative.Compute.Inputs.CloudServiceRoleProfilePropertiesArgs
{
Name = "ContosoFrontend",
Sku = new AzureNative.Compute.Inputs.CloudServiceRoleSkuArgs
{
Capacity = 1,
Name = "Standard_D1_v2",
Tier = "Standard",
},
},
new AzureNative.Compute.Inputs.CloudServiceRoleProfilePropertiesArgs
{
Name = "ContosoBackend",
Sku = new AzureNative.Compute.Inputs.CloudServiceRoleSkuArgs
{
Capacity = 1,
Name = "Standard_D1_v2",
Tier = "Standard",
},
},
},
},
UpgradeMode = "Auto",
},
ResourceGroupName = "ConstosoRG",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.CloudService;
import com.pulumi.azurenative.compute.CloudServiceArgs;
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 cloudService = new CloudService("cloudService", CloudServiceArgs.builder()
.cloudServiceName("{cs-name}")
.location("westus")
.properties(Map.ofEntries(
Map.entry("configuration", "{ServiceConfiguration}"),
Map.entry("networkProfile", Map.of("loadBalancerConfigurations", Map.ofEntries(
Map.entry("name", "contosolb"),
Map.entry("properties", Map.of("frontendIPConfigurations", Map.ofEntries(
Map.entry("name", "contosofe"),
Map.entry("properties", Map.of("publicIPAddress", Map.of("id", "/subscriptions/{subscription-id}/resourceGroups/ConstosoRG/providers/Microsoft.Network/publicIPAddresses/contosopublicip")))
)))
))),
Map.entry("packageUrl", "{PackageUrl}"),
Map.entry("roleProfile", Map.of("roles",
Map.ofEntries(
Map.entry("name", "ContosoFrontend"),
Map.entry("sku", Map.ofEntries(
Map.entry("capacity", 1),
Map.entry("name", "Standard_D1_v2"),
Map.entry("tier", "Standard")
))
),
Map.ofEntries(
Map.entry("name", "ContosoBackend"),
Map.entry("sku", Map.ofEntries(
Map.entry("capacity", 1),
Map.entry("name", "Standard_D1_v2"),
Map.entry("tier", "Standard")
))
))),
Map.entry("upgradeMode", "Auto")
))
.resourceGroupName("ConstosoRG")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
cloud_service = azure_native.compute.CloudService("cloudService",
cloud_service_name="{cs-name}",
location="westus",
properties=azure_native.compute.CloudServicePropertiesResponseArgs(
configuration="{ServiceConfiguration}",
network_profile={
"loadBalancerConfigurations": [{
"name": "contosolb",
"properties": {
"frontendIPConfigurations": [{
"name": "contosofe",
"properties": {
"publicIPAddress": azure_native.compute.SubResourceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/ConstosoRG/providers/Microsoft.Network/publicIPAddresses/contosopublicip",
),
},
}],
},
}],
},
package_url="{PackageUrl}",
role_profile={
"roles": [
{
"name": "ContosoFrontend",
"sku": azure_native.compute.CloudServiceRoleSkuArgs(
capacity=1,
name="Standard_D1_v2",
tier="Standard",
),
},
{
"name": "ContosoBackend",
"sku": azure_native.compute.CloudServiceRoleSkuArgs(
capacity=1,
name="Standard_D1_v2",
tier="Standard",
),
},
],
},
upgrade_mode="Auto",
),
resource_group_name="ConstosoRG")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const cloudService = new azure_native.compute.CloudService("cloudService", {
cloudServiceName: "{cs-name}",
location: "westus",
properties: {
configuration: "{ServiceConfiguration}",
networkProfile: {
loadBalancerConfigurations: [{
name: "contosolb",
properties: {
frontendIPConfigurations: [{
name: "contosofe",
properties: {
publicIPAddress: {
id: "/subscriptions/{subscription-id}/resourceGroups/ConstosoRG/providers/Microsoft.Network/publicIPAddresses/contosopublicip",
},
},
}],
},
}],
},
packageUrl: "{PackageUrl}",
roleProfile: {
roles: [
{
name: "ContosoFrontend",
sku: {
capacity: 1,
name: "Standard_D1_v2",
tier: "Standard",
},
},
{
name: "ContosoBackend",
sku: {
capacity: 1,
name: "Standard_D1_v2",
tier: "Standard",
},
},
],
},
upgradeMode: "Auto",
},
resourceGroupName: "ConstosoRG",
});
resources:
cloudService:
type: azure-native:compute:CloudService
properties:
cloudServiceName: '{cs-name}'
location: westus
properties:
configuration: '{ServiceConfiguration}'
networkProfile:
loadBalancerConfigurations:
- name: contosolb
properties:
frontendIPConfigurations:
- name: contosofe
properties:
publicIPAddress:
id: /subscriptions/{subscription-id}/resourceGroups/ConstosoRG/providers/Microsoft.Network/publicIPAddresses/contosopublicip
packageUrl: '{PackageUrl}'
roleProfile:
roles:
- name: ContosoFrontend
sku:
capacity: 1
name: Standard_D1_v2
tier: Standard
- name: ContosoBackend
sku:
capacity: 1
name: Standard_D1_v2
tier: Standard
upgradeMode: Auto
resourceGroupName: ConstosoRG
Create New Cloud Service with Single Role
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var cloudService = new AzureNative.Compute.CloudService("cloudService", new()
{
CloudServiceName = "{cs-name}",
Location = "westus",
Properties = new AzureNative.Compute.Inputs.CloudServicePropertiesArgs
{
Configuration = "{ServiceConfiguration}",
NetworkProfile = new AzureNative.Compute.Inputs.CloudServiceNetworkProfileArgs
{
LoadBalancerConfigurations = new[]
{
new AzureNative.Compute.Inputs.LoadBalancerConfigurationArgs
{
Name = "myLoadBalancer",
Properties = new AzureNative.Compute.Inputs.LoadBalancerConfigurationPropertiesArgs
{
FrontendIPConfigurations = new[]
{
new AzureNative.Compute.Inputs.LoadBalancerFrontendIPConfigurationArgs
{
Name = "myfe",
Properties = new AzureNative.Compute.Inputs.LoadBalancerFrontendIPConfigurationPropertiesArgs
{
PublicIPAddress = new AzureNative.Compute.Inputs.SubResourceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/ConstosoRG/providers/Microsoft.Network/publicIPAddresses/myPublicIP",
},
},
},
},
},
},
},
},
PackageUrl = "{PackageUrl}",
RoleProfile = new AzureNative.Compute.Inputs.CloudServiceRoleProfileArgs
{
Roles = new[]
{
new AzureNative.Compute.Inputs.CloudServiceRoleProfilePropertiesArgs
{
Name = "ContosoFrontend",
Sku = new AzureNative.Compute.Inputs.CloudServiceRoleSkuArgs
{
Capacity = 1,
Name = "Standard_D1_v2",
Tier = "Standard",
},
},
},
},
UpgradeMode = "Auto",
},
ResourceGroupName = "ConstosoRG",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.CloudService;
import com.pulumi.azurenative.compute.CloudServiceArgs;
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 cloudService = new CloudService("cloudService", CloudServiceArgs.builder()
.cloudServiceName("{cs-name}")
.location("westus")
.properties(Map.ofEntries(
Map.entry("configuration", "{ServiceConfiguration}"),
Map.entry("networkProfile", Map.of("loadBalancerConfigurations", Map.ofEntries(
Map.entry("name", "myLoadBalancer"),
Map.entry("properties", Map.of("frontendIPConfigurations", Map.ofEntries(
Map.entry("name", "myfe"),
Map.entry("properties", Map.of("publicIPAddress", Map.of("id", "/subscriptions/{subscription-id}/resourceGroups/ConstosoRG/providers/Microsoft.Network/publicIPAddresses/myPublicIP")))
)))
))),
Map.entry("packageUrl", "{PackageUrl}"),
Map.entry("roleProfile", Map.of("roles", Map.ofEntries(
Map.entry("name", "ContosoFrontend"),
Map.entry("sku", Map.ofEntries(
Map.entry("capacity", 1),
Map.entry("name", "Standard_D1_v2"),
Map.entry("tier", "Standard")
))
))),
Map.entry("upgradeMode", "Auto")
))
.resourceGroupName("ConstosoRG")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
cloud_service = azure_native.compute.CloudService("cloudService",
cloud_service_name="{cs-name}",
location="westus",
properties=azure_native.compute.CloudServicePropertiesResponseArgs(
configuration="{ServiceConfiguration}",
network_profile={
"loadBalancerConfigurations": [{
"name": "myLoadBalancer",
"properties": {
"frontendIPConfigurations": [{
"name": "myfe",
"properties": {
"publicIPAddress": azure_native.compute.SubResourceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/ConstosoRG/providers/Microsoft.Network/publicIPAddresses/myPublicIP",
),
},
}],
},
}],
},
package_url="{PackageUrl}",
role_profile={
"roles": [{
"name": "ContosoFrontend",
"sku": azure_native.compute.CloudServiceRoleSkuArgs(
capacity=1,
name="Standard_D1_v2",
tier="Standard",
),
}],
},
upgrade_mode="Auto",
),
resource_group_name="ConstosoRG")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const cloudService = new azure_native.compute.CloudService("cloudService", {
cloudServiceName: "{cs-name}",
location: "westus",
properties: {
configuration: "{ServiceConfiguration}",
networkProfile: {
loadBalancerConfigurations: [{
name: "myLoadBalancer",
properties: {
frontendIPConfigurations: [{
name: "myfe",
properties: {
publicIPAddress: {
id: "/subscriptions/{subscription-id}/resourceGroups/ConstosoRG/providers/Microsoft.Network/publicIPAddresses/myPublicIP",
},
},
}],
},
}],
},
packageUrl: "{PackageUrl}",
roleProfile: {
roles: [{
name: "ContosoFrontend",
sku: {
capacity: 1,
name: "Standard_D1_v2",
tier: "Standard",
},
}],
},
upgradeMode: "Auto",
},
resourceGroupName: "ConstosoRG",
});
resources:
cloudService:
type: azure-native:compute:CloudService
properties:
cloudServiceName: '{cs-name}'
location: westus
properties:
configuration: '{ServiceConfiguration}'
networkProfile:
loadBalancerConfigurations:
- name: myLoadBalancer
properties:
frontendIPConfigurations:
- name: myfe
properties:
publicIPAddress:
id: /subscriptions/{subscription-id}/resourceGroups/ConstosoRG/providers/Microsoft.Network/publicIPAddresses/myPublicIP
packageUrl: '{PackageUrl}'
roleProfile:
roles:
- name: ContosoFrontend
sku:
capacity: 1
name: Standard_D1_v2
tier: Standard
upgradeMode: Auto
resourceGroupName: ConstosoRG
Create New Cloud Service with Single Role and Certificate from Key Vault
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var cloudService = new AzureNative.Compute.CloudService("cloudService", new()
{
CloudServiceName = "{cs-name}",
Location = "westus",
Properties = new AzureNative.Compute.Inputs.CloudServicePropertiesArgs
{
Configuration = "{ServiceConfiguration}",
NetworkProfile = new AzureNative.Compute.Inputs.CloudServiceNetworkProfileArgs
{
LoadBalancerConfigurations = new[]
{
new AzureNative.Compute.Inputs.LoadBalancerConfigurationArgs
{
Name = "contosolb",
Properties = new AzureNative.Compute.Inputs.LoadBalancerConfigurationPropertiesArgs
{
FrontendIPConfigurations = new[]
{
new AzureNative.Compute.Inputs.LoadBalancerFrontendIPConfigurationArgs
{
Name = "contosofe",
Properties = new AzureNative.Compute.Inputs.LoadBalancerFrontendIPConfigurationPropertiesArgs
{
PublicIPAddress = new AzureNative.Compute.Inputs.SubResourceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/ConstosoRG/providers/Microsoft.Network/publicIPAddresses/contosopublicip",
},
},
},
},
},
},
},
},
OsProfile = new AzureNative.Compute.Inputs.CloudServiceOsProfileArgs
{
Secrets = new[]
{
new AzureNative.Compute.Inputs.CloudServiceVaultSecretGroupArgs
{
SourceVault = new AzureNative.Compute.Inputs.SubResourceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/ConstosoRG/providers/Microsoft.KeyVault/vaults/{keyvault-name}",
},
VaultCertificates = new[]
{
new AzureNative.Compute.Inputs.CloudServiceVaultCertificateArgs
{
CertificateUrl = "https://{keyvault-name}.vault.azure.net:443/secrets/ContosoCertificate/{secret-id}",
},
},
},
},
},
PackageUrl = "{PackageUrl}",
RoleProfile = new AzureNative.Compute.Inputs.CloudServiceRoleProfileArgs
{
Roles = new[]
{
new AzureNative.Compute.Inputs.CloudServiceRoleProfilePropertiesArgs
{
Name = "ContosoFrontend",
Sku = new AzureNative.Compute.Inputs.CloudServiceRoleSkuArgs
{
Capacity = 1,
Name = "Standard_D1_v2",
Tier = "Standard",
},
},
},
},
UpgradeMode = "Auto",
},
ResourceGroupName = "ConstosoRG",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.CloudService;
import com.pulumi.azurenative.compute.CloudServiceArgs;
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 cloudService = new CloudService("cloudService", CloudServiceArgs.builder()
.cloudServiceName("{cs-name}")
.location("westus")
.properties(Map.ofEntries(
Map.entry("configuration", "{ServiceConfiguration}"),
Map.entry("networkProfile", Map.of("loadBalancerConfigurations", Map.ofEntries(
Map.entry("name", "contosolb"),
Map.entry("properties", Map.of("frontendIPConfigurations", Map.ofEntries(
Map.entry("name", "contosofe"),
Map.entry("properties", Map.of("publicIPAddress", Map.of("id", "/subscriptions/{subscription-id}/resourceGroups/ConstosoRG/providers/Microsoft.Network/publicIPAddresses/contosopublicip")))
)))
))),
Map.entry("osProfile", Map.of("secrets", Map.ofEntries(
Map.entry("sourceVault", Map.of("id", "/subscriptions/{subscription-id}/resourceGroups/ConstosoRG/providers/Microsoft.KeyVault/vaults/{keyvault-name}")),
Map.entry("vaultCertificates", Map.of("certificateUrl", "https://{keyvault-name}.vault.azure.net:443/secrets/ContosoCertificate/{secret-id}"))
))),
Map.entry("packageUrl", "{PackageUrl}"),
Map.entry("roleProfile", Map.of("roles", Map.ofEntries(
Map.entry("name", "ContosoFrontend"),
Map.entry("sku", Map.ofEntries(
Map.entry("capacity", 1),
Map.entry("name", "Standard_D1_v2"),
Map.entry("tier", "Standard")
))
))),
Map.entry("upgradeMode", "Auto")
))
.resourceGroupName("ConstosoRG")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
cloud_service = azure_native.compute.CloudService("cloudService",
cloud_service_name="{cs-name}",
location="westus",
properties=azure_native.compute.CloudServicePropertiesResponseArgs(
configuration="{ServiceConfiguration}",
network_profile={
"loadBalancerConfigurations": [{
"name": "contosolb",
"properties": {
"frontendIPConfigurations": [{
"name": "contosofe",
"properties": {
"publicIPAddress": azure_native.compute.SubResourceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/ConstosoRG/providers/Microsoft.Network/publicIPAddresses/contosopublicip",
),
},
}],
},
}],
},
os_profile={
"secrets": [{
"sourceVault": azure_native.compute.SubResourceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/ConstosoRG/providers/Microsoft.KeyVault/vaults/{keyvault-name}",
),
"vaultCertificates": [azure_native.compute.CloudServiceVaultCertificateArgs(
certificate_url="https://{keyvault-name}.vault.azure.net:443/secrets/ContosoCertificate/{secret-id}",
)],
}],
},
package_url="{PackageUrl}",
role_profile={
"roles": [{
"name": "ContosoFrontend",
"sku": azure_native.compute.CloudServiceRoleSkuArgs(
capacity=1,
name="Standard_D1_v2",
tier="Standard",
),
}],
},
upgrade_mode="Auto",
),
resource_group_name="ConstosoRG")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const cloudService = new azure_native.compute.CloudService("cloudService", {
cloudServiceName: "{cs-name}",
location: "westus",
properties: {
configuration: "{ServiceConfiguration}",
networkProfile: {
loadBalancerConfigurations: [{
name: "contosolb",
properties: {
frontendIPConfigurations: [{
name: "contosofe",
properties: {
publicIPAddress: {
id: "/subscriptions/{subscription-id}/resourceGroups/ConstosoRG/providers/Microsoft.Network/publicIPAddresses/contosopublicip",
},
},
}],
},
}],
},
osProfile: {
secrets: [{
sourceVault: {
id: "/subscriptions/{subscription-id}/resourceGroups/ConstosoRG/providers/Microsoft.KeyVault/vaults/{keyvault-name}",
},
vaultCertificates: [{
certificateUrl: "https://{keyvault-name}.vault.azure.net:443/secrets/ContosoCertificate/{secret-id}",
}],
}],
},
packageUrl: "{PackageUrl}",
roleProfile: {
roles: [{
name: "ContosoFrontend",
sku: {
capacity: 1,
name: "Standard_D1_v2",
tier: "Standard",
},
}],
},
upgradeMode: "Auto",
},
resourceGroupName: "ConstosoRG",
});
resources:
cloudService:
type: azure-native:compute:CloudService
properties:
cloudServiceName: '{cs-name}'
location: westus
properties:
configuration: '{ServiceConfiguration}'
networkProfile:
loadBalancerConfigurations:
- name: contosolb
properties:
frontendIPConfigurations:
- name: contosofe
properties:
publicIPAddress:
id: /subscriptions/{subscription-id}/resourceGroups/ConstosoRG/providers/Microsoft.Network/publicIPAddresses/contosopublicip
osProfile:
secrets:
- sourceVault:
id: /subscriptions/{subscription-id}/resourceGroups/ConstosoRG/providers/Microsoft.KeyVault/vaults/{keyvault-name}
vaultCertificates:
- certificateUrl: https://{keyvault-name}.vault.azure.net:443/secrets/ContosoCertificate/{secret-id}
packageUrl: '{PackageUrl}'
roleProfile:
roles:
- name: ContosoFrontend
sku:
capacity: 1
name: Standard_D1_v2
tier: Standard
upgradeMode: Auto
resourceGroupName: ConstosoRG
Create New Cloud Service with Single Role and RDP Extension
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var cloudService = new AzureNative.Compute.CloudService("cloudService", new()
{
CloudServiceName = "{cs-name}",
Location = "westus",
Properties = new AzureNative.Compute.Inputs.CloudServicePropertiesArgs
{
Configuration = "{ServiceConfiguration}",
ExtensionProfile = new AzureNative.Compute.Inputs.CloudServiceExtensionProfileArgs
{
Extensions = new[]
{
new AzureNative.Compute.Inputs.ExtensionArgs
{
Name = "RDPExtension",
Properties = new AzureNative.Compute.Inputs.CloudServiceExtensionPropertiesArgs
{
AutoUpgradeMinorVersion = false,
ProtectedSettings = "<PrivateConfig><Password>{password}</Password></PrivateConfig>",
Publisher = "Microsoft.Windows.Azure.Extensions",
Settings = "<PublicConfig><UserName>UserAzure</UserName><Expiration>10/22/2021 15:05:45</Expiration></PublicConfig>",
Type = "RDP",
TypeHandlerVersion = "1.2.1",
},
},
},
},
NetworkProfile = new AzureNative.Compute.Inputs.CloudServiceNetworkProfileArgs
{
LoadBalancerConfigurations = new[]
{
new AzureNative.Compute.Inputs.LoadBalancerConfigurationArgs
{
Name = "contosolb",
Properties = new AzureNative.Compute.Inputs.LoadBalancerConfigurationPropertiesArgs
{
FrontendIPConfigurations = new[]
{
new AzureNative.Compute.Inputs.LoadBalancerFrontendIPConfigurationArgs
{
Name = "contosofe",
Properties = new AzureNative.Compute.Inputs.LoadBalancerFrontendIPConfigurationPropertiesArgs
{
PublicIPAddress = new AzureNative.Compute.Inputs.SubResourceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/ConstosoRG/providers/Microsoft.Network/publicIPAddresses/contosopublicip",
},
},
},
},
},
},
},
},
PackageUrl = "{PackageUrl}",
RoleProfile = new AzureNative.Compute.Inputs.CloudServiceRoleProfileArgs
{
Roles = new[]
{
new AzureNative.Compute.Inputs.CloudServiceRoleProfilePropertiesArgs
{
Name = "ContosoFrontend",
Sku = new AzureNative.Compute.Inputs.CloudServiceRoleSkuArgs
{
Capacity = 1,
Name = "Standard_D1_v2",
Tier = "Standard",
},
},
},
},
UpgradeMode = "Auto",
},
ResourceGroupName = "ConstosoRG",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.CloudService;
import com.pulumi.azurenative.compute.CloudServiceArgs;
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 cloudService = new CloudService("cloudService", CloudServiceArgs.builder()
.cloudServiceName("{cs-name}")
.location("westus")
.properties(Map.ofEntries(
Map.entry("configuration", "{ServiceConfiguration}"),
Map.entry("extensionProfile", Map.of("extensions", Map.ofEntries(
Map.entry("name", "RDPExtension"),
Map.entry("properties", Map.ofEntries(
Map.entry("autoUpgradeMinorVersion", false),
Map.entry("protectedSettings", "<PrivateConfig><Password>{password}</Password></PrivateConfig>"),
Map.entry("publisher", "Microsoft.Windows.Azure.Extensions"),
Map.entry("settings", "<PublicConfig><UserName>UserAzure</UserName><Expiration>10/22/2021 15:05:45</Expiration></PublicConfig>"),
Map.entry("type", "RDP"),
Map.entry("typeHandlerVersion", "1.2.1")
))
))),
Map.entry("networkProfile", Map.of("loadBalancerConfigurations", Map.ofEntries(
Map.entry("name", "contosolb"),
Map.entry("properties", Map.of("frontendIPConfigurations", Map.ofEntries(
Map.entry("name", "contosofe"),
Map.entry("properties", Map.of("publicIPAddress", Map.of("id", "/subscriptions/{subscription-id}/resourceGroups/ConstosoRG/providers/Microsoft.Network/publicIPAddresses/contosopublicip")))
)))
))),
Map.entry("packageUrl", "{PackageUrl}"),
Map.entry("roleProfile", Map.of("roles", Map.ofEntries(
Map.entry("name", "ContosoFrontend"),
Map.entry("sku", Map.ofEntries(
Map.entry("capacity", 1),
Map.entry("name", "Standard_D1_v2"),
Map.entry("tier", "Standard")
))
))),
Map.entry("upgradeMode", "Auto")
))
.resourceGroupName("ConstosoRG")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
cloud_service = azure_native.compute.CloudService("cloudService",
cloud_service_name="{cs-name}",
location="westus",
properties=azure_native.compute.CloudServicePropertiesResponseArgs(
configuration="{ServiceConfiguration}",
extension_profile={
"extensions": [{
"name": "RDPExtension",
"properties": azure_native.compute.CloudServiceExtensionPropertiesArgs(
auto_upgrade_minor_version=False,
protected_settings="<PrivateConfig><Password>{password}</Password></PrivateConfig>",
publisher="Microsoft.Windows.Azure.Extensions",
settings="<PublicConfig><UserName>UserAzure</UserName><Expiration>10/22/2021 15:05:45</Expiration></PublicConfig>",
type="RDP",
type_handler_version="1.2.1",
),
}],
},
network_profile={
"loadBalancerConfigurations": [{
"name": "contosolb",
"properties": {
"frontendIPConfigurations": [{
"name": "contosofe",
"properties": {
"publicIPAddress": azure_native.compute.SubResourceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/ConstosoRG/providers/Microsoft.Network/publicIPAddresses/contosopublicip",
),
},
}],
},
}],
},
package_url="{PackageUrl}",
role_profile={
"roles": [{
"name": "ContosoFrontend",
"sku": azure_native.compute.CloudServiceRoleSkuArgs(
capacity=1,
name="Standard_D1_v2",
tier="Standard",
),
}],
},
upgrade_mode="Auto",
),
resource_group_name="ConstosoRG")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const cloudService = new azure_native.compute.CloudService("cloudService", {
cloudServiceName: "{cs-name}",
location: "westus",
properties: {
configuration: "{ServiceConfiguration}",
extensionProfile: {
extensions: [{
name: "RDPExtension",
properties: {
autoUpgradeMinorVersion: false,
protectedSettings: "<PrivateConfig><Password>{password}</Password></PrivateConfig>",
publisher: "Microsoft.Windows.Azure.Extensions",
settings: "<PublicConfig><UserName>UserAzure</UserName><Expiration>10/22/2021 15:05:45</Expiration></PublicConfig>",
type: "RDP",
typeHandlerVersion: "1.2.1",
},
}],
},
networkProfile: {
loadBalancerConfigurations: [{
name: "contosolb",
properties: {
frontendIPConfigurations: [{
name: "contosofe",
properties: {
publicIPAddress: {
id: "/subscriptions/{subscription-id}/resourceGroups/ConstosoRG/providers/Microsoft.Network/publicIPAddresses/contosopublicip",
},
},
}],
},
}],
},
packageUrl: "{PackageUrl}",
roleProfile: {
roles: [{
name: "ContosoFrontend",
sku: {
capacity: 1,
name: "Standard_D1_v2",
tier: "Standard",
},
}],
},
upgradeMode: "Auto",
},
resourceGroupName: "ConstosoRG",
});
resources:
cloudService:
type: azure-native:compute:CloudService
properties:
cloudServiceName: '{cs-name}'
location: westus
properties:
configuration: '{ServiceConfiguration}'
extensionProfile:
extensions:
- name: RDPExtension
properties:
autoUpgradeMinorVersion: false
protectedSettings: <PrivateConfig><Password>{password}</Password></PrivateConfig>
publisher: Microsoft.Windows.Azure.Extensions
settings: <PublicConfig><UserName>UserAzure</UserName><Expiration>10/22/2021 15:05:45</Expiration></PublicConfig>
type: RDP
typeHandlerVersion: 1.2.1
networkProfile:
loadBalancerConfigurations:
- name: contosolb
properties:
frontendIPConfigurations:
- name: contosofe
properties:
publicIPAddress:
id: /subscriptions/{subscription-id}/resourceGroups/ConstosoRG/providers/Microsoft.Network/publicIPAddresses/contosopublicip
packageUrl: '{PackageUrl}'
roleProfile:
roles:
- name: ContosoFrontend
sku:
capacity: 1
name: Standard_D1_v2
tier: Standard
upgradeMode: Auto
resourceGroupName: ConstosoRG
Create CloudService Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CloudService(name: string, args: CloudServiceArgs, opts?: CustomResourceOptions);
@overload
def CloudService(resource_name: str,
args: CloudServiceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def CloudService(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
cloud_service_name: Optional[str] = None,
location: Optional[str] = None,
properties: Optional[CloudServicePropertiesArgs] = None,
tags: Optional[Mapping[str, str]] = None)
func NewCloudService(ctx *Context, name string, args CloudServiceArgs, opts ...ResourceOption) (*CloudService, error)
public CloudService(string name, CloudServiceArgs args, CustomResourceOptions? opts = null)
public CloudService(String name, CloudServiceArgs args)
public CloudService(String name, CloudServiceArgs args, CustomResourceOptions options)
type: azure-native:compute:CloudService
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 CloudServiceArgs
- 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 CloudServiceArgs
- 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 CloudServiceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CloudServiceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CloudServiceArgs
- 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 cloudServiceResource = new AzureNative.Compute.CloudService("cloudServiceResource", new()
{
ResourceGroupName = "string",
CloudServiceName = "string",
Location = "string",
Properties =
{
{ "allowModelOverride", false },
{ "configuration", "string" },
{ "configurationUrl", "string" },
{ "extensionProfile",
{
{ "extensions", new[]
{
{
{ "name", "string" },
{ "properties",
{
{ "autoUpgradeMinorVersion", false },
{ "forceUpdateTag", "string" },
{ "protectedSettings", "string" },
{ "protectedSettingsFromKeyVault",
{
{ "secretUrl", "string" },
{ "sourceVault",
{
{ "id", "string" },
} },
} },
{ "publisher", "string" },
{ "rolesAppliedTo", new[]
{
"string",
} },
{ "settings", "string" },
{ "type", "string" },
{ "typeHandlerVersion", "string" },
} },
},
} },
} },
{ "networkProfile",
{
{ "loadBalancerConfigurations", new[]
{
{
{ "name", "string" },
{ "properties",
{
{ "frontendIPConfigurations", new[]
{
{
{ "name", "string" },
{ "properties",
{
{ "privateIPAddress", "string" },
{ "publicIPAddress",
{
{ "id", "string" },
} },
{ "subnet",
{
{ "id", "string" },
} },
} },
},
} },
} },
{ "id", "string" },
},
} },
{ "swappableCloudService",
{
{ "id", "string" },
} },
} },
{ "osProfile",
{
{ "secrets", new[]
{
{
{ "sourceVault",
{
{ "id", "string" },
} },
{ "vaultCertificates", new[]
{
{
{ "certificateUrl", "string" },
},
} },
},
} },
} },
{ "packageUrl", "string" },
{ "roleProfile",
{
{ "roles", new[]
{
{
{ "name", "string" },
{ "sku",
{
{ "capacity", 0 },
{ "name", "string" },
{ "tier", "string" },
} },
},
} },
} },
{ "startCloudService", false },
{ "upgradeMode", "string" },
},
Tags =
{
{ "string", "string" },
},
});
example, err := compute.NewCloudService(ctx, "cloudServiceResource", &compute.CloudServiceArgs{
ResourceGroupName: "string",
CloudServiceName: "string",
Location: "string",
Properties: map[string]interface{}{
"allowModelOverride": false,
"configuration": "string",
"configurationUrl": "string",
"extensionProfile": map[string]interface{}{
"extensions": []map[string]interface{}{
map[string]interface{}{
"name": "string",
"properties": map[string]interface{}{
"autoUpgradeMinorVersion": false,
"forceUpdateTag": "string",
"protectedSettings": "string",
"protectedSettingsFromKeyVault": map[string]interface{}{
"secretUrl": "string",
"sourceVault": map[string]interface{}{
"id": "string",
},
},
"publisher": "string",
"rolesAppliedTo": []string{
"string",
},
"settings": "string",
"type": "string",
"typeHandlerVersion": "string",
},
},
},
},
"networkProfile": map[string]interface{}{
"loadBalancerConfigurations": []map[string]interface{}{
map[string]interface{}{
"name": "string",
"properties": map[string]interface{}{
"frontendIPConfigurations": []map[string]interface{}{
map[string]interface{}{
"name": "string",
"properties": map[string]interface{}{
"privateIPAddress": "string",
"publicIPAddress": map[string]interface{}{
"id": "string",
},
"subnet": map[string]interface{}{
"id": "string",
},
},
},
},
},
"id": "string",
},
},
"swappableCloudService": map[string]interface{}{
"id": "string",
},
},
"osProfile": map[string]interface{}{
"secrets": []map[string]interface{}{
map[string]interface{}{
"sourceVault": map[string]interface{}{
"id": "string",
},
"vaultCertificates": []map[string]interface{}{
map[string]interface{}{
"certificateUrl": "string",
},
},
},
},
},
"packageUrl": "string",
"roleProfile": map[string]interface{}{
"roles": []map[string]interface{}{
map[string]interface{}{
"name": "string",
"sku": map[string]interface{}{
"capacity": 0,
"name": "string",
"tier": "string",
},
},
},
},
"startCloudService": false,
"upgradeMode": "string",
},
Tags: map[string]interface{}{
"string": "string",
},
})
var cloudServiceResource = new CloudService("cloudServiceResource", CloudServiceArgs.builder()
.resourceGroupName("string")
.cloudServiceName("string")
.location("string")
.properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build());
cloud_service_resource = azure_native.compute.CloudService("cloudServiceResource",
resource_group_name=string,
cloud_service_name=string,
location=string,
properties={
allowModelOverride: False,
configuration: string,
configurationUrl: string,
extensionProfile: {
extensions: [{
name: string,
properties: {
autoUpgradeMinorVersion: False,
forceUpdateTag: string,
protectedSettings: string,
protectedSettingsFromKeyVault: {
secretUrl: string,
sourceVault: {
id: string,
},
},
publisher: string,
rolesAppliedTo: [string],
settings: string,
type: string,
typeHandlerVersion: string,
},
}],
},
networkProfile: {
loadBalancerConfigurations: [{
name: string,
properties: {
frontendIPConfigurations: [{
name: string,
properties: {
privateIPAddress: string,
publicIPAddress: {
id: string,
},
subnet: {
id: string,
},
},
}],
},
id: string,
}],
swappableCloudService: {
id: string,
},
},
osProfile: {
secrets: [{
sourceVault: {
id: string,
},
vaultCertificates: [{
certificateUrl: string,
}],
}],
},
packageUrl: string,
roleProfile: {
roles: [{
name: string,
sku: {
capacity: 0,
name: string,
tier: string,
},
}],
},
startCloudService: False,
upgradeMode: string,
},
tags={
string: string,
})
const cloudServiceResource = new azure_native.compute.CloudService("cloudServiceResource", {
resourceGroupName: "string",
cloudServiceName: "string",
location: "string",
properties: {
allowModelOverride: false,
configuration: "string",
configurationUrl: "string",
extensionProfile: {
extensions: [{
name: "string",
properties: {
autoUpgradeMinorVersion: false,
forceUpdateTag: "string",
protectedSettings: "string",
protectedSettingsFromKeyVault: {
secretUrl: "string",
sourceVault: {
id: "string",
},
},
publisher: "string",
rolesAppliedTo: ["string"],
settings: "string",
type: "string",
typeHandlerVersion: "string",
},
}],
},
networkProfile: {
loadBalancerConfigurations: [{
name: "string",
properties: {
frontendIPConfigurations: [{
name: "string",
properties: {
privateIPAddress: "string",
publicIPAddress: {
id: "string",
},
subnet: {
id: "string",
},
},
}],
},
id: "string",
}],
swappableCloudService: {
id: "string",
},
},
osProfile: {
secrets: [{
sourceVault: {
id: "string",
},
vaultCertificates: [{
certificateUrl: "string",
}],
}],
},
packageUrl: "string",
roleProfile: {
roles: [{
name: "string",
sku: {
capacity: 0,
name: "string",
tier: "string",
},
}],
},
startCloudService: false,
upgradeMode: "string",
},
tags: {
string: "string",
},
});
type: azure-native:compute:CloudService
properties:
cloudServiceName: string
location: string
properties:
allowModelOverride: false
configuration: string
configurationUrl: string
extensionProfile:
extensions:
- name: string
properties:
autoUpgradeMinorVersion: false
forceUpdateTag: string
protectedSettings: string
protectedSettingsFromKeyVault:
secretUrl: string
sourceVault:
id: string
publisher: string
rolesAppliedTo:
- string
settings: string
type: string
typeHandlerVersion: string
networkProfile:
loadBalancerConfigurations:
- id: string
name: string
properties:
frontendIPConfigurations:
- name: string
properties:
privateIPAddress: string
publicIPAddress:
id: string
subnet:
id: string
swappableCloudService:
id: string
osProfile:
secrets:
- sourceVault:
id: string
vaultCertificates:
- certificateUrl: string
packageUrl: string
roleProfile:
roles:
- name: string
sku:
capacity: 0
name: string
tier: string
startCloudService: false
upgradeMode: string
resourceGroupName: string
tags:
string: string
CloudService 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 CloudService resource accepts the following input properties:
- Resource
Group stringName - Name of the resource group.
- Cloud
Service stringName - Name of the cloud service.
- Location string
- Resource location.
- Properties
Pulumi.
Azure Native. Compute. Inputs. Cloud Service Properties - Cloud service properties
- Dictionary<string, string>
- Resource tags.
- Resource
Group stringName - Name of the resource group.
- Cloud
Service stringName - Name of the cloud service.
- Location string
- Resource location.
- Properties
Cloud
Service Properties Args - Cloud service properties
- map[string]string
- Resource tags.
- resource
Group StringName - Name of the resource group.
- cloud
Service StringName - Name of the cloud service.
- location String
- Resource location.
- properties
Cloud
Service Properties - Cloud service properties
- Map<String,String>
- Resource tags.
- resource
Group stringName - Name of the resource group.
- cloud
Service stringName - Name of the cloud service.
- location string
- Resource location.
- properties
Cloud
Service Properties - Cloud service properties
- {[key: string]: string}
- Resource tags.
- resource_
group_ strname - Name of the resource group.
- cloud_
service_ strname - Name of the cloud service.
- location str
- Resource location.
- properties
Cloud
Service Properties Args - Cloud service properties
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - Name of the resource group.
- cloud
Service StringName - Name of the cloud service.
- location String
- Resource location.
- properties Property Map
- Cloud service properties
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the CloudService resource produces the following output properties:
Supporting Types
CloudServiceExtensionProfile, CloudServiceExtensionProfileArgs
- Extensions
List<Pulumi.
Azure Native. Compute. Inputs. Extension> - List of extensions for the cloud service.
- Extensions []Extension
- List of extensions for the cloud service.
- extensions List<Extension>
- List of extensions for the cloud service.
- extensions Extension[]
- List of extensions for the cloud service.
- extensions Sequence[Extension]
- List of extensions for the cloud service.
- extensions List<Property Map>
- List of extensions for the cloud service.
CloudServiceExtensionProfileResponse, CloudServiceExtensionProfileResponseArgs
- Extensions
List<Pulumi.
Azure Native. Compute. Inputs. Extension Response> - List of extensions for the cloud service.
- Extensions
[]Extension
Response - List of extensions for the cloud service.
- extensions
List<Extension
Response> - List of extensions for the cloud service.
- extensions
Extension
Response[] - List of extensions for the cloud service.
- extensions
Sequence[Extension
Response] - List of extensions for the cloud service.
- extensions List<Property Map>
- List of extensions for the cloud service.
CloudServiceExtensionProperties, CloudServiceExtensionPropertiesArgs
- Auto
Upgrade boolMinor Version - Explicitly specify whether platform can automatically upgrade typeHandlerVersion to higher minor versions when they become available.
- Force
Update stringTag - Tag to force apply the provided public and protected settings. Changing the tag value allows for re-running the extension without changing any of the public or protected settings. If forceUpdateTag is not changed, updates to public or protected settings would still be applied by the handler. If neither forceUpdateTag nor any of public or protected settings change, extension would flow to the role instance with the same sequence-number, and it is up to handler implementation whether to re-run it or not
- Protected
Settings string - Protected settings for the extension which are encrypted before sent to the role instance.
- Protected
Settings Pulumi.From Key Vault Azure Native. Compute. Inputs. Cloud Service Vault And Secret Reference - Publisher string
- The name of the extension handler publisher.
- Roles
Applied List<string>To - Optional list of roles to apply this extension. If property is not specified or '*' is specified, extension is applied to all roles in the cloud service.
- Settings string
- Public settings for the extension. For JSON extensions, this is the JSON settings for the extension. For XML Extension (like RDP), this is the XML setting for the extension.
- Type string
- Specifies the type of the extension.
- Type
Handler stringVersion - Specifies the version of the extension. Specifies the version of the extension. If this element is not specified or an asterisk (*) is used as the value, the latest version of the extension is used. If the value is specified with a major version number and an asterisk as the minor version number (X.), the latest minor version of the specified major version is selected. If a major version number and a minor version number are specified (X.Y), the specific extension version is selected. If a version is specified, an auto-upgrade is performed on the role instance.
- Auto
Upgrade boolMinor Version - Explicitly specify whether platform can automatically upgrade typeHandlerVersion to higher minor versions when they become available.
- Force
Update stringTag - Tag to force apply the provided public and protected settings. Changing the tag value allows for re-running the extension without changing any of the public or protected settings. If forceUpdateTag is not changed, updates to public or protected settings would still be applied by the handler. If neither forceUpdateTag nor any of public or protected settings change, extension would flow to the role instance with the same sequence-number, and it is up to handler implementation whether to re-run it or not
- Protected
Settings string - Protected settings for the extension which are encrypted before sent to the role instance.
- Protected
Settings CloudFrom Key Vault Service Vault And Secret Reference - Publisher string
- The name of the extension handler publisher.
- Roles
Applied []stringTo - Optional list of roles to apply this extension. If property is not specified or '*' is specified, extension is applied to all roles in the cloud service.
- Settings string
- Public settings for the extension. For JSON extensions, this is the JSON settings for the extension. For XML Extension (like RDP), this is the XML setting for the extension.
- Type string
- Specifies the type of the extension.
- Type
Handler stringVersion - Specifies the version of the extension. Specifies the version of the extension. If this element is not specified or an asterisk (*) is used as the value, the latest version of the extension is used. If the value is specified with a major version number and an asterisk as the minor version number (X.), the latest minor version of the specified major version is selected. If a major version number and a minor version number are specified (X.Y), the specific extension version is selected. If a version is specified, an auto-upgrade is performed on the role instance.
- auto
Upgrade BooleanMinor Version - Explicitly specify whether platform can automatically upgrade typeHandlerVersion to higher minor versions when they become available.
- force
Update StringTag - Tag to force apply the provided public and protected settings. Changing the tag value allows for re-running the extension without changing any of the public or protected settings. If forceUpdateTag is not changed, updates to public or protected settings would still be applied by the handler. If neither forceUpdateTag nor any of public or protected settings change, extension would flow to the role instance with the same sequence-number, and it is up to handler implementation whether to re-run it or not
- protected
Settings String - Protected settings for the extension which are encrypted before sent to the role instance.
- protected
Settings CloudFrom Key Vault Service Vault And Secret Reference - publisher String
- The name of the extension handler publisher.
- roles
Applied List<String>To - Optional list of roles to apply this extension. If property is not specified or '*' is specified, extension is applied to all roles in the cloud service.
- settings String
- Public settings for the extension. For JSON extensions, this is the JSON settings for the extension. For XML Extension (like RDP), this is the XML setting for the extension.
- type String
- Specifies the type of the extension.
- type
Handler StringVersion - Specifies the version of the extension. Specifies the version of the extension. If this element is not specified or an asterisk (*) is used as the value, the latest version of the extension is used. If the value is specified with a major version number and an asterisk as the minor version number (X.), the latest minor version of the specified major version is selected. If a major version number and a minor version number are specified (X.Y), the specific extension version is selected. If a version is specified, an auto-upgrade is performed on the role instance.
- auto
Upgrade booleanMinor Version - Explicitly specify whether platform can automatically upgrade typeHandlerVersion to higher minor versions when they become available.
- force
Update stringTag - Tag to force apply the provided public and protected settings. Changing the tag value allows for re-running the extension without changing any of the public or protected settings. If forceUpdateTag is not changed, updates to public or protected settings would still be applied by the handler. If neither forceUpdateTag nor any of public or protected settings change, extension would flow to the role instance with the same sequence-number, and it is up to handler implementation whether to re-run it or not
- protected
Settings string - Protected settings for the extension which are encrypted before sent to the role instance.
- protected
Settings CloudFrom Key Vault Service Vault And Secret Reference - publisher string
- The name of the extension handler publisher.
- roles
Applied string[]To - Optional list of roles to apply this extension. If property is not specified or '*' is specified, extension is applied to all roles in the cloud service.
- settings string
- Public settings for the extension. For JSON extensions, this is the JSON settings for the extension. For XML Extension (like RDP), this is the XML setting for the extension.
- type string
- Specifies the type of the extension.
- type
Handler stringVersion - Specifies the version of the extension. Specifies the version of the extension. If this element is not specified or an asterisk (*) is used as the value, the latest version of the extension is used. If the value is specified with a major version number and an asterisk as the minor version number (X.), the latest minor version of the specified major version is selected. If a major version number and a minor version number are specified (X.Y), the specific extension version is selected. If a version is specified, an auto-upgrade is performed on the role instance.
- auto_
upgrade_ boolminor_ version - Explicitly specify whether platform can automatically upgrade typeHandlerVersion to higher minor versions when they become available.
- force_
update_ strtag - Tag to force apply the provided public and protected settings. Changing the tag value allows for re-running the extension without changing any of the public or protected settings. If forceUpdateTag is not changed, updates to public or protected settings would still be applied by the handler. If neither forceUpdateTag nor any of public or protected settings change, extension would flow to the role instance with the same sequence-number, and it is up to handler implementation whether to re-run it or not
- protected_
settings str - Protected settings for the extension which are encrypted before sent to the role instance.
- protected_
settings_ Cloudfrom_ key_ vault Service Vault And Secret Reference - publisher str
- The name of the extension handler publisher.
- roles_
applied_ Sequence[str]to - Optional list of roles to apply this extension. If property is not specified or '*' is specified, extension is applied to all roles in the cloud service.
- settings str
- Public settings for the extension. For JSON extensions, this is the JSON settings for the extension. For XML Extension (like RDP), this is the XML setting for the extension.
- type str
- Specifies the type of the extension.
- type_
handler_ strversion - Specifies the version of the extension. Specifies the version of the extension. If this element is not specified or an asterisk (*) is used as the value, the latest version of the extension is used. If the value is specified with a major version number and an asterisk as the minor version number (X.), the latest minor version of the specified major version is selected. If a major version number and a minor version number are specified (X.Y), the specific extension version is selected. If a version is specified, an auto-upgrade is performed on the role instance.
- auto
Upgrade BooleanMinor Version - Explicitly specify whether platform can automatically upgrade typeHandlerVersion to higher minor versions when they become available.
- force
Update StringTag - Tag to force apply the provided public and protected settings. Changing the tag value allows for re-running the extension without changing any of the public or protected settings. If forceUpdateTag is not changed, updates to public or protected settings would still be applied by the handler. If neither forceUpdateTag nor any of public or protected settings change, extension would flow to the role instance with the same sequence-number, and it is up to handler implementation whether to re-run it or not
- protected
Settings String - Protected settings for the extension which are encrypted before sent to the role instance.
- protected
Settings Property MapFrom Key Vault - publisher String
- The name of the extension handler publisher.
- roles
Applied List<String>To - Optional list of roles to apply this extension. If property is not specified or '*' is specified, extension is applied to all roles in the cloud service.
- settings String
- Public settings for the extension. For JSON extensions, this is the JSON settings for the extension. For XML Extension (like RDP), this is the XML setting for the extension.
- type String
- Specifies the type of the extension.
- type
Handler StringVersion - Specifies the version of the extension. Specifies the version of the extension. If this element is not specified or an asterisk (*) is used as the value, the latest version of the extension is used. If the value is specified with a major version number and an asterisk as the minor version number (X.), the latest minor version of the specified major version is selected. If a major version number and a minor version number are specified (X.Y), the specific extension version is selected. If a version is specified, an auto-upgrade is performed on the role instance.
CloudServiceExtensionPropertiesResponse, CloudServiceExtensionPropertiesResponseArgs
- Provisioning
State string - The provisioning state, which only appears in the response.
- Auto
Upgrade boolMinor Version - Explicitly specify whether platform can automatically upgrade typeHandlerVersion to higher minor versions when they become available.
- Force
Update stringTag - Tag to force apply the provided public and protected settings. Changing the tag value allows for re-running the extension without changing any of the public or protected settings. If forceUpdateTag is not changed, updates to public or protected settings would still be applied by the handler. If neither forceUpdateTag nor any of public or protected settings change, extension would flow to the role instance with the same sequence-number, and it is up to handler implementation whether to re-run it or not
- Protected
Settings string - Protected settings for the extension which are encrypted before sent to the role instance.
- Protected
Settings Pulumi.From Key Vault Azure Native. Compute. Inputs. Cloud Service Vault And Secret Reference Response - Publisher string
- The name of the extension handler publisher.
- Roles
Applied List<string>To - Optional list of roles to apply this extension. If property is not specified or '*' is specified, extension is applied to all roles in the cloud service.
- Settings string
- Public settings for the extension. For JSON extensions, this is the JSON settings for the extension. For XML Extension (like RDP), this is the XML setting for the extension.
- Type string
- Specifies the type of the extension.
- Type
Handler stringVersion - Specifies the version of the extension. Specifies the version of the extension. If this element is not specified or an asterisk (*) is used as the value, the latest version of the extension is used. If the value is specified with a major version number and an asterisk as the minor version number (X.), the latest minor version of the specified major version is selected. If a major version number and a minor version number are specified (X.Y), the specific extension version is selected. If a version is specified, an auto-upgrade is performed on the role instance.
- Provisioning
State string - The provisioning state, which only appears in the response.
- Auto
Upgrade boolMinor Version - Explicitly specify whether platform can automatically upgrade typeHandlerVersion to higher minor versions when they become available.
- Force
Update stringTag - Tag to force apply the provided public and protected settings. Changing the tag value allows for re-running the extension without changing any of the public or protected settings. If forceUpdateTag is not changed, updates to public or protected settings would still be applied by the handler. If neither forceUpdateTag nor any of public or protected settings change, extension would flow to the role instance with the same sequence-number, and it is up to handler implementation whether to re-run it or not
- Protected
Settings string - Protected settings for the extension which are encrypted before sent to the role instance.
- Protected
Settings CloudFrom Key Vault Service Vault And Secret Reference Response - Publisher string
- The name of the extension handler publisher.
- Roles
Applied []stringTo - Optional list of roles to apply this extension. If property is not specified or '*' is specified, extension is applied to all roles in the cloud service.
- Settings string
- Public settings for the extension. For JSON extensions, this is the JSON settings for the extension. For XML Extension (like RDP), this is the XML setting for the extension.
- Type string
- Specifies the type of the extension.
- Type
Handler stringVersion - Specifies the version of the extension. Specifies the version of the extension. If this element is not specified or an asterisk (*) is used as the value, the latest version of the extension is used. If the value is specified with a major version number and an asterisk as the minor version number (X.), the latest minor version of the specified major version is selected. If a major version number and a minor version number are specified (X.Y), the specific extension version is selected. If a version is specified, an auto-upgrade is performed on the role instance.
- provisioning
State String - The provisioning state, which only appears in the response.
- auto
Upgrade BooleanMinor Version - Explicitly specify whether platform can automatically upgrade typeHandlerVersion to higher minor versions when they become available.
- force
Update StringTag - Tag to force apply the provided public and protected settings. Changing the tag value allows for re-running the extension without changing any of the public or protected settings. If forceUpdateTag is not changed, updates to public or protected settings would still be applied by the handler. If neither forceUpdateTag nor any of public or protected settings change, extension would flow to the role instance with the same sequence-number, and it is up to handler implementation whether to re-run it or not
- protected
Settings String - Protected settings for the extension which are encrypted before sent to the role instance.
- protected
Settings CloudFrom Key Vault Service Vault And Secret Reference Response - publisher String
- The name of the extension handler publisher.
- roles
Applied List<String>To - Optional list of roles to apply this extension. If property is not specified or '*' is specified, extension is applied to all roles in the cloud service.
- settings String
- Public settings for the extension. For JSON extensions, this is the JSON settings for the extension. For XML Extension (like RDP), this is the XML setting for the extension.
- type String
- Specifies the type of the extension.
- type
Handler StringVersion - Specifies the version of the extension. Specifies the version of the extension. If this element is not specified or an asterisk (*) is used as the value, the latest version of the extension is used. If the value is specified with a major version number and an asterisk as the minor version number (X.), the latest minor version of the specified major version is selected. If a major version number and a minor version number are specified (X.Y), the specific extension version is selected. If a version is specified, an auto-upgrade is performed on the role instance.
- provisioning
State string - The provisioning state, which only appears in the response.
- auto
Upgrade booleanMinor Version - Explicitly specify whether platform can automatically upgrade typeHandlerVersion to higher minor versions when they become available.
- force
Update stringTag - Tag to force apply the provided public and protected settings. Changing the tag value allows for re-running the extension without changing any of the public or protected settings. If forceUpdateTag is not changed, updates to public or protected settings would still be applied by the handler. If neither forceUpdateTag nor any of public or protected settings change, extension would flow to the role instance with the same sequence-number, and it is up to handler implementation whether to re-run it or not
- protected
Settings string - Protected settings for the extension which are encrypted before sent to the role instance.
- protected
Settings CloudFrom Key Vault Service Vault And Secret Reference Response - publisher string
- The name of the extension handler publisher.
- roles
Applied string[]To - Optional list of roles to apply this extension. If property is not specified or '*' is specified, extension is applied to all roles in the cloud service.
- settings string
- Public settings for the extension. For JSON extensions, this is the JSON settings for the extension. For XML Extension (like RDP), this is the XML setting for the extension.
- type string
- Specifies the type of the extension.
- type
Handler stringVersion - Specifies the version of the extension. Specifies the version of the extension. If this element is not specified or an asterisk (*) is used as the value, the latest version of the extension is used. If the value is specified with a major version number and an asterisk as the minor version number (X.), the latest minor version of the specified major version is selected. If a major version number and a minor version number are specified (X.Y), the specific extension version is selected. If a version is specified, an auto-upgrade is performed on the role instance.
- provisioning_
state str - The provisioning state, which only appears in the response.
- auto_
upgrade_ boolminor_ version - Explicitly specify whether platform can automatically upgrade typeHandlerVersion to higher minor versions when they become available.
- force_
update_ strtag - Tag to force apply the provided public and protected settings. Changing the tag value allows for re-running the extension without changing any of the public or protected settings. If forceUpdateTag is not changed, updates to public or protected settings would still be applied by the handler. If neither forceUpdateTag nor any of public or protected settings change, extension would flow to the role instance with the same sequence-number, and it is up to handler implementation whether to re-run it or not
- protected_
settings str - Protected settings for the extension which are encrypted before sent to the role instance.
- protected_
settings_ Cloudfrom_ key_ vault Service Vault And Secret Reference Response - publisher str
- The name of the extension handler publisher.
- roles_
applied_ Sequence[str]to - Optional list of roles to apply this extension. If property is not specified or '*' is specified, extension is applied to all roles in the cloud service.
- settings str
- Public settings for the extension. For JSON extensions, this is the JSON settings for the extension. For XML Extension (like RDP), this is the XML setting for the extension.
- type str
- Specifies the type of the extension.
- type_
handler_ strversion - Specifies the version of the extension. Specifies the version of the extension. If this element is not specified or an asterisk (*) is used as the value, the latest version of the extension is used. If the value is specified with a major version number and an asterisk as the minor version number (X.), the latest minor version of the specified major version is selected. If a major version number and a minor version number are specified (X.Y), the specific extension version is selected. If a version is specified, an auto-upgrade is performed on the role instance.
- provisioning
State String - The provisioning state, which only appears in the response.
- auto
Upgrade BooleanMinor Version - Explicitly specify whether platform can automatically upgrade typeHandlerVersion to higher minor versions when they become available.
- force
Update StringTag - Tag to force apply the provided public and protected settings. Changing the tag value allows for re-running the extension without changing any of the public or protected settings. If forceUpdateTag is not changed, updates to public or protected settings would still be applied by the handler. If neither forceUpdateTag nor any of public or protected settings change, extension would flow to the role instance with the same sequence-number, and it is up to handler implementation whether to re-run it or not
- protected
Settings String - Protected settings for the extension which are encrypted before sent to the role instance.
- protected
Settings Property MapFrom Key Vault - publisher String
- The name of the extension handler publisher.
- roles
Applied List<String>To - Optional list of roles to apply this extension. If property is not specified or '*' is specified, extension is applied to all roles in the cloud service.
- settings String
- Public settings for the extension. For JSON extensions, this is the JSON settings for the extension. For XML Extension (like RDP), this is the XML setting for the extension.
- type String
- Specifies the type of the extension.
- type
Handler StringVersion - Specifies the version of the extension. Specifies the version of the extension. If this element is not specified or an asterisk (*) is used as the value, the latest version of the extension is used. If the value is specified with a major version number and an asterisk as the minor version number (X.), the latest minor version of the specified major version is selected. If a major version number and a minor version number are specified (X.Y), the specific extension version is selected. If a version is specified, an auto-upgrade is performed on the role instance.
CloudServiceNetworkProfile, CloudServiceNetworkProfileArgs
- Load
Balancer List<Pulumi.Configurations Azure Native. Compute. Inputs. Load Balancer Configuration> - List of Load balancer configurations. Cloud service can have up to two load balancer configurations, corresponding to a Public Load Balancer and an Internal Load Balancer.
- Swappable
Cloud Pulumi.Service Azure Native. Compute. Inputs. Sub Resource - The id reference of the cloud service containing the target IP with which the subject cloud service can perform a swap. This property cannot be updated once it is set. The swappable cloud service referred by this id must be present otherwise an error will be thrown.
- Load
Balancer []LoadConfigurations Balancer Configuration - List of Load balancer configurations. Cloud service can have up to two load balancer configurations, corresponding to a Public Load Balancer and an Internal Load Balancer.
- Swappable
Cloud SubService Resource - The id reference of the cloud service containing the target IP with which the subject cloud service can perform a swap. This property cannot be updated once it is set. The swappable cloud service referred by this id must be present otherwise an error will be thrown.
- load
Balancer List<LoadConfigurations Balancer Configuration> - List of Load balancer configurations. Cloud service can have up to two load balancer configurations, corresponding to a Public Load Balancer and an Internal Load Balancer.
- swappable
Cloud SubService Resource - The id reference of the cloud service containing the target IP with which the subject cloud service can perform a swap. This property cannot be updated once it is set. The swappable cloud service referred by this id must be present otherwise an error will be thrown.
- load
Balancer LoadConfigurations Balancer Configuration[] - List of Load balancer configurations. Cloud service can have up to two load balancer configurations, corresponding to a Public Load Balancer and an Internal Load Balancer.
- swappable
Cloud SubService Resource - The id reference of the cloud service containing the target IP with which the subject cloud service can perform a swap. This property cannot be updated once it is set. The swappable cloud service referred by this id must be present otherwise an error will be thrown.
- load_
balancer_ Sequence[Loadconfigurations Balancer Configuration] - List of Load balancer configurations. Cloud service can have up to two load balancer configurations, corresponding to a Public Load Balancer and an Internal Load Balancer.
- swappable_
cloud_ Subservice Resource - The id reference of the cloud service containing the target IP with which the subject cloud service can perform a swap. This property cannot be updated once it is set. The swappable cloud service referred by this id must be present otherwise an error will be thrown.
- load
Balancer List<Property Map>Configurations - List of Load balancer configurations. Cloud service can have up to two load balancer configurations, corresponding to a Public Load Balancer and an Internal Load Balancer.
- swappable
Cloud Property MapService - The id reference of the cloud service containing the target IP with which the subject cloud service can perform a swap. This property cannot be updated once it is set. The swappable cloud service referred by this id must be present otherwise an error will be thrown.
CloudServiceNetworkProfileResponse, CloudServiceNetworkProfileResponseArgs
- Load
Balancer List<Pulumi.Configurations Azure Native. Compute. Inputs. Load Balancer Configuration Response> - List of Load balancer configurations. Cloud service can have up to two load balancer configurations, corresponding to a Public Load Balancer and an Internal Load Balancer.
- Swappable
Cloud Pulumi.Service Azure Native. Compute. Inputs. Sub Resource Response - The id reference of the cloud service containing the target IP with which the subject cloud service can perform a swap. This property cannot be updated once it is set. The swappable cloud service referred by this id must be present otherwise an error will be thrown.
- Load
Balancer []LoadConfigurations Balancer Configuration Response - List of Load balancer configurations. Cloud service can have up to two load balancer configurations, corresponding to a Public Load Balancer and an Internal Load Balancer.
- Swappable
Cloud SubService Resource Response - The id reference of the cloud service containing the target IP with which the subject cloud service can perform a swap. This property cannot be updated once it is set. The swappable cloud service referred by this id must be present otherwise an error will be thrown.
- load
Balancer List<LoadConfigurations Balancer Configuration Response> - List of Load balancer configurations. Cloud service can have up to two load balancer configurations, corresponding to a Public Load Balancer and an Internal Load Balancer.
- swappable
Cloud SubService Resource Response - The id reference of the cloud service containing the target IP with which the subject cloud service can perform a swap. This property cannot be updated once it is set. The swappable cloud service referred by this id must be present otherwise an error will be thrown.
- load
Balancer LoadConfigurations Balancer Configuration Response[] - List of Load balancer configurations. Cloud service can have up to two load balancer configurations, corresponding to a Public Load Balancer and an Internal Load Balancer.
- swappable
Cloud SubService Resource Response - The id reference of the cloud service containing the target IP with which the subject cloud service can perform a swap. This property cannot be updated once it is set. The swappable cloud service referred by this id must be present otherwise an error will be thrown.
- load_
balancer_ Sequence[Loadconfigurations Balancer Configuration Response] - List of Load balancer configurations. Cloud service can have up to two load balancer configurations, corresponding to a Public Load Balancer and an Internal Load Balancer.
- swappable_
cloud_ Subservice Resource Response - The id reference of the cloud service containing the target IP with which the subject cloud service can perform a swap. This property cannot be updated once it is set. The swappable cloud service referred by this id must be present otherwise an error will be thrown.
- load
Balancer List<Property Map>Configurations - List of Load balancer configurations. Cloud service can have up to two load balancer configurations, corresponding to a Public Load Balancer and an Internal Load Balancer.
- swappable
Cloud Property MapService - The id reference of the cloud service containing the target IP with which the subject cloud service can perform a swap. This property cannot be updated once it is set. The swappable cloud service referred by this id must be present otherwise an error will be thrown.
CloudServiceOsProfile, CloudServiceOsProfileArgs
- Secrets
List<Pulumi.
Azure Native. Compute. Inputs. Cloud Service Vault Secret Group> - Specifies set of certificates that should be installed onto the role instances.
- Secrets
[]Cloud
Service Vault Secret Group - Specifies set of certificates that should be installed onto the role instances.
- secrets
List<Cloud
Service Vault Secret Group> - Specifies set of certificates that should be installed onto the role instances.
- secrets
Cloud
Service Vault Secret Group[] - Specifies set of certificates that should be installed onto the role instances.
- secrets
Sequence[Cloud
Service Vault Secret Group] - Specifies set of certificates that should be installed onto the role instances.
- secrets List<Property Map>
- Specifies set of certificates that should be installed onto the role instances.
CloudServiceOsProfileResponse, CloudServiceOsProfileResponseArgs
- Secrets
List<Pulumi.
Azure Native. Compute. Inputs. Cloud Service Vault Secret Group Response> - Specifies set of certificates that should be installed onto the role instances.
- Secrets
[]Cloud
Service Vault Secret Group Response - Specifies set of certificates that should be installed onto the role instances.
- secrets
List<Cloud
Service Vault Secret Group Response> - Specifies set of certificates that should be installed onto the role instances.
- secrets
Cloud
Service Vault Secret Group Response[] - Specifies set of certificates that should be installed onto the role instances.
- secrets
Sequence[Cloud
Service Vault Secret Group Response] - Specifies set of certificates that should be installed onto the role instances.
- secrets List<Property Map>
- Specifies set of certificates that should be installed onto the role instances.
CloudServiceProperties, CloudServicePropertiesArgs
- Allow
Model boolOverride - (Optional) Indicates whether the role sku properties (roleProfile.roles.sku) specified in the model/template should override the role instance count and vm size specified in the .cscfg and .csdef respectively.
The default value is
false
. - Configuration string
- Specifies the XML service configuration (.cscfg) for the cloud service.
- Configuration
Url string - Specifies a URL that refers to the location of the service configuration in the Blob service. The service package URL can be Shared Access Signature (SAS) URI from any storage account. This is a write-only property and is not returned in GET calls.
- Extension
Profile Pulumi.Azure Native. Compute. Inputs. Cloud Service Extension Profile - Describes a cloud service extension profile.
- Network
Profile Pulumi.Azure Native. Compute. Inputs. Cloud Service Network Profile - Network Profile for the cloud service.
- Os
Profile Pulumi.Azure Native. Compute. Inputs. Cloud Service Os Profile - Describes the OS profile for the cloud service.
- Package
Url string - Specifies a URL that refers to the location of the service package in the Blob service. The service package URL can be Shared Access Signature (SAS) URI from any storage account. This is a write-only property and is not returned in GET calls.
- Role
Profile Pulumi.Azure Native. Compute. Inputs. Cloud Service Role Profile - Describes the role profile for the cloud service.
- Start
Cloud boolService - (Optional) Indicates whether to start the cloud service immediately after it is created. The default value is
true
. If false, the service model is still deployed, but the code is not run immediately. Instead, the service is PoweredOff until you call Start, at which time the service will be started. A deployed service still incurs charges, even if it is poweredoff. - Upgrade
Mode string | Pulumi.Azure Native. Compute. Cloud Service Upgrade Mode - Update mode for the cloud service. Role instances are allocated to update domains when the service is deployed. Updates can be initiated manually in each update domain or initiated automatically in all update domains. Possible Values are AutoManual Simultaneous If not specified, the default value is Auto. If set to Manual, PUT UpdateDomain must be called to apply the update. If set to Auto, the update is automatically applied to each update domain in sequence.
- Allow
Model boolOverride - (Optional) Indicates whether the role sku properties (roleProfile.roles.sku) specified in the model/template should override the role instance count and vm size specified in the .cscfg and .csdef respectively.
The default value is
false
. - Configuration string
- Specifies the XML service configuration (.cscfg) for the cloud service.
- Configuration
Url string - Specifies a URL that refers to the location of the service configuration in the Blob service. The service package URL can be Shared Access Signature (SAS) URI from any storage account. This is a write-only property and is not returned in GET calls.
- Extension
Profile CloudService Extension Profile - Describes a cloud service extension profile.
- Network
Profile CloudService Network Profile - Network Profile for the cloud service.
- Os
Profile CloudService Os Profile - Describes the OS profile for the cloud service.
- Package
Url string - Specifies a URL that refers to the location of the service package in the Blob service. The service package URL can be Shared Access Signature (SAS) URI from any storage account. This is a write-only property and is not returned in GET calls.
- Role
Profile CloudService Role Profile - Describes the role profile for the cloud service.
- Start
Cloud boolService - (Optional) Indicates whether to start the cloud service immediately after it is created. The default value is
true
. If false, the service model is still deployed, but the code is not run immediately. Instead, the service is PoweredOff until you call Start, at which time the service will be started. A deployed service still incurs charges, even if it is poweredoff. - Upgrade
Mode string | CloudService Upgrade Mode - Update mode for the cloud service. Role instances are allocated to update domains when the service is deployed. Updates can be initiated manually in each update domain or initiated automatically in all update domains. Possible Values are AutoManual Simultaneous If not specified, the default value is Auto. If set to Manual, PUT UpdateDomain must be called to apply the update. If set to Auto, the update is automatically applied to each update domain in sequence.
- allow
Model BooleanOverride - (Optional) Indicates whether the role sku properties (roleProfile.roles.sku) specified in the model/template should override the role instance count and vm size specified in the .cscfg and .csdef respectively.
The default value is
false
. - configuration String
- Specifies the XML service configuration (.cscfg) for the cloud service.
- configuration
Url String - Specifies a URL that refers to the location of the service configuration in the Blob service. The service package URL can be Shared Access Signature (SAS) URI from any storage account. This is a write-only property and is not returned in GET calls.
- extension
Profile CloudService Extension Profile - Describes a cloud service extension profile.
- network
Profile CloudService Network Profile - Network Profile for the cloud service.
- os
Profile CloudService Os Profile - Describes the OS profile for the cloud service.
- package
Url String - Specifies a URL that refers to the location of the service package in the Blob service. The service package URL can be Shared Access Signature (SAS) URI from any storage account. This is a write-only property and is not returned in GET calls.
- role
Profile CloudService Role Profile - Describes the role profile for the cloud service.
- start
Cloud BooleanService - (Optional) Indicates whether to start the cloud service immediately after it is created. The default value is
true
. If false, the service model is still deployed, but the code is not run immediately. Instead, the service is PoweredOff until you call Start, at which time the service will be started. A deployed service still incurs charges, even if it is poweredoff. - upgrade
Mode String | CloudService Upgrade Mode - Update mode for the cloud service. Role instances are allocated to update domains when the service is deployed. Updates can be initiated manually in each update domain or initiated automatically in all update domains. Possible Values are AutoManual Simultaneous If not specified, the default value is Auto. If set to Manual, PUT UpdateDomain must be called to apply the update. If set to Auto, the update is automatically applied to each update domain in sequence.
- allow
Model booleanOverride - (Optional) Indicates whether the role sku properties (roleProfile.roles.sku) specified in the model/template should override the role instance count and vm size specified in the .cscfg and .csdef respectively.
The default value is
false
. - configuration string
- Specifies the XML service configuration (.cscfg) for the cloud service.
- configuration
Url string - Specifies a URL that refers to the location of the service configuration in the Blob service. The service package URL can be Shared Access Signature (SAS) URI from any storage account. This is a write-only property and is not returned in GET calls.
- extension
Profile CloudService Extension Profile - Describes a cloud service extension profile.
- network
Profile CloudService Network Profile - Network Profile for the cloud service.
- os
Profile CloudService Os Profile - Describes the OS profile for the cloud service.
- package
Url string - Specifies a URL that refers to the location of the service package in the Blob service. The service package URL can be Shared Access Signature (SAS) URI from any storage account. This is a write-only property and is not returned in GET calls.
- role
Profile CloudService Role Profile - Describes the role profile for the cloud service.
- start
Cloud booleanService - (Optional) Indicates whether to start the cloud service immediately after it is created. The default value is
true
. If false, the service model is still deployed, but the code is not run immediately. Instead, the service is PoweredOff until you call Start, at which time the service will be started. A deployed service still incurs charges, even if it is poweredoff. - upgrade
Mode string | CloudService Upgrade Mode - Update mode for the cloud service. Role instances are allocated to update domains when the service is deployed. Updates can be initiated manually in each update domain or initiated automatically in all update domains. Possible Values are AutoManual Simultaneous If not specified, the default value is Auto. If set to Manual, PUT UpdateDomain must be called to apply the update. If set to Auto, the update is automatically applied to each update domain in sequence.
- allow_
model_ booloverride - (Optional) Indicates whether the role sku properties (roleProfile.roles.sku) specified in the model/template should override the role instance count and vm size specified in the .cscfg and .csdef respectively.
The default value is
false
. - configuration str
- Specifies the XML service configuration (.cscfg) for the cloud service.
- configuration_
url str - Specifies a URL that refers to the location of the service configuration in the Blob service. The service package URL can be Shared Access Signature (SAS) URI from any storage account. This is a write-only property and is not returned in GET calls.
- extension_
profile CloudService Extension Profile - Describes a cloud service extension profile.
- network_
profile CloudService Network Profile - Network Profile for the cloud service.
- os_
profile CloudService Os Profile - Describes the OS profile for the cloud service.
- package_
url str - Specifies a URL that refers to the location of the service package in the Blob service. The service package URL can be Shared Access Signature (SAS) URI from any storage account. This is a write-only property and is not returned in GET calls.
- role_
profile CloudService Role Profile - Describes the role profile for the cloud service.
- start_
cloud_ boolservice - (Optional) Indicates whether to start the cloud service immediately after it is created. The default value is
true
. If false, the service model is still deployed, but the code is not run immediately. Instead, the service is PoweredOff until you call Start, at which time the service will be started. A deployed service still incurs charges, even if it is poweredoff. - upgrade_
mode str | CloudService Upgrade Mode - Update mode for the cloud service. Role instances are allocated to update domains when the service is deployed. Updates can be initiated manually in each update domain or initiated automatically in all update domains. Possible Values are AutoManual Simultaneous If not specified, the default value is Auto. If set to Manual, PUT UpdateDomain must be called to apply the update. If set to Auto, the update is automatically applied to each update domain in sequence.
- allow
Model BooleanOverride - (Optional) Indicates whether the role sku properties (roleProfile.roles.sku) specified in the model/template should override the role instance count and vm size specified in the .cscfg and .csdef respectively.
The default value is
false
. - configuration String
- Specifies the XML service configuration (.cscfg) for the cloud service.
- configuration
Url String - Specifies a URL that refers to the location of the service configuration in the Blob service. The service package URL can be Shared Access Signature (SAS) URI from any storage account. This is a write-only property and is not returned in GET calls.
- extension
Profile Property Map - Describes a cloud service extension profile.
- network
Profile Property Map - Network Profile for the cloud service.
- os
Profile Property Map - Describes the OS profile for the cloud service.
- package
Url String - Specifies a URL that refers to the location of the service package in the Blob service. The service package URL can be Shared Access Signature (SAS) URI from any storage account. This is a write-only property and is not returned in GET calls.
- role
Profile Property Map - Describes the role profile for the cloud service.
- start
Cloud BooleanService - (Optional) Indicates whether to start the cloud service immediately after it is created. The default value is
true
. If false, the service model is still deployed, but the code is not run immediately. Instead, the service is PoweredOff until you call Start, at which time the service will be started. A deployed service still incurs charges, even if it is poweredoff. - upgrade
Mode String | "Auto" | "Manual" | "Simultaneous" - Update mode for the cloud service. Role instances are allocated to update domains when the service is deployed. Updates can be initiated manually in each update domain or initiated automatically in all update domains. Possible Values are AutoManual Simultaneous If not specified, the default value is Auto. If set to Manual, PUT UpdateDomain must be called to apply the update. If set to Auto, the update is automatically applied to each update domain in sequence.
CloudServicePropertiesResponse, CloudServicePropertiesResponseArgs
- Provisioning
State string - The provisioning state, which only appears in the response.
- Unique
Id string - The unique identifier for the cloud service.
- Allow
Model boolOverride - (Optional) Indicates whether the role sku properties (roleProfile.roles.sku) specified in the model/template should override the role instance count and vm size specified in the .cscfg and .csdef respectively.
The default value is
false
. - Configuration string
- Specifies the XML service configuration (.cscfg) for the cloud service.
- Configuration
Url string - Specifies a URL that refers to the location of the service configuration in the Blob service. The service package URL can be Shared Access Signature (SAS) URI from any storage account. This is a write-only property and is not returned in GET calls.
- Extension
Profile Pulumi.Azure Native. Compute. Inputs. Cloud Service Extension Profile Response - Describes a cloud service extension profile.
- Network
Profile Pulumi.Azure Native. Compute. Inputs. Cloud Service Network Profile Response - Network Profile for the cloud service.
- Os
Profile Pulumi.Azure Native. Compute. Inputs. Cloud Service Os Profile Response - Describes the OS profile for the cloud service.
- Package
Url string - Specifies a URL that refers to the location of the service package in the Blob service. The service package URL can be Shared Access Signature (SAS) URI from any storage account. This is a write-only property and is not returned in GET calls.
- Role
Profile Pulumi.Azure Native. Compute. Inputs. Cloud Service Role Profile Response - Describes the role profile for the cloud service.
- Start
Cloud boolService - (Optional) Indicates whether to start the cloud service immediately after it is created. The default value is
true
. If false, the service model is still deployed, but the code is not run immediately. Instead, the service is PoweredOff until you call Start, at which time the service will be started. A deployed service still incurs charges, even if it is poweredoff. - Upgrade
Mode string - Update mode for the cloud service. Role instances are allocated to update domains when the service is deployed. Updates can be initiated manually in each update domain or initiated automatically in all update domains. Possible Values are AutoManual Simultaneous If not specified, the default value is Auto. If set to Manual, PUT UpdateDomain must be called to apply the update. If set to Auto, the update is automatically applied to each update domain in sequence.
- Provisioning
State string - The provisioning state, which only appears in the response.
- Unique
Id string - The unique identifier for the cloud service.
- Allow
Model boolOverride - (Optional) Indicates whether the role sku properties (roleProfile.roles.sku) specified in the model/template should override the role instance count and vm size specified in the .cscfg and .csdef respectively.
The default value is
false
. - Configuration string
- Specifies the XML service configuration (.cscfg) for the cloud service.
- Configuration
Url string - Specifies a URL that refers to the location of the service configuration in the Blob service. The service package URL can be Shared Access Signature (SAS) URI from any storage account. This is a write-only property and is not returned in GET calls.
- Extension
Profile CloudService Extension Profile Response - Describes a cloud service extension profile.
- Network
Profile CloudService Network Profile Response - Network Profile for the cloud service.
- Os
Profile CloudService Os Profile Response - Describes the OS profile for the cloud service.
- Package
Url string - Specifies a URL that refers to the location of the service package in the Blob service. The service package URL can be Shared Access Signature (SAS) URI from any storage account. This is a write-only property and is not returned in GET calls.
- Role
Profile CloudService Role Profile Response - Describes the role profile for the cloud service.
- Start
Cloud boolService - (Optional) Indicates whether to start the cloud service immediately after it is created. The default value is
true
. If false, the service model is still deployed, but the code is not run immediately. Instead, the service is PoweredOff until you call Start, at which time the service will be started. A deployed service still incurs charges, even if it is poweredoff. - Upgrade
Mode string - Update mode for the cloud service. Role instances are allocated to update domains when the service is deployed. Updates can be initiated manually in each update domain or initiated automatically in all update domains. Possible Values are AutoManual Simultaneous If not specified, the default value is Auto. If set to Manual, PUT UpdateDomain must be called to apply the update. If set to Auto, the update is automatically applied to each update domain in sequence.
- provisioning
State String - The provisioning state, which only appears in the response.
- unique
Id String - The unique identifier for the cloud service.
- allow
Model BooleanOverride - (Optional) Indicates whether the role sku properties (roleProfile.roles.sku) specified in the model/template should override the role instance count and vm size specified in the .cscfg and .csdef respectively.
The default value is
false
. - configuration String
- Specifies the XML service configuration (.cscfg) for the cloud service.
- configuration
Url String - Specifies a URL that refers to the location of the service configuration in the Blob service. The service package URL can be Shared Access Signature (SAS) URI from any storage account. This is a write-only property and is not returned in GET calls.
- extension
Profile CloudService Extension Profile Response - Describes a cloud service extension profile.
- network
Profile CloudService Network Profile Response - Network Profile for the cloud service.
- os
Profile CloudService Os Profile Response - Describes the OS profile for the cloud service.
- package
Url String - Specifies a URL that refers to the location of the service package in the Blob service. The service package URL can be Shared Access Signature (SAS) URI from any storage account. This is a write-only property and is not returned in GET calls.
- role
Profile CloudService Role Profile Response - Describes the role profile for the cloud service.
- start
Cloud BooleanService - (Optional) Indicates whether to start the cloud service immediately after it is created. The default value is
true
. If false, the service model is still deployed, but the code is not run immediately. Instead, the service is PoweredOff until you call Start, at which time the service will be started. A deployed service still incurs charges, even if it is poweredoff. - upgrade
Mode String - Update mode for the cloud service. Role instances are allocated to update domains when the service is deployed. Updates can be initiated manually in each update domain or initiated automatically in all update domains. Possible Values are AutoManual Simultaneous If not specified, the default value is Auto. If set to Manual, PUT UpdateDomain must be called to apply the update. If set to Auto, the update is automatically applied to each update domain in sequence.
- provisioning
State string - The provisioning state, which only appears in the response.
- unique
Id string - The unique identifier for the cloud service.
- allow
Model booleanOverride - (Optional) Indicates whether the role sku properties (roleProfile.roles.sku) specified in the model/template should override the role instance count and vm size specified in the .cscfg and .csdef respectively.
The default value is
false
. - configuration string
- Specifies the XML service configuration (.cscfg) for the cloud service.
- configuration
Url string - Specifies a URL that refers to the location of the service configuration in the Blob service. The service package URL can be Shared Access Signature (SAS) URI from any storage account. This is a write-only property and is not returned in GET calls.
- extension
Profile CloudService Extension Profile Response - Describes a cloud service extension profile.
- network
Profile CloudService Network Profile Response - Network Profile for the cloud service.
- os
Profile CloudService Os Profile Response - Describes the OS profile for the cloud service.
- package
Url string - Specifies a URL that refers to the location of the service package in the Blob service. The service package URL can be Shared Access Signature (SAS) URI from any storage account. This is a write-only property and is not returned in GET calls.
- role
Profile CloudService Role Profile Response - Describes the role profile for the cloud service.
- start
Cloud booleanService - (Optional) Indicates whether to start the cloud service immediately after it is created. The default value is
true
. If false, the service model is still deployed, but the code is not run immediately. Instead, the service is PoweredOff until you call Start, at which time the service will be started. A deployed service still incurs charges, even if it is poweredoff. - upgrade
Mode string - Update mode for the cloud service. Role instances are allocated to update domains when the service is deployed. Updates can be initiated manually in each update domain or initiated automatically in all update domains. Possible Values are AutoManual Simultaneous If not specified, the default value is Auto. If set to Manual, PUT UpdateDomain must be called to apply the update. If set to Auto, the update is automatically applied to each update domain in sequence.
- provisioning_
state str - The provisioning state, which only appears in the response.
- unique_
id str - The unique identifier for the cloud service.
- allow_
model_ booloverride - (Optional) Indicates whether the role sku properties (roleProfile.roles.sku) specified in the model/template should override the role instance count and vm size specified in the .cscfg and .csdef respectively.
The default value is
false
. - configuration str
- Specifies the XML service configuration (.cscfg) for the cloud service.
- configuration_
url str - Specifies a URL that refers to the location of the service configuration in the Blob service. The service package URL can be Shared Access Signature (SAS) URI from any storage account. This is a write-only property and is not returned in GET calls.
- extension_
profile CloudService Extension Profile Response - Describes a cloud service extension profile.
- network_
profile CloudService Network Profile Response - Network Profile for the cloud service.
- os_
profile CloudService Os Profile Response - Describes the OS profile for the cloud service.
- package_
url str - Specifies a URL that refers to the location of the service package in the Blob service. The service package URL can be Shared Access Signature (SAS) URI from any storage account. This is a write-only property and is not returned in GET calls.
- role_
profile CloudService Role Profile Response - Describes the role profile for the cloud service.
- start_
cloud_ boolservice - (Optional) Indicates whether to start the cloud service immediately after it is created. The default value is
true
. If false, the service model is still deployed, but the code is not run immediately. Instead, the service is PoweredOff until you call Start, at which time the service will be started. A deployed service still incurs charges, even if it is poweredoff. - upgrade_
mode str - Update mode for the cloud service. Role instances are allocated to update domains when the service is deployed. Updates can be initiated manually in each update domain or initiated automatically in all update domains. Possible Values are AutoManual Simultaneous If not specified, the default value is Auto. If set to Manual, PUT UpdateDomain must be called to apply the update. If set to Auto, the update is automatically applied to each update domain in sequence.
- provisioning
State String - The provisioning state, which only appears in the response.
- unique
Id String - The unique identifier for the cloud service.
- allow
Model BooleanOverride - (Optional) Indicates whether the role sku properties (roleProfile.roles.sku) specified in the model/template should override the role instance count and vm size specified in the .cscfg and .csdef respectively.
The default value is
false
. - configuration String
- Specifies the XML service configuration (.cscfg) for the cloud service.
- configuration
Url String - Specifies a URL that refers to the location of the service configuration in the Blob service. The service package URL can be Shared Access Signature (SAS) URI from any storage account. This is a write-only property and is not returned in GET calls.
- extension
Profile Property Map - Describes a cloud service extension profile.
- network
Profile Property Map - Network Profile for the cloud service.
- os
Profile Property Map - Describes the OS profile for the cloud service.
- package
Url String - Specifies a URL that refers to the location of the service package in the Blob service. The service package URL can be Shared Access Signature (SAS) URI from any storage account. This is a write-only property and is not returned in GET calls.
- role
Profile Property Map - Describes the role profile for the cloud service.
- start
Cloud BooleanService - (Optional) Indicates whether to start the cloud service immediately after it is created. The default value is
true
. If false, the service model is still deployed, but the code is not run immediately. Instead, the service is PoweredOff until you call Start, at which time the service will be started. A deployed service still incurs charges, even if it is poweredoff. - upgrade
Mode String - Update mode for the cloud service. Role instances are allocated to update domains when the service is deployed. Updates can be initiated manually in each update domain or initiated automatically in all update domains. Possible Values are AutoManual Simultaneous If not specified, the default value is Auto. If set to Manual, PUT UpdateDomain must be called to apply the update. If set to Auto, the update is automatically applied to each update domain in sequence.
CloudServiceRoleProfile, CloudServiceRoleProfileArgs
- Roles
List<Pulumi.
Azure Native. Compute. Inputs. Cloud Service Role Profile Properties> - List of roles for the cloud service.
- Roles
[]Cloud
Service Role Profile Properties - List of roles for the cloud service.
- roles
List<Cloud
Service Role Profile Properties> - List of roles for the cloud service.
- roles
Cloud
Service Role Profile Properties[] - List of roles for the cloud service.
- roles
Sequence[Cloud
Service Role Profile Properties] - List of roles for the cloud service.
- roles List<Property Map>
- List of roles for the cloud service.
CloudServiceRoleProfileProperties, CloudServiceRoleProfilePropertiesArgs
- Name string
- Resource name.
- Sku
Pulumi.
Azure Native. Compute. Inputs. Cloud Service Role Sku - Describes the cloud service role sku.
- Name string
- Resource name.
- Sku
Cloud
Service Role Sku - Describes the cloud service role sku.
- name String
- Resource name.
- sku
Cloud
Service Role Sku - Describes the cloud service role sku.
- name string
- Resource name.
- sku
Cloud
Service Role Sku - Describes the cloud service role sku.
- name str
- Resource name.
- sku
Cloud
Service Role Sku - Describes the cloud service role sku.
- name String
- Resource name.
- sku Property Map
- Describes the cloud service role sku.
CloudServiceRoleProfilePropertiesResponse, CloudServiceRoleProfilePropertiesResponseArgs
- Name string
- Resource name.
- Sku
Pulumi.
Azure Native. Compute. Inputs. Cloud Service Role Sku Response - Describes the cloud service role sku.
- Name string
- Resource name.
- Sku
Cloud
Service Role Sku Response - Describes the cloud service role sku.
- name String
- Resource name.
- sku
Cloud
Service Role Sku Response - Describes the cloud service role sku.
- name string
- Resource name.
- sku
Cloud
Service Role Sku Response - Describes the cloud service role sku.
- name str
- Resource name.
- sku
Cloud
Service Role Sku Response - Describes the cloud service role sku.
- name String
- Resource name.
- sku Property Map
- Describes the cloud service role sku.
CloudServiceRoleProfileResponse, CloudServiceRoleProfileResponseArgs
- Roles
List<Pulumi.
Azure Native. Compute. Inputs. Cloud Service Role Profile Properties Response> - List of roles for the cloud service.
- Roles
[]Cloud
Service Role Profile Properties Response - List of roles for the cloud service.
- roles
List<Cloud
Service Role Profile Properties Response> - List of roles for the cloud service.
- roles
Cloud
Service Role Profile Properties Response[] - List of roles for the cloud service.
- roles
Sequence[Cloud
Service Role Profile Properties Response] - List of roles for the cloud service.
- roles List<Property Map>
- List of roles for the cloud service.
CloudServiceRoleSku, CloudServiceRoleSkuArgs
- Capacity double
- Specifies the number of role instances in the cloud service.
- Name string
- The sku name. NOTE: If the new SKU is not supported on the hardware the cloud service is currently on, you need to delete and recreate the cloud service or move back to the old sku.
- Tier string
- Specifies the tier of the cloud service. Possible Values are Standard Basic
- Capacity float64
- Specifies the number of role instances in the cloud service.
- Name string
- The sku name. NOTE: If the new SKU is not supported on the hardware the cloud service is currently on, you need to delete and recreate the cloud service or move back to the old sku.
- Tier string
- Specifies the tier of the cloud service. Possible Values are Standard Basic
- capacity Double
- Specifies the number of role instances in the cloud service.
- name String
- The sku name. NOTE: If the new SKU is not supported on the hardware the cloud service is currently on, you need to delete and recreate the cloud service or move back to the old sku.
- tier String
- Specifies the tier of the cloud service. Possible Values are Standard Basic
- capacity number
- Specifies the number of role instances in the cloud service.
- name string
- The sku name. NOTE: If the new SKU is not supported on the hardware the cloud service is currently on, you need to delete and recreate the cloud service or move back to the old sku.
- tier string
- Specifies the tier of the cloud service. Possible Values are Standard Basic
- capacity float
- Specifies the number of role instances in the cloud service.
- name str
- The sku name. NOTE: If the new SKU is not supported on the hardware the cloud service is currently on, you need to delete and recreate the cloud service or move back to the old sku.
- tier str
- Specifies the tier of the cloud service. Possible Values are Standard Basic
- capacity Number
- Specifies the number of role instances in the cloud service.
- name String
- The sku name. NOTE: If the new SKU is not supported on the hardware the cloud service is currently on, you need to delete and recreate the cloud service or move back to the old sku.
- tier String
- Specifies the tier of the cloud service. Possible Values are Standard Basic
CloudServiceRoleSkuResponse, CloudServiceRoleSkuResponseArgs
- Capacity double
- Specifies the number of role instances in the cloud service.
- Name string
- The sku name. NOTE: If the new SKU is not supported on the hardware the cloud service is currently on, you need to delete and recreate the cloud service or move back to the old sku.
- Tier string
- Specifies the tier of the cloud service. Possible Values are Standard Basic
- Capacity float64
- Specifies the number of role instances in the cloud service.
- Name string
- The sku name. NOTE: If the new SKU is not supported on the hardware the cloud service is currently on, you need to delete and recreate the cloud service or move back to the old sku.
- Tier string
- Specifies the tier of the cloud service. Possible Values are Standard Basic
- capacity Double
- Specifies the number of role instances in the cloud service.
- name String
- The sku name. NOTE: If the new SKU is not supported on the hardware the cloud service is currently on, you need to delete and recreate the cloud service or move back to the old sku.
- tier String
- Specifies the tier of the cloud service. Possible Values are Standard Basic
- capacity number
- Specifies the number of role instances in the cloud service.
- name string
- The sku name. NOTE: If the new SKU is not supported on the hardware the cloud service is currently on, you need to delete and recreate the cloud service or move back to the old sku.
- tier string
- Specifies the tier of the cloud service. Possible Values are Standard Basic
- capacity float
- Specifies the number of role instances in the cloud service.
- name str
- The sku name. NOTE: If the new SKU is not supported on the hardware the cloud service is currently on, you need to delete and recreate the cloud service or move back to the old sku.
- tier str
- Specifies the tier of the cloud service. Possible Values are Standard Basic
- capacity Number
- Specifies the number of role instances in the cloud service.
- name String
- The sku name. NOTE: If the new SKU is not supported on the hardware the cloud service is currently on, you need to delete and recreate the cloud service or move back to the old sku.
- tier String
- Specifies the tier of the cloud service. Possible Values are Standard Basic
CloudServiceUpgradeMode, CloudServiceUpgradeModeArgs
- Auto
- Auto
- Manual
- Manual
- Simultaneous
- Simultaneous
- Cloud
Service Upgrade Mode Auto - Auto
- Cloud
Service Upgrade Mode Manual - Manual
- Cloud
Service Upgrade Mode Simultaneous - Simultaneous
- Auto
- Auto
- Manual
- Manual
- Simultaneous
- Simultaneous
- Auto
- Auto
- Manual
- Manual
- Simultaneous
- Simultaneous
- AUTO
- Auto
- MANUAL
- Manual
- SIMULTANEOUS
- Simultaneous
- "Auto"
- Auto
- "Manual"
- Manual
- "Simultaneous"
- Simultaneous
CloudServiceVaultAndSecretReference, CloudServiceVaultAndSecretReferenceArgs
- Secret
Url string - Source
Vault SubResource
- secret
Url String - source
Vault SubResource
- secret
Url string - source
Vault SubResource
- secret
Url String - source
Vault Property Map
CloudServiceVaultAndSecretReferenceResponse, CloudServiceVaultAndSecretReferenceResponseArgs
- secret
Url String - source
Vault Property Map
CloudServiceVaultCertificate, CloudServiceVaultCertificateArgs
- Certificate
Url string - This is the URL of a certificate that has been uploaded to Key Vault as a secret.
- Certificate
Url string - This is the URL of a certificate that has been uploaded to Key Vault as a secret.
- certificate
Url String - This is the URL of a certificate that has been uploaded to Key Vault as a secret.
- certificate
Url string - This is the URL of a certificate that has been uploaded to Key Vault as a secret.
- certificate_
url str - This is the URL of a certificate that has been uploaded to Key Vault as a secret.
- certificate
Url String - This is the URL of a certificate that has been uploaded to Key Vault as a secret.
CloudServiceVaultCertificateResponse, CloudServiceVaultCertificateResponseArgs
- Certificate
Url string - This is the URL of a certificate that has been uploaded to Key Vault as a secret.
- Certificate
Url string - This is the URL of a certificate that has been uploaded to Key Vault as a secret.
- certificate
Url String - This is the URL of a certificate that has been uploaded to Key Vault as a secret.
- certificate
Url string - This is the URL of a certificate that has been uploaded to Key Vault as a secret.
- certificate_
url str - This is the URL of a certificate that has been uploaded to Key Vault as a secret.
- certificate
Url String - This is the URL of a certificate that has been uploaded to Key Vault as a secret.
CloudServiceVaultSecretGroup, CloudServiceVaultSecretGroupArgs
- Source
Vault Pulumi.Azure Native. Compute. Inputs. Sub Resource - The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- Vault
Certificates List<Pulumi.Azure Native. Compute. Inputs. Cloud Service Vault Certificate> - The list of key vault references in SourceVault which contain certificates.
- Source
Vault SubResource - The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- Vault
Certificates []CloudService Vault Certificate - The list of key vault references in SourceVault which contain certificates.
- source
Vault SubResource - The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- vault
Certificates List<CloudService Vault Certificate> - The list of key vault references in SourceVault which contain certificates.
- source
Vault SubResource - The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- vault
Certificates CloudService Vault Certificate[] - The list of key vault references in SourceVault which contain certificates.
- source_
vault SubResource - The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- vault_
certificates Sequence[CloudService Vault Certificate] - The list of key vault references in SourceVault which contain certificates.
- source
Vault Property Map - The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- vault
Certificates List<Property Map> - The list of key vault references in SourceVault which contain certificates.
CloudServiceVaultSecretGroupResponse, CloudServiceVaultSecretGroupResponseArgs
- Source
Vault Pulumi.Azure Native. Compute. Inputs. Sub Resource Response - The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- Vault
Certificates List<Pulumi.Azure Native. Compute. Inputs. Cloud Service Vault Certificate Response> - The list of key vault references in SourceVault which contain certificates.
- Source
Vault SubResource Response - The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- Vault
Certificates []CloudService Vault Certificate Response - The list of key vault references in SourceVault which contain certificates.
- source
Vault SubResource Response - The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- vault
Certificates List<CloudService Vault Certificate Response> - The list of key vault references in SourceVault which contain certificates.
- source
Vault SubResource Response - The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- vault
Certificates CloudService Vault Certificate Response[] - The list of key vault references in SourceVault which contain certificates.
- source_
vault SubResource Response - The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- vault_
certificates Sequence[CloudService Vault Certificate Response] - The list of key vault references in SourceVault which contain certificates.
- source
Vault Property Map - The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- vault
Certificates List<Property Map> - The list of key vault references in SourceVault which contain certificates.
Extension, ExtensionArgs
- Name string
- The name of the extension.
- Properties
Pulumi.
Azure Native. Compute. Inputs. Cloud Service Extension Properties - Extension Properties.
- Name string
- The name of the extension.
- Properties
Cloud
Service Extension Properties - Extension Properties.
- name String
- The name of the extension.
- properties
Cloud
Service Extension Properties - Extension Properties.
- name string
- The name of the extension.
- properties
Cloud
Service Extension Properties - Extension Properties.
- name str
- The name of the extension.
- properties
Cloud
Service Extension Properties - Extension Properties.
- name String
- The name of the extension.
- properties Property Map
- Extension Properties.
ExtensionResponse, ExtensionResponseArgs
- Name string
- The name of the extension.
- Properties
Pulumi.
Azure Native. Compute. Inputs. Cloud Service Extension Properties Response - Extension Properties.
- Name string
- The name of the extension.
- Properties
Cloud
Service Extension Properties Response - Extension Properties.
- name String
- The name of the extension.
- properties
Cloud
Service Extension Properties Response - Extension Properties.
- name string
- The name of the extension.
- properties
Cloud
Service Extension Properties Response - Extension Properties.
- name str
- The name of the extension.
- properties
Cloud
Service Extension Properties Response - Extension Properties.
- name String
- The name of the extension.
- properties Property Map
- Extension Properties.
LoadBalancerConfiguration, LoadBalancerConfigurationArgs
- Name string
- The name of the Load balancer
- Properties
Pulumi.
Azure Native. Compute. Inputs. Load Balancer Configuration Properties - Properties of the load balancer configuration.
- Id string
- Resource Id
- Name string
- The name of the Load balancer
- Properties
Load
Balancer Configuration Properties - Properties of the load balancer configuration.
- Id string
- Resource Id
- name String
- The name of the Load balancer
- properties
Load
Balancer Configuration Properties - Properties of the load balancer configuration.
- id String
- Resource Id
- name string
- The name of the Load balancer
- properties
Load
Balancer Configuration Properties - Properties of the load balancer configuration.
- id string
- Resource Id
- name str
- The name of the Load balancer
- properties
Load
Balancer Configuration Properties - Properties of the load balancer configuration.
- id str
- Resource Id
- name String
- The name of the Load balancer
- properties Property Map
- Properties of the load balancer configuration.
- id String
- Resource Id
LoadBalancerConfigurationProperties, LoadBalancerConfigurationPropertiesArgs
- Frontend
IPConfigurations List<Pulumi.Azure Native. Compute. Inputs. Load Balancer Frontend IPConfiguration> - Specifies the frontend IP to be used for the load balancer. Only IPv4 frontend IP address is supported. Each load balancer configuration must have exactly one frontend IP configuration.
- Frontend
IPConfigurations []LoadBalancer Frontend IPConfiguration - Specifies the frontend IP to be used for the load balancer. Only IPv4 frontend IP address is supported. Each load balancer configuration must have exactly one frontend IP configuration.
- frontend
IPConfigurations List<LoadBalancer Frontend IPConfiguration> - Specifies the frontend IP to be used for the load balancer. Only IPv4 frontend IP address is supported. Each load balancer configuration must have exactly one frontend IP configuration.
- frontend
IPConfigurations LoadBalancer Frontend IPConfiguration[] - Specifies the frontend IP to be used for the load balancer. Only IPv4 frontend IP address is supported. Each load balancer configuration must have exactly one frontend IP configuration.
- frontend_
ip_ Sequence[Loadconfigurations Balancer Frontend IPConfiguration] - Specifies the frontend IP to be used for the load balancer. Only IPv4 frontend IP address is supported. Each load balancer configuration must have exactly one frontend IP configuration.
- frontend
IPConfigurations List<Property Map> - Specifies the frontend IP to be used for the load balancer. Only IPv4 frontend IP address is supported. Each load balancer configuration must have exactly one frontend IP configuration.
LoadBalancerConfigurationPropertiesResponse, LoadBalancerConfigurationPropertiesResponseArgs
- Frontend
IPConfigurations List<Pulumi.Azure Native. Compute. Inputs. Load Balancer Frontend IPConfiguration Response> - Specifies the frontend IP to be used for the load balancer. Only IPv4 frontend IP address is supported. Each load balancer configuration must have exactly one frontend IP configuration.
- Frontend
IPConfigurations []LoadBalancer Frontend IPConfiguration Response - Specifies the frontend IP to be used for the load balancer. Only IPv4 frontend IP address is supported. Each load balancer configuration must have exactly one frontend IP configuration.
- frontend
IPConfigurations List<LoadBalancer Frontend IPConfiguration Response> - Specifies the frontend IP to be used for the load balancer. Only IPv4 frontend IP address is supported. Each load balancer configuration must have exactly one frontend IP configuration.
- frontend
IPConfigurations LoadBalancer Frontend IPConfiguration Response[] - Specifies the frontend IP to be used for the load balancer. Only IPv4 frontend IP address is supported. Each load balancer configuration must have exactly one frontend IP configuration.
- frontend_
ip_ Sequence[Loadconfigurations Balancer Frontend IPConfiguration Response] - Specifies the frontend IP to be used for the load balancer. Only IPv4 frontend IP address is supported. Each load balancer configuration must have exactly one frontend IP configuration.
- frontend
IPConfigurations List<Property Map> - Specifies the frontend IP to be used for the load balancer. Only IPv4 frontend IP address is supported. Each load balancer configuration must have exactly one frontend IP configuration.
LoadBalancerConfigurationResponse, LoadBalancerConfigurationResponseArgs
- Name string
- The name of the Load balancer
- Properties
Pulumi.
Azure Native. Compute. Inputs. Load Balancer Configuration Properties Response - Properties of the load balancer configuration.
- Id string
- Resource Id
- Name string
- The name of the Load balancer
- Properties
Load
Balancer Configuration Properties Response - Properties of the load balancer configuration.
- Id string
- Resource Id
- name String
- The name of the Load balancer
- properties
Load
Balancer Configuration Properties Response - Properties of the load balancer configuration.
- id String
- Resource Id
- name string
- The name of the Load balancer
- properties
Load
Balancer Configuration Properties Response - Properties of the load balancer configuration.
- id string
- Resource Id
- name str
- The name of the Load balancer
- properties
Load
Balancer Configuration Properties Response - Properties of the load balancer configuration.
- id str
- Resource Id
- name String
- The name of the Load balancer
- properties Property Map
- Properties of the load balancer configuration.
- id String
- Resource Id
LoadBalancerFrontendIPConfiguration, LoadBalancerFrontendIPConfigurationArgs
- Name string
- The name of the resource that is unique within the set of frontend IP configurations used by the load balancer. This name can be used to access the resource.
- Properties
Pulumi.
Azure Native. Compute. Inputs. Load Balancer Frontend IPConfiguration Properties - Properties of load balancer frontend ip configuration.
- Name string
- The name of the resource that is unique within the set of frontend IP configurations used by the load balancer. This name can be used to access the resource.
- Properties
Load
Balancer Frontend IPConfiguration Properties - Properties of load balancer frontend ip configuration.
- name String
- The name of the resource that is unique within the set of frontend IP configurations used by the load balancer. This name can be used to access the resource.
- properties
Load
Balancer Frontend IPConfiguration Properties - Properties of load balancer frontend ip configuration.
- name string
- The name of the resource that is unique within the set of frontend IP configurations used by the load balancer. This name can be used to access the resource.
- properties
Load
Balancer Frontend IPConfiguration Properties - Properties of load balancer frontend ip configuration.
- name str
- The name of the resource that is unique within the set of frontend IP configurations used by the load balancer. This name can be used to access the resource.
- properties
Load
Balancer Frontend IPConfiguration Properties - Properties of load balancer frontend ip configuration.
- name String
- The name of the resource that is unique within the set of frontend IP configurations used by the load balancer. This name can be used to access the resource.
- properties Property Map
- Properties of load balancer frontend ip configuration.
LoadBalancerFrontendIPConfigurationProperties, LoadBalancerFrontendIPConfigurationPropertiesArgs
- Private
IPAddress string - The virtual network private IP address of the IP configuration.
- Public
IPAddress Pulumi.Azure Native. Compute. Inputs. Sub Resource - The reference to the public ip address resource.
- Subnet
Pulumi.
Azure Native. Compute. Inputs. Sub Resource - The reference to the virtual network subnet resource.
- Private
IPAddress string - The virtual network private IP address of the IP configuration.
- Public
IPAddress SubResource - The reference to the public ip address resource.
- Subnet
Sub
Resource - The reference to the virtual network subnet resource.
- private
IPAddress String - The virtual network private IP address of the IP configuration.
- public
IPAddress SubResource - The reference to the public ip address resource.
- subnet
Sub
Resource - The reference to the virtual network subnet resource.
- private
IPAddress string - The virtual network private IP address of the IP configuration.
- public
IPAddress SubResource - The reference to the public ip address resource.
- subnet
Sub
Resource - The reference to the virtual network subnet resource.
- private_
ip_ straddress - The virtual network private IP address of the IP configuration.
- public_
ip_ Subaddress Resource - The reference to the public ip address resource.
- subnet
Sub
Resource - The reference to the virtual network subnet resource.
- private
IPAddress String - The virtual network private IP address of the IP configuration.
- public
IPAddress Property Map - The reference to the public ip address resource.
- subnet Property Map
- The reference to the virtual network subnet resource.
LoadBalancerFrontendIPConfigurationPropertiesResponse, LoadBalancerFrontendIPConfigurationPropertiesResponseArgs
- Private
IPAddress string - The virtual network private IP address of the IP configuration.
- Public
IPAddress Pulumi.Azure Native. Compute. Inputs. Sub Resource Response - The reference to the public ip address resource.
- Subnet
Pulumi.
Azure Native. Compute. Inputs. Sub Resource Response - The reference to the virtual network subnet resource.
- Private
IPAddress string - The virtual network private IP address of the IP configuration.
- Public
IPAddress SubResource Response - The reference to the public ip address resource.
- Subnet
Sub
Resource Response - The reference to the virtual network subnet resource.
- private
IPAddress String - The virtual network private IP address of the IP configuration.
- public
IPAddress SubResource Response - The reference to the public ip address resource.
- subnet
Sub
Resource Response - The reference to the virtual network subnet resource.
- private
IPAddress string - The virtual network private IP address of the IP configuration.
- public
IPAddress SubResource Response - The reference to the public ip address resource.
- subnet
Sub
Resource Response - The reference to the virtual network subnet resource.
- private_
ip_ straddress - The virtual network private IP address of the IP configuration.
- public_
ip_ Subaddress Resource Response - The reference to the public ip address resource.
- subnet
Sub
Resource Response - The reference to the virtual network subnet resource.
- private
IPAddress String - The virtual network private IP address of the IP configuration.
- public
IPAddress Property Map - The reference to the public ip address resource.
- subnet Property Map
- The reference to the virtual network subnet resource.
LoadBalancerFrontendIPConfigurationResponse, LoadBalancerFrontendIPConfigurationResponseArgs
- Name string
- The name of the resource that is unique within the set of frontend IP configurations used by the load balancer. This name can be used to access the resource.
- Properties
Pulumi.
Azure Native. Compute. Inputs. Load Balancer Frontend IPConfiguration Properties Response - Properties of load balancer frontend ip configuration.
- Name string
- The name of the resource that is unique within the set of frontend IP configurations used by the load balancer. This name can be used to access the resource.
- Properties
Load
Balancer Frontend IPConfiguration Properties Response - Properties of load balancer frontend ip configuration.
- name String
- The name of the resource that is unique within the set of frontend IP configurations used by the load balancer. This name can be used to access the resource.
- properties
Load
Balancer Frontend IPConfiguration Properties Response - Properties of load balancer frontend ip configuration.
- name string
- The name of the resource that is unique within the set of frontend IP configurations used by the load balancer. This name can be used to access the resource.
- properties
Load
Balancer Frontend IPConfiguration Properties Response - Properties of load balancer frontend ip configuration.
- name str
- The name of the resource that is unique within the set of frontend IP configurations used by the load balancer. This name can be used to access the resource.
- properties
Load
Balancer Frontend IPConfiguration Properties Response - Properties of load balancer frontend ip configuration.
- name String
- The name of the resource that is unique within the set of frontend IP configurations used by the load balancer. This name can be used to access the resource.
- properties Property Map
- Properties of load balancer frontend ip configuration.
SubResource, SubResourceArgs
- Id string
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
- Id string
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
- id String
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
- id string
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
- id str
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
- id String
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
SubResourceResponse, SubResourceResponseArgs
- Id string
- Resource Id
- Id string
- Resource Id
- id String
- Resource Id
- id string
- Resource Id
- id str
- Resource Id
- id String
- Resource Id
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:compute:CloudService {cs-name} /subscriptions/{subscription-id}/resourceGroups/ConstosoRG/providers/Microsoft.Compute/cloudServices/{cs-name}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0