azure-native.servicefabric.ManagedClusterApplication
Explore with Pulumi AI
The application resource. Azure REST API version: 2023-03-01-preview.
Other available API versions: 2023-07-01-preview, 2023-09-01-preview, 2023-11-01-preview, 2023-12-01-preview, 2024-02-01-preview, 2024-04-01.
Example Usage
Put an application with maximum parameters
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var managedClusterApplication = new AzureNative.ServiceFabric.ManagedClusterApplication("managedClusterApplication", new()
{
ApplicationName = "myApp",
ClusterName = "myCluster",
Location = "eastus",
Parameters =
{
{ "param1", "value1" },
},
ResourceGroupName = "resRg",
Tags =
{
{ "a", "b" },
},
UpgradePolicy = new AzureNative.ServiceFabric.Inputs.ApplicationUpgradePolicyArgs
{
ApplicationHealthPolicy = new AzureNative.ServiceFabric.Inputs.ApplicationHealthPolicyArgs
{
ConsiderWarningAsError = true,
DefaultServiceTypeHealthPolicy = new AzureNative.ServiceFabric.Inputs.ServiceTypeHealthPolicyArgs
{
MaxPercentUnhealthyPartitionsPerService = 0,
MaxPercentUnhealthyReplicasPerPartition = 0,
MaxPercentUnhealthyServices = 0,
},
MaxPercentUnhealthyDeployedApplications = 0,
ServiceTypeHealthPolicyMap =
{
{ "myService", new AzureNative.ServiceFabric.Inputs.ServiceTypeHealthPolicyArgs
{
MaxPercentUnhealthyPartitionsPerService = 30,
MaxPercentUnhealthyReplicasPerPartition = 30,
MaxPercentUnhealthyServices = 30,
} },
},
},
ForceRestart = false,
InstanceCloseDelayDuration = 600,
RecreateApplication = false,
RollingUpgradeMonitoringPolicy = new AzureNative.ServiceFabric.Inputs.RollingUpgradeMonitoringPolicyArgs
{
FailureAction = AzureNative.ServiceFabric.FailureAction.Rollback,
HealthCheckRetryTimeout = "00:10:00",
HealthCheckStableDuration = "00:05:00",
HealthCheckWaitDuration = "00:02:00",
UpgradeDomainTimeout = "00:15:00",
UpgradeTimeout = "01:00:00",
},
UpgradeMode = AzureNative.ServiceFabric.RollingUpgradeMode.UnmonitoredAuto,
UpgradeReplicaSetCheckTimeout = 3600,
},
Version = "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/managedclusters/myCluster/applicationTypes/myAppType/versions/1.0",
});
});
package main
import (
servicefabric "github.com/pulumi/pulumi-azure-native-sdk/servicefabric/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := servicefabric.NewManagedClusterApplication(ctx, "managedClusterApplication", &servicefabric.ManagedClusterApplicationArgs{
ApplicationName: pulumi.String("myApp"),
ClusterName: pulumi.String("myCluster"),
Location: pulumi.String("eastus"),
Parameters: pulumi.StringMap{
"param1": pulumi.String("value1"),
},
ResourceGroupName: pulumi.String("resRg"),
Tags: pulumi.StringMap{
"a": pulumi.String("b"),
},
UpgradePolicy: &servicefabric.ApplicationUpgradePolicyArgs{
ApplicationHealthPolicy: &servicefabric.ApplicationHealthPolicyArgs{
ConsiderWarningAsError: pulumi.Bool(true),
DefaultServiceTypeHealthPolicy: &servicefabric.ServiceTypeHealthPolicyArgs{
MaxPercentUnhealthyPartitionsPerService: pulumi.Int(0),
MaxPercentUnhealthyReplicasPerPartition: pulumi.Int(0),
MaxPercentUnhealthyServices: pulumi.Int(0),
},
MaxPercentUnhealthyDeployedApplications: pulumi.Int(0),
ServiceTypeHealthPolicyMap: servicefabric.ServiceTypeHealthPolicyMap{
"myService": &servicefabric.ServiceTypeHealthPolicyArgs{
MaxPercentUnhealthyPartitionsPerService: pulumi.Int(30),
MaxPercentUnhealthyReplicasPerPartition: pulumi.Int(30),
MaxPercentUnhealthyServices: pulumi.Int(30),
},
},
},
ForceRestart: pulumi.Bool(false),
InstanceCloseDelayDuration: pulumi.Float64(600),
RecreateApplication: pulumi.Bool(false),
RollingUpgradeMonitoringPolicy: &servicefabric.RollingUpgradeMonitoringPolicyArgs{
FailureAction: pulumi.String(servicefabric.FailureActionRollback),
HealthCheckRetryTimeout: pulumi.String("00:10:00"),
HealthCheckStableDuration: pulumi.String("00:05:00"),
HealthCheckWaitDuration: pulumi.String("00:02:00"),
UpgradeDomainTimeout: pulumi.String("00:15:00"),
UpgradeTimeout: pulumi.String("01:00:00"),
},
UpgradeMode: pulumi.String(servicefabric.RollingUpgradeModeUnmonitoredAuto),
UpgradeReplicaSetCheckTimeout: pulumi.Float64(3600),
},
Version: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/managedclusters/myCluster/applicationTypes/myAppType/versions/1.0"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.servicefabric.ManagedClusterApplication;
import com.pulumi.azurenative.servicefabric.ManagedClusterApplicationArgs;
import com.pulumi.azurenative.servicefabric.inputs.ApplicationUpgradePolicyArgs;
import com.pulumi.azurenative.servicefabric.inputs.ApplicationHealthPolicyArgs;
import com.pulumi.azurenative.servicefabric.inputs.ServiceTypeHealthPolicyArgs;
import com.pulumi.azurenative.servicefabric.inputs.RollingUpgradeMonitoringPolicyArgs;
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 managedClusterApplication = new ManagedClusterApplication("managedClusterApplication", ManagedClusterApplicationArgs.builder()
.applicationName("myApp")
.clusterName("myCluster")
.location("eastus")
.parameters(Map.of("param1", "value1"))
.resourceGroupName("resRg")
.tags(Map.of("a", "b"))
.upgradePolicy(ApplicationUpgradePolicyArgs.builder()
.applicationHealthPolicy(ApplicationHealthPolicyArgs.builder()
.considerWarningAsError(true)
.defaultServiceTypeHealthPolicy(ServiceTypeHealthPolicyArgs.builder()
.maxPercentUnhealthyPartitionsPerService(0)
.maxPercentUnhealthyReplicasPerPartition(0)
.maxPercentUnhealthyServices(0)
.build())
.maxPercentUnhealthyDeployedApplications(0)
.serviceTypeHealthPolicyMap(Map.of("myService", Map.ofEntries(
Map.entry("maxPercentUnhealthyPartitionsPerService", 30),
Map.entry("maxPercentUnhealthyReplicasPerPartition", 30),
Map.entry("maxPercentUnhealthyServices", 30)
)))
.build())
.forceRestart(false)
.instanceCloseDelayDuration(600)
.recreateApplication(false)
.rollingUpgradeMonitoringPolicy(RollingUpgradeMonitoringPolicyArgs.builder()
.failureAction("Rollback")
.healthCheckRetryTimeout("00:10:00")
.healthCheckStableDuration("00:05:00")
.healthCheckWaitDuration("00:02:00")
.upgradeDomainTimeout("00:15:00")
.upgradeTimeout("01:00:00")
.build())
.upgradeMode("UnmonitoredAuto")
.upgradeReplicaSetCheckTimeout(3600)
.build())
.version("/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/managedclusters/myCluster/applicationTypes/myAppType/versions/1.0")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
managed_cluster_application = azure_native.servicefabric.ManagedClusterApplication("managedClusterApplication",
application_name="myApp",
cluster_name="myCluster",
location="eastus",
parameters={
"param1": "value1",
},
resource_group_name="resRg",
tags={
"a": "b",
},
upgrade_policy=azure_native.servicefabric.ApplicationUpgradePolicyArgs(
application_health_policy=azure_native.servicefabric.ApplicationHealthPolicyArgs(
consider_warning_as_error=True,
default_service_type_health_policy=azure_native.servicefabric.ServiceTypeHealthPolicyArgs(
max_percent_unhealthy_partitions_per_service=0,
max_percent_unhealthy_replicas_per_partition=0,
max_percent_unhealthy_services=0,
),
max_percent_unhealthy_deployed_applications=0,
service_type_health_policy_map={
"myService": azure_native.servicefabric.ServiceTypeHealthPolicyArgs(
max_percent_unhealthy_partitions_per_service=30,
max_percent_unhealthy_replicas_per_partition=30,
max_percent_unhealthy_services=30,
),
},
),
force_restart=False,
instance_close_delay_duration=600,
recreate_application=False,
rolling_upgrade_monitoring_policy=azure_native.servicefabric.RollingUpgradeMonitoringPolicyArgs(
failure_action=azure_native.servicefabric.FailureAction.ROLLBACK,
health_check_retry_timeout="00:10:00",
health_check_stable_duration="00:05:00",
health_check_wait_duration="00:02:00",
upgrade_domain_timeout="00:15:00",
upgrade_timeout="01:00:00",
),
upgrade_mode=azure_native.servicefabric.RollingUpgradeMode.UNMONITORED_AUTO,
upgrade_replica_set_check_timeout=3600,
),
version="/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/managedclusters/myCluster/applicationTypes/myAppType/versions/1.0")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const managedClusterApplication = new azure_native.servicefabric.ManagedClusterApplication("managedClusterApplication", {
applicationName: "myApp",
clusterName: "myCluster",
location: "eastus",
parameters: {
param1: "value1",
},
resourceGroupName: "resRg",
tags: {
a: "b",
},
upgradePolicy: {
applicationHealthPolicy: {
considerWarningAsError: true,
defaultServiceTypeHealthPolicy: {
maxPercentUnhealthyPartitionsPerService: 0,
maxPercentUnhealthyReplicasPerPartition: 0,
maxPercentUnhealthyServices: 0,
},
maxPercentUnhealthyDeployedApplications: 0,
serviceTypeHealthPolicyMap: {
myService: {
maxPercentUnhealthyPartitionsPerService: 30,
maxPercentUnhealthyReplicasPerPartition: 30,
maxPercentUnhealthyServices: 30,
},
},
},
forceRestart: false,
instanceCloseDelayDuration: 600,
recreateApplication: false,
rollingUpgradeMonitoringPolicy: {
failureAction: azure_native.servicefabric.FailureAction.Rollback,
healthCheckRetryTimeout: "00:10:00",
healthCheckStableDuration: "00:05:00",
healthCheckWaitDuration: "00:02:00",
upgradeDomainTimeout: "00:15:00",
upgradeTimeout: "01:00:00",
},
upgradeMode: azure_native.servicefabric.RollingUpgradeMode.UnmonitoredAuto,
upgradeReplicaSetCheckTimeout: 3600,
},
version: "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/managedclusters/myCluster/applicationTypes/myAppType/versions/1.0",
});
resources:
managedClusterApplication:
type: azure-native:servicefabric:ManagedClusterApplication
properties:
applicationName: myApp
clusterName: myCluster
location: eastus
parameters:
param1: value1
resourceGroupName: resRg
tags:
a: b
upgradePolicy:
applicationHealthPolicy:
considerWarningAsError: true
defaultServiceTypeHealthPolicy:
maxPercentUnhealthyPartitionsPerService: 0
maxPercentUnhealthyReplicasPerPartition: 0
maxPercentUnhealthyServices: 0
maxPercentUnhealthyDeployedApplications: 0
serviceTypeHealthPolicyMap:
myService:
maxPercentUnhealthyPartitionsPerService: 30
maxPercentUnhealthyReplicasPerPartition: 30
maxPercentUnhealthyServices: 30
forceRestart: false
instanceCloseDelayDuration: 600
recreateApplication: false
rollingUpgradeMonitoringPolicy:
failureAction: Rollback
healthCheckRetryTimeout: 00:10:00
healthCheckStableDuration: 00:05:00
healthCheckWaitDuration: 00:02:00
upgradeDomainTimeout: 00:15:00
upgradeTimeout: 01:00:00
upgradeMode: UnmonitoredAuto
upgradeReplicaSetCheckTimeout: 3600
version: /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/managedclusters/myCluster/applicationTypes/myAppType/versions/1.0
Put an application with minimum parameters
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var managedClusterApplication = new AzureNative.ServiceFabric.ManagedClusterApplication("managedClusterApplication", new()
{
ApplicationName = "myApp",
ClusterName = "myCluster",
Location = "eastus",
ResourceGroupName = "resRg",
Version = "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/managedclusters/myCluster/applicationTypes/myAppType/versions/1.0",
});
});
package main
import (
servicefabric "github.com/pulumi/pulumi-azure-native-sdk/servicefabric/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := servicefabric.NewManagedClusterApplication(ctx, "managedClusterApplication", &servicefabric.ManagedClusterApplicationArgs{
ApplicationName: pulumi.String("myApp"),
ClusterName: pulumi.String("myCluster"),
Location: pulumi.String("eastus"),
ResourceGroupName: pulumi.String("resRg"),
Version: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/managedclusters/myCluster/applicationTypes/myAppType/versions/1.0"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.servicefabric.ManagedClusterApplication;
import com.pulumi.azurenative.servicefabric.ManagedClusterApplicationArgs;
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 managedClusterApplication = new ManagedClusterApplication("managedClusterApplication", ManagedClusterApplicationArgs.builder()
.applicationName("myApp")
.clusterName("myCluster")
.location("eastus")
.resourceGroupName("resRg")
.version("/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/managedclusters/myCluster/applicationTypes/myAppType/versions/1.0")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
managed_cluster_application = azure_native.servicefabric.ManagedClusterApplication("managedClusterApplication",
application_name="myApp",
cluster_name="myCluster",
location="eastus",
resource_group_name="resRg",
version="/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/managedclusters/myCluster/applicationTypes/myAppType/versions/1.0")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const managedClusterApplication = new azure_native.servicefabric.ManagedClusterApplication("managedClusterApplication", {
applicationName: "myApp",
clusterName: "myCluster",
location: "eastus",
resourceGroupName: "resRg",
version: "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/managedclusters/myCluster/applicationTypes/myAppType/versions/1.0",
});
resources:
managedClusterApplication:
type: azure-native:servicefabric:ManagedClusterApplication
properties:
applicationName: myApp
clusterName: myCluster
location: eastus
resourceGroupName: resRg
version: /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/managedclusters/myCluster/applicationTypes/myAppType/versions/1.0
Create ManagedClusterApplication Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ManagedClusterApplication(name: string, args: ManagedClusterApplicationArgs, opts?: CustomResourceOptions);
@overload
def ManagedClusterApplication(resource_name: str,
args: ManagedClusterApplicationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ManagedClusterApplication(resource_name: str,
opts: Optional[ResourceOptions] = None,
cluster_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
application_name: Optional[str] = None,
identity: Optional[ManagedIdentityArgs] = None,
location: Optional[str] = None,
managed_identities: Optional[Sequence[ApplicationUserAssignedIdentityArgs]] = None,
parameters: Optional[Mapping[str, str]] = None,
tags: Optional[Mapping[str, str]] = None,
upgrade_policy: Optional[ApplicationUpgradePolicyArgs] = None,
version: Optional[str] = None)
func NewManagedClusterApplication(ctx *Context, name string, args ManagedClusterApplicationArgs, opts ...ResourceOption) (*ManagedClusterApplication, error)
public ManagedClusterApplication(string name, ManagedClusterApplicationArgs args, CustomResourceOptions? opts = null)
public ManagedClusterApplication(String name, ManagedClusterApplicationArgs args)
public ManagedClusterApplication(String name, ManagedClusterApplicationArgs args, CustomResourceOptions options)
type: azure-native:servicefabric:ManagedClusterApplication
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 ManagedClusterApplicationArgs
- 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 ManagedClusterApplicationArgs
- 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 ManagedClusterApplicationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ManagedClusterApplicationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ManagedClusterApplicationArgs
- 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 managedClusterApplicationResource = new AzureNative.ServiceFabric.ManagedClusterApplication("managedClusterApplicationResource", new()
{
ClusterName = "string",
ResourceGroupName = "string",
ApplicationName = "string",
Identity = new AzureNative.ServiceFabric.Inputs.ManagedIdentityArgs
{
Type = AzureNative.ServiceFabric.ManagedIdentityType.None,
UserAssignedIdentities = new[]
{
"string",
},
},
Location = "string",
ManagedIdentities = new[]
{
new AzureNative.ServiceFabric.Inputs.ApplicationUserAssignedIdentityArgs
{
Name = "string",
PrincipalId = "string",
},
},
Parameters =
{
{ "string", "string" },
},
Tags =
{
{ "string", "string" },
},
UpgradePolicy = new AzureNative.ServiceFabric.Inputs.ApplicationUpgradePolicyArgs
{
ApplicationHealthPolicy = new AzureNative.ServiceFabric.Inputs.ApplicationHealthPolicyArgs
{
ConsiderWarningAsError = false,
MaxPercentUnhealthyDeployedApplications = 0,
DefaultServiceTypeHealthPolicy = new AzureNative.ServiceFabric.Inputs.ServiceTypeHealthPolicyArgs
{
MaxPercentUnhealthyPartitionsPerService = 0,
MaxPercentUnhealthyReplicasPerPartition = 0,
MaxPercentUnhealthyServices = 0,
},
ServiceTypeHealthPolicyMap =
{
{ "string", new AzureNative.ServiceFabric.Inputs.ServiceTypeHealthPolicyArgs
{
MaxPercentUnhealthyPartitionsPerService = 0,
MaxPercentUnhealthyReplicasPerPartition = 0,
MaxPercentUnhealthyServices = 0,
} },
},
},
ForceRestart = false,
InstanceCloseDelayDuration = 0,
RecreateApplication = false,
RollingUpgradeMonitoringPolicy = new AzureNative.ServiceFabric.Inputs.RollingUpgradeMonitoringPolicyArgs
{
FailureAction = "string",
HealthCheckRetryTimeout = "string",
HealthCheckStableDuration = "string",
HealthCheckWaitDuration = "string",
UpgradeDomainTimeout = "string",
UpgradeTimeout = "string",
},
UpgradeMode = "string",
UpgradeReplicaSetCheckTimeout = 0,
},
Version = "string",
});
example, err := servicefabric.NewManagedClusterApplication(ctx, "managedClusterApplicationResource", &servicefabric.ManagedClusterApplicationArgs{
ClusterName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
ApplicationName: pulumi.String("string"),
Identity: &servicefabric.ManagedIdentityArgs{
Type: servicefabric.ManagedIdentityTypeNone,
UserAssignedIdentities: pulumi.StringArray{
pulumi.String("string"),
},
},
Location: pulumi.String("string"),
ManagedIdentities: servicefabric.ApplicationUserAssignedIdentityArray{
&servicefabric.ApplicationUserAssignedIdentityArgs{
Name: pulumi.String("string"),
PrincipalId: pulumi.String("string"),
},
},
Parameters: pulumi.StringMap{
"string": pulumi.String("string"),
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
UpgradePolicy: &servicefabric.ApplicationUpgradePolicyArgs{
ApplicationHealthPolicy: &servicefabric.ApplicationHealthPolicyArgs{
ConsiderWarningAsError: pulumi.Bool(false),
MaxPercentUnhealthyDeployedApplications: pulumi.Int(0),
DefaultServiceTypeHealthPolicy: &servicefabric.ServiceTypeHealthPolicyArgs{
MaxPercentUnhealthyPartitionsPerService: pulumi.Int(0),
MaxPercentUnhealthyReplicasPerPartition: pulumi.Int(0),
MaxPercentUnhealthyServices: pulumi.Int(0),
},
ServiceTypeHealthPolicyMap: servicefabric.ServiceTypeHealthPolicyMap{
"string": &servicefabric.ServiceTypeHealthPolicyArgs{
MaxPercentUnhealthyPartitionsPerService: pulumi.Int(0),
MaxPercentUnhealthyReplicasPerPartition: pulumi.Int(0),
MaxPercentUnhealthyServices: pulumi.Int(0),
},
},
},
ForceRestart: pulumi.Bool(false),
InstanceCloseDelayDuration: pulumi.Float64(0),
RecreateApplication: pulumi.Bool(false),
RollingUpgradeMonitoringPolicy: &servicefabric.RollingUpgradeMonitoringPolicyArgs{
FailureAction: pulumi.String("string"),
HealthCheckRetryTimeout: pulumi.String("string"),
HealthCheckStableDuration: pulumi.String("string"),
HealthCheckWaitDuration: pulumi.String("string"),
UpgradeDomainTimeout: pulumi.String("string"),
UpgradeTimeout: pulumi.String("string"),
},
UpgradeMode: pulumi.String("string"),
UpgradeReplicaSetCheckTimeout: pulumi.Float64(0),
},
Version: pulumi.String("string"),
})
var managedClusterApplicationResource = new ManagedClusterApplication("managedClusterApplicationResource", ManagedClusterApplicationArgs.builder()
.clusterName("string")
.resourceGroupName("string")
.applicationName("string")
.identity(ManagedIdentityArgs.builder()
.type("None")
.userAssignedIdentities("string")
.build())
.location("string")
.managedIdentities(ApplicationUserAssignedIdentityArgs.builder()
.name("string")
.principalId("string")
.build())
.parameters(Map.of("string", "string"))
.tags(Map.of("string", "string"))
.upgradePolicy(ApplicationUpgradePolicyArgs.builder()
.applicationHealthPolicy(ApplicationHealthPolicyArgs.builder()
.considerWarningAsError(false)
.maxPercentUnhealthyDeployedApplications(0)
.defaultServiceTypeHealthPolicy(ServiceTypeHealthPolicyArgs.builder()
.maxPercentUnhealthyPartitionsPerService(0)
.maxPercentUnhealthyReplicasPerPartition(0)
.maxPercentUnhealthyServices(0)
.build())
.serviceTypeHealthPolicyMap(Map.of("string", Map.ofEntries(
Map.entry("maxPercentUnhealthyPartitionsPerService", 0),
Map.entry("maxPercentUnhealthyReplicasPerPartition", 0),
Map.entry("maxPercentUnhealthyServices", 0)
)))
.build())
.forceRestart(false)
.instanceCloseDelayDuration(0)
.recreateApplication(false)
.rollingUpgradeMonitoringPolicy(RollingUpgradeMonitoringPolicyArgs.builder()
.failureAction("string")
.healthCheckRetryTimeout("string")
.healthCheckStableDuration("string")
.healthCheckWaitDuration("string")
.upgradeDomainTimeout("string")
.upgradeTimeout("string")
.build())
.upgradeMode("string")
.upgradeReplicaSetCheckTimeout(0)
.build())
.version("string")
.build());
managed_cluster_application_resource = azure_native.servicefabric.ManagedClusterApplication("managedClusterApplicationResource",
cluster_name="string",
resource_group_name="string",
application_name="string",
identity=azure_native.servicefabric.ManagedIdentityArgs(
type=azure_native.servicefabric.ManagedIdentityType.NONE,
user_assigned_identities=["string"],
),
location="string",
managed_identities=[azure_native.servicefabric.ApplicationUserAssignedIdentityArgs(
name="string",
principal_id="string",
)],
parameters={
"string": "string",
},
tags={
"string": "string",
},
upgrade_policy=azure_native.servicefabric.ApplicationUpgradePolicyArgs(
application_health_policy=azure_native.servicefabric.ApplicationHealthPolicyArgs(
consider_warning_as_error=False,
max_percent_unhealthy_deployed_applications=0,
default_service_type_health_policy=azure_native.servicefabric.ServiceTypeHealthPolicyArgs(
max_percent_unhealthy_partitions_per_service=0,
max_percent_unhealthy_replicas_per_partition=0,
max_percent_unhealthy_services=0,
),
service_type_health_policy_map={
"string": azure_native.servicefabric.ServiceTypeHealthPolicyArgs(
max_percent_unhealthy_partitions_per_service=0,
max_percent_unhealthy_replicas_per_partition=0,
max_percent_unhealthy_services=0,
),
},
),
force_restart=False,
instance_close_delay_duration=0,
recreate_application=False,
rolling_upgrade_monitoring_policy=azure_native.servicefabric.RollingUpgradeMonitoringPolicyArgs(
failure_action="string",
health_check_retry_timeout="string",
health_check_stable_duration="string",
health_check_wait_duration="string",
upgrade_domain_timeout="string",
upgrade_timeout="string",
),
upgrade_mode="string",
upgrade_replica_set_check_timeout=0,
),
version="string")
const managedClusterApplicationResource = new azure_native.servicefabric.ManagedClusterApplication("managedClusterApplicationResource", {
clusterName: "string",
resourceGroupName: "string",
applicationName: "string",
identity: {
type: azure_native.servicefabric.ManagedIdentityType.None,
userAssignedIdentities: ["string"],
},
location: "string",
managedIdentities: [{
name: "string",
principalId: "string",
}],
parameters: {
string: "string",
},
tags: {
string: "string",
},
upgradePolicy: {
applicationHealthPolicy: {
considerWarningAsError: false,
maxPercentUnhealthyDeployedApplications: 0,
defaultServiceTypeHealthPolicy: {
maxPercentUnhealthyPartitionsPerService: 0,
maxPercentUnhealthyReplicasPerPartition: 0,
maxPercentUnhealthyServices: 0,
},
serviceTypeHealthPolicyMap: {
string: {
maxPercentUnhealthyPartitionsPerService: 0,
maxPercentUnhealthyReplicasPerPartition: 0,
maxPercentUnhealthyServices: 0,
},
},
},
forceRestart: false,
instanceCloseDelayDuration: 0,
recreateApplication: false,
rollingUpgradeMonitoringPolicy: {
failureAction: "string",
healthCheckRetryTimeout: "string",
healthCheckStableDuration: "string",
healthCheckWaitDuration: "string",
upgradeDomainTimeout: "string",
upgradeTimeout: "string",
},
upgradeMode: "string",
upgradeReplicaSetCheckTimeout: 0,
},
version: "string",
});
type: azure-native:servicefabric:ManagedClusterApplication
properties:
applicationName: string
clusterName: string
identity:
type: None
userAssignedIdentities:
- string
location: string
managedIdentities:
- name: string
principalId: string
parameters:
string: string
resourceGroupName: string
tags:
string: string
upgradePolicy:
applicationHealthPolicy:
considerWarningAsError: false
defaultServiceTypeHealthPolicy:
maxPercentUnhealthyPartitionsPerService: 0
maxPercentUnhealthyReplicasPerPartition: 0
maxPercentUnhealthyServices: 0
maxPercentUnhealthyDeployedApplications: 0
serviceTypeHealthPolicyMap:
string:
maxPercentUnhealthyPartitionsPerService: 0
maxPercentUnhealthyReplicasPerPartition: 0
maxPercentUnhealthyServices: 0
forceRestart: false
instanceCloseDelayDuration: 0
recreateApplication: false
rollingUpgradeMonitoringPolicy:
failureAction: string
healthCheckRetryTimeout: string
healthCheckStableDuration: string
healthCheckWaitDuration: string
upgradeDomainTimeout: string
upgradeTimeout: string
upgradeMode: string
upgradeReplicaSetCheckTimeout: 0
version: string
ManagedClusterApplication 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 ManagedClusterApplication resource accepts the following input properties:
- Cluster
Name string - The name of the cluster resource.
- Resource
Group stringName - The name of the resource group.
- Application
Name string - The name of the application resource.
- Identity
Pulumi.
Azure Native. Service Fabric. Inputs. Managed Identity - Describes the managed identities for an Azure resource.
- Location string
- Resource location depends on the parent resource.
- Managed
Identities List<Pulumi.Azure Native. Service Fabric. Inputs. Application User Assigned Identity> - List of user assigned identities for the application, each mapped to a friendly name.
- Parameters Dictionary<string, string>
- List of application parameters with overridden values from their default values specified in the application manifest.
- Dictionary<string, string>
- Azure resource tags.
- Upgrade
Policy Pulumi.Azure Native. Service Fabric. Inputs. Application Upgrade Policy - Describes the policy for a monitored application upgrade.
- Version string
- The version of the application type as defined in the application manifest. This name must be the full Arm Resource ID for the referenced application type version.
- Cluster
Name string - The name of the cluster resource.
- Resource
Group stringName - The name of the resource group.
- Application
Name string - The name of the application resource.
- Identity
Managed
Identity Args - Describes the managed identities for an Azure resource.
- Location string
- Resource location depends on the parent resource.
- Managed
Identities []ApplicationUser Assigned Identity Args - List of user assigned identities for the application, each mapped to a friendly name.
- Parameters map[string]string
- List of application parameters with overridden values from their default values specified in the application manifest.
- map[string]string
- Azure resource tags.
- Upgrade
Policy ApplicationUpgrade Policy Args - Describes the policy for a monitored application upgrade.
- Version string
- The version of the application type as defined in the application manifest. This name must be the full Arm Resource ID for the referenced application type version.
- cluster
Name String - The name of the cluster resource.
- resource
Group StringName - The name of the resource group.
- application
Name String - The name of the application resource.
- identity
Managed
Identity - Describes the managed identities for an Azure resource.
- location String
- Resource location depends on the parent resource.
- managed
Identities List<ApplicationUser Assigned Identity> - List of user assigned identities for the application, each mapped to a friendly name.
- parameters Map<String,String>
- List of application parameters with overridden values from their default values specified in the application manifest.
- Map<String,String>
- Azure resource tags.
- upgrade
Policy ApplicationUpgrade Policy - Describes the policy for a monitored application upgrade.
- version String
- The version of the application type as defined in the application manifest. This name must be the full Arm Resource ID for the referenced application type version.
- cluster
Name string - The name of the cluster resource.
- resource
Group stringName - The name of the resource group.
- application
Name string - The name of the application resource.
- identity
Managed
Identity - Describes the managed identities for an Azure resource.
- location string
- Resource location depends on the parent resource.
- managed
Identities ApplicationUser Assigned Identity[] - List of user assigned identities for the application, each mapped to a friendly name.
- parameters {[key: string]: string}
- List of application parameters with overridden values from their default values specified in the application manifest.
- {[key: string]: string}
- Azure resource tags.
- upgrade
Policy ApplicationUpgrade Policy - Describes the policy for a monitored application upgrade.
- version string
- The version of the application type as defined in the application manifest. This name must be the full Arm Resource ID for the referenced application type version.
- cluster_
name str - The name of the cluster resource.
- resource_
group_ strname - The name of the resource group.
- application_
name str - The name of the application resource.
- identity
Managed
Identity Args - Describes the managed identities for an Azure resource.
- location str
- Resource location depends on the parent resource.
- managed_
identities Sequence[ApplicationUser Assigned Identity Args] - List of user assigned identities for the application, each mapped to a friendly name.
- parameters Mapping[str, str]
- List of application parameters with overridden values from their default values specified in the application manifest.
- Mapping[str, str]
- Azure resource tags.
- upgrade_
policy ApplicationUpgrade Policy Args - Describes the policy for a monitored application upgrade.
- version str
- The version of the application type as defined in the application manifest. This name must be the full Arm Resource ID for the referenced application type version.
- cluster
Name String - The name of the cluster resource.
- resource
Group StringName - The name of the resource group.
- application
Name String - The name of the application resource.
- identity Property Map
- Describes the managed identities for an Azure resource.
- location String
- Resource location depends on the parent resource.
- managed
Identities List<Property Map> - List of user assigned identities for the application, each mapped to a friendly name.
- parameters Map<String>
- List of application parameters with overridden values from their default values specified in the application manifest.
- Map<String>
- Azure resource tags.
- upgrade
Policy Property Map - Describes the policy for a monitored application upgrade.
- version String
- The version of the application type as defined in the application manifest. This name must be the full Arm Resource ID for the referenced application type version.
Outputs
All input properties are implicitly available as output properties. Additionally, the ManagedClusterApplication resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Azure resource name.
- Provisioning
State string - The current deployment or provisioning state, which only appears in the response
- System
Data Pulumi.Azure Native. Service Fabric. Outputs. System Data Response - Metadata pertaining to creation and last modification of the resource.
- Type string
- Azure resource type.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Azure resource name.
- Provisioning
State string - The current deployment or provisioning state, which only appears in the response
- System
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- Type string
- Azure resource type.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Azure resource name.
- provisioning
State String - The current deployment or provisioning state, which only appears in the response
- system
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type String
- Azure resource type.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Azure resource name.
- provisioning
State string - The current deployment or provisioning state, which only appears in the response
- system
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type string
- Azure resource type.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Azure resource name.
- provisioning_
state str - The current deployment or provisioning state, which only appears in the response
- system_
data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type str
- Azure resource type.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Azure resource name.
- provisioning
State String - The current deployment or provisioning state, which only appears in the response
- system
Data Property Map - Metadata pertaining to creation and last modification of the resource.
- type String
- Azure resource type.
Supporting Types
ApplicationHealthPolicy, ApplicationHealthPolicyArgs
- Consider
Warning boolAs Error - Indicates whether warnings are treated with the same severity as errors.
- Max
Percent intUnhealthy Deployed Applications - The maximum allowed percentage of unhealthy deployed applications. Allowed values are Byte values from zero to 100. The percentage represents the maximum tolerated percentage of deployed applications that can be unhealthy before the application is considered in error. This is calculated by dividing the number of unhealthy deployed applications over the number of nodes where the application is currently deployed on in the cluster. The computation rounds up to tolerate one failure on small numbers of nodes. Default percentage is zero.
- Default
Service Pulumi.Type Health Policy Azure Native. Service Fabric. Inputs. Service Type Health Policy - The health policy used by default to evaluate the health of a service type.
- Service
Type Dictionary<string, Pulumi.Health Policy Map Azure Native. Service Fabric. Inputs. Service Type Health Policy> - The map with service type health policy per service type name. The map is empty by default.
- Consider
Warning boolAs Error - Indicates whether warnings are treated with the same severity as errors.
- Max
Percent intUnhealthy Deployed Applications - The maximum allowed percentage of unhealthy deployed applications. Allowed values are Byte values from zero to 100. The percentage represents the maximum tolerated percentage of deployed applications that can be unhealthy before the application is considered in error. This is calculated by dividing the number of unhealthy deployed applications over the number of nodes where the application is currently deployed on in the cluster. The computation rounds up to tolerate one failure on small numbers of nodes. Default percentage is zero.
- Default
Service ServiceType Health Policy Type Health Policy - The health policy used by default to evaluate the health of a service type.
- Service
Type map[string]ServiceHealth Policy Map Type Health Policy - The map with service type health policy per service type name. The map is empty by default.
- consider
Warning BooleanAs Error - Indicates whether warnings are treated with the same severity as errors.
- max
Percent IntegerUnhealthy Deployed Applications - The maximum allowed percentage of unhealthy deployed applications. Allowed values are Byte values from zero to 100. The percentage represents the maximum tolerated percentage of deployed applications that can be unhealthy before the application is considered in error. This is calculated by dividing the number of unhealthy deployed applications over the number of nodes where the application is currently deployed on in the cluster. The computation rounds up to tolerate one failure on small numbers of nodes. Default percentage is zero.
- default
Service ServiceType Health Policy Type Health Policy - The health policy used by default to evaluate the health of a service type.
- service
Type Map<String,ServiceHealth Policy Map Type Health Policy> - The map with service type health policy per service type name. The map is empty by default.
- consider
Warning booleanAs Error - Indicates whether warnings are treated with the same severity as errors.
- max
Percent numberUnhealthy Deployed Applications - The maximum allowed percentage of unhealthy deployed applications. Allowed values are Byte values from zero to 100. The percentage represents the maximum tolerated percentage of deployed applications that can be unhealthy before the application is considered in error. This is calculated by dividing the number of unhealthy deployed applications over the number of nodes where the application is currently deployed on in the cluster. The computation rounds up to tolerate one failure on small numbers of nodes. Default percentage is zero.
- default
Service ServiceType Health Policy Type Health Policy - The health policy used by default to evaluate the health of a service type.
- service
Type {[key: string]: ServiceHealth Policy Map Type Health Policy} - The map with service type health policy per service type name. The map is empty by default.
- consider_
warning_ boolas_ error - Indicates whether warnings are treated with the same severity as errors.
- max_
percent_ intunhealthy_ deployed_ applications - The maximum allowed percentage of unhealthy deployed applications. Allowed values are Byte values from zero to 100. The percentage represents the maximum tolerated percentage of deployed applications that can be unhealthy before the application is considered in error. This is calculated by dividing the number of unhealthy deployed applications over the number of nodes where the application is currently deployed on in the cluster. The computation rounds up to tolerate one failure on small numbers of nodes. Default percentage is zero.
- default_
service_ Servicetype_ health_ policy Type Health Policy - The health policy used by default to evaluate the health of a service type.
- service_
type_ Mapping[str, Servicehealth_ policy_ map Type Health Policy] - The map with service type health policy per service type name. The map is empty by default.
- consider
Warning BooleanAs Error - Indicates whether warnings are treated with the same severity as errors.
- max
Percent NumberUnhealthy Deployed Applications - The maximum allowed percentage of unhealthy deployed applications. Allowed values are Byte values from zero to 100. The percentage represents the maximum tolerated percentage of deployed applications that can be unhealthy before the application is considered in error. This is calculated by dividing the number of unhealthy deployed applications over the number of nodes where the application is currently deployed on in the cluster. The computation rounds up to tolerate one failure on small numbers of nodes. Default percentage is zero.
- default
Service Property MapType Health Policy - The health policy used by default to evaluate the health of a service type.
- service
Type Map<Property Map>Health Policy Map - The map with service type health policy per service type name. The map is empty by default.
ApplicationHealthPolicyResponse, ApplicationHealthPolicyResponseArgs
- Consider
Warning boolAs Error - Indicates whether warnings are treated with the same severity as errors.
- Max
Percent intUnhealthy Deployed Applications - The maximum allowed percentage of unhealthy deployed applications. Allowed values are Byte values from zero to 100. The percentage represents the maximum tolerated percentage of deployed applications that can be unhealthy before the application is considered in error. This is calculated by dividing the number of unhealthy deployed applications over the number of nodes where the application is currently deployed on in the cluster. The computation rounds up to tolerate one failure on small numbers of nodes. Default percentage is zero.
- Default
Service Pulumi.Type Health Policy Azure Native. Service Fabric. Inputs. Service Type Health Policy Response - The health policy used by default to evaluate the health of a service type.
- Service
Type Dictionary<string, Pulumi.Health Policy Map Azure Native. Service Fabric. Inputs. Service Type Health Policy Response> - The map with service type health policy per service type name. The map is empty by default.
- Consider
Warning boolAs Error - Indicates whether warnings are treated with the same severity as errors.
- Max
Percent intUnhealthy Deployed Applications - The maximum allowed percentage of unhealthy deployed applications. Allowed values are Byte values from zero to 100. The percentage represents the maximum tolerated percentage of deployed applications that can be unhealthy before the application is considered in error. This is calculated by dividing the number of unhealthy deployed applications over the number of nodes where the application is currently deployed on in the cluster. The computation rounds up to tolerate one failure on small numbers of nodes. Default percentage is zero.
- Default
Service ServiceType Health Policy Type Health Policy Response - The health policy used by default to evaluate the health of a service type.
- Service
Type map[string]ServiceHealth Policy Map Type Health Policy Response - The map with service type health policy per service type name. The map is empty by default.
- consider
Warning BooleanAs Error - Indicates whether warnings are treated with the same severity as errors.
- max
Percent IntegerUnhealthy Deployed Applications - The maximum allowed percentage of unhealthy deployed applications. Allowed values are Byte values from zero to 100. The percentage represents the maximum tolerated percentage of deployed applications that can be unhealthy before the application is considered in error. This is calculated by dividing the number of unhealthy deployed applications over the number of nodes where the application is currently deployed on in the cluster. The computation rounds up to tolerate one failure on small numbers of nodes. Default percentage is zero.
- default
Service ServiceType Health Policy Type Health Policy Response - The health policy used by default to evaluate the health of a service type.
- service
Type Map<String,ServiceHealth Policy Map Type Health Policy Response> - The map with service type health policy per service type name. The map is empty by default.
- consider
Warning booleanAs Error - Indicates whether warnings are treated with the same severity as errors.
- max
Percent numberUnhealthy Deployed Applications - The maximum allowed percentage of unhealthy deployed applications. Allowed values are Byte values from zero to 100. The percentage represents the maximum tolerated percentage of deployed applications that can be unhealthy before the application is considered in error. This is calculated by dividing the number of unhealthy deployed applications over the number of nodes where the application is currently deployed on in the cluster. The computation rounds up to tolerate one failure on small numbers of nodes. Default percentage is zero.
- default
Service ServiceType Health Policy Type Health Policy Response - The health policy used by default to evaluate the health of a service type.
- service
Type {[key: string]: ServiceHealth Policy Map Type Health Policy Response} - The map with service type health policy per service type name. The map is empty by default.
- consider_
warning_ boolas_ error - Indicates whether warnings are treated with the same severity as errors.
- max_
percent_ intunhealthy_ deployed_ applications - The maximum allowed percentage of unhealthy deployed applications. Allowed values are Byte values from zero to 100. The percentage represents the maximum tolerated percentage of deployed applications that can be unhealthy before the application is considered in error. This is calculated by dividing the number of unhealthy deployed applications over the number of nodes where the application is currently deployed on in the cluster. The computation rounds up to tolerate one failure on small numbers of nodes. Default percentage is zero.
- default_
service_ Servicetype_ health_ policy Type Health Policy Response - The health policy used by default to evaluate the health of a service type.
- service_
type_ Mapping[str, Servicehealth_ policy_ map Type Health Policy Response] - The map with service type health policy per service type name. The map is empty by default.
- consider
Warning BooleanAs Error - Indicates whether warnings are treated with the same severity as errors.
- max
Percent NumberUnhealthy Deployed Applications - The maximum allowed percentage of unhealthy deployed applications. Allowed values are Byte values from zero to 100. The percentage represents the maximum tolerated percentage of deployed applications that can be unhealthy before the application is considered in error. This is calculated by dividing the number of unhealthy deployed applications over the number of nodes where the application is currently deployed on in the cluster. The computation rounds up to tolerate one failure on small numbers of nodes. Default percentage is zero.
- default
Service Property MapType Health Policy - The health policy used by default to evaluate the health of a service type.
- service
Type Map<Property Map>Health Policy Map - The map with service type health policy per service type name. The map is empty by default.
ApplicationUpgradePolicy, ApplicationUpgradePolicyArgs
- Application
Health Pulumi.Policy Azure Native. Service Fabric. Inputs. Application Health Policy - Defines a health policy used to evaluate the health of an application or one of its children entities.
- Force
Restart bool - If true, then processes are forcefully restarted during upgrade even when the code version has not changed (the upgrade only changes configuration or data).
- Instance
Close doubleDelay Duration - Duration in seconds, to wait before a stateless instance is closed, to allow the active requests to drain gracefully. This would be effective when the instance is closing during the application/cluster upgrade, only for those instances which have a non-zero delay duration configured in the service description.
- Recreate
Application bool - Determines whether the application should be recreated on update. If value=true, the rest of the upgrade policy parameters are not allowed.
- Rolling
Upgrade Pulumi.Monitoring Policy Azure Native. Service Fabric. Inputs. Rolling Upgrade Monitoring Policy - The policy used for monitoring the application upgrade
- Upgrade
Mode string | Pulumi.Azure Native. Service Fabric. Rolling Upgrade Mode - The mode used to monitor health during a rolling upgrade. The values are Monitored, and UnmonitoredAuto.
- Upgrade
Replica doubleSet Check Timeout - The maximum amount of time to block processing of an upgrade domain and prevent loss of availability when there are unexpected issues. When this timeout expires, processing of the upgrade domain will proceed regardless of availability loss issues. The timeout is reset at the start of each upgrade domain. Valid values are between 0 and 42949672925 inclusive. (unsigned 32-bit integer).
- Application
Health ApplicationPolicy Health Policy - Defines a health policy used to evaluate the health of an application or one of its children entities.
- Force
Restart bool - If true, then processes are forcefully restarted during upgrade even when the code version has not changed (the upgrade only changes configuration or data).
- Instance
Close float64Delay Duration - Duration in seconds, to wait before a stateless instance is closed, to allow the active requests to drain gracefully. This would be effective when the instance is closing during the application/cluster upgrade, only for those instances which have a non-zero delay duration configured in the service description.
- Recreate
Application bool - Determines whether the application should be recreated on update. If value=true, the rest of the upgrade policy parameters are not allowed.
- Rolling
Upgrade RollingMonitoring Policy Upgrade Monitoring Policy - The policy used for monitoring the application upgrade
- Upgrade
Mode string | RollingUpgrade Mode - The mode used to monitor health during a rolling upgrade. The values are Monitored, and UnmonitoredAuto.
- Upgrade
Replica float64Set Check Timeout - The maximum amount of time to block processing of an upgrade domain and prevent loss of availability when there are unexpected issues. When this timeout expires, processing of the upgrade domain will proceed regardless of availability loss issues. The timeout is reset at the start of each upgrade domain. Valid values are between 0 and 42949672925 inclusive. (unsigned 32-bit integer).
- application
Health ApplicationPolicy Health Policy - Defines a health policy used to evaluate the health of an application or one of its children entities.
- force
Restart Boolean - If true, then processes are forcefully restarted during upgrade even when the code version has not changed (the upgrade only changes configuration or data).
- instance
Close DoubleDelay Duration - Duration in seconds, to wait before a stateless instance is closed, to allow the active requests to drain gracefully. This would be effective when the instance is closing during the application/cluster upgrade, only for those instances which have a non-zero delay duration configured in the service description.
- recreate
Application Boolean - Determines whether the application should be recreated on update. If value=true, the rest of the upgrade policy parameters are not allowed.
- rolling
Upgrade RollingMonitoring Policy Upgrade Monitoring Policy - The policy used for monitoring the application upgrade
- upgrade
Mode String | RollingUpgrade Mode - The mode used to monitor health during a rolling upgrade. The values are Monitored, and UnmonitoredAuto.
- upgrade
Replica DoubleSet Check Timeout - The maximum amount of time to block processing of an upgrade domain and prevent loss of availability when there are unexpected issues. When this timeout expires, processing of the upgrade domain will proceed regardless of availability loss issues. The timeout is reset at the start of each upgrade domain. Valid values are between 0 and 42949672925 inclusive. (unsigned 32-bit integer).
- application
Health ApplicationPolicy Health Policy - Defines a health policy used to evaluate the health of an application or one of its children entities.
- force
Restart boolean - If true, then processes are forcefully restarted during upgrade even when the code version has not changed (the upgrade only changes configuration or data).
- instance
Close numberDelay Duration - Duration in seconds, to wait before a stateless instance is closed, to allow the active requests to drain gracefully. This would be effective when the instance is closing during the application/cluster upgrade, only for those instances which have a non-zero delay duration configured in the service description.
- recreate
Application boolean - Determines whether the application should be recreated on update. If value=true, the rest of the upgrade policy parameters are not allowed.
- rolling
Upgrade RollingMonitoring Policy Upgrade Monitoring Policy - The policy used for monitoring the application upgrade
- upgrade
Mode string | RollingUpgrade Mode - The mode used to monitor health during a rolling upgrade. The values are Monitored, and UnmonitoredAuto.
- upgrade
Replica numberSet Check Timeout - The maximum amount of time to block processing of an upgrade domain and prevent loss of availability when there are unexpected issues. When this timeout expires, processing of the upgrade domain will proceed regardless of availability loss issues. The timeout is reset at the start of each upgrade domain. Valid values are between 0 and 42949672925 inclusive. (unsigned 32-bit integer).
- application_
health_ Applicationpolicy Health Policy - Defines a health policy used to evaluate the health of an application or one of its children entities.
- force_
restart bool - If true, then processes are forcefully restarted during upgrade even when the code version has not changed (the upgrade only changes configuration or data).
- instance_
close_ floatdelay_ duration - Duration in seconds, to wait before a stateless instance is closed, to allow the active requests to drain gracefully. This would be effective when the instance is closing during the application/cluster upgrade, only for those instances which have a non-zero delay duration configured in the service description.
- recreate_
application bool - Determines whether the application should be recreated on update. If value=true, the rest of the upgrade policy parameters are not allowed.
- rolling_
upgrade_ Rollingmonitoring_ policy Upgrade Monitoring Policy - The policy used for monitoring the application upgrade
- upgrade_
mode str | RollingUpgrade Mode - The mode used to monitor health during a rolling upgrade. The values are Monitored, and UnmonitoredAuto.
- upgrade_
replica_ floatset_ check_ timeout - The maximum amount of time to block processing of an upgrade domain and prevent loss of availability when there are unexpected issues. When this timeout expires, processing of the upgrade domain will proceed regardless of availability loss issues. The timeout is reset at the start of each upgrade domain. Valid values are between 0 and 42949672925 inclusive. (unsigned 32-bit integer).
- application
Health Property MapPolicy - Defines a health policy used to evaluate the health of an application or one of its children entities.
- force
Restart Boolean - If true, then processes are forcefully restarted during upgrade even when the code version has not changed (the upgrade only changes configuration or data).
- instance
Close NumberDelay Duration - Duration in seconds, to wait before a stateless instance is closed, to allow the active requests to drain gracefully. This would be effective when the instance is closing during the application/cluster upgrade, only for those instances which have a non-zero delay duration configured in the service description.
- recreate
Application Boolean - Determines whether the application should be recreated on update. If value=true, the rest of the upgrade policy parameters are not allowed.
- rolling
Upgrade Property MapMonitoring Policy - The policy used for monitoring the application upgrade
- upgrade
Mode String | "Monitored" | "UnmonitoredAuto" - The mode used to monitor health during a rolling upgrade. The values are Monitored, and UnmonitoredAuto.
- upgrade
Replica NumberSet Check Timeout - The maximum amount of time to block processing of an upgrade domain and prevent loss of availability when there are unexpected issues. When this timeout expires, processing of the upgrade domain will proceed regardless of availability loss issues. The timeout is reset at the start of each upgrade domain. Valid values are between 0 and 42949672925 inclusive. (unsigned 32-bit integer).
ApplicationUpgradePolicyResponse, ApplicationUpgradePolicyResponseArgs
- Application
Health Pulumi.Policy Azure Native. Service Fabric. Inputs. Application Health Policy Response - Defines a health policy used to evaluate the health of an application or one of its children entities.
- Force
Restart bool - If true, then processes are forcefully restarted during upgrade even when the code version has not changed (the upgrade only changes configuration or data).
- Instance
Close doubleDelay Duration - Duration in seconds, to wait before a stateless instance is closed, to allow the active requests to drain gracefully. This would be effective when the instance is closing during the application/cluster upgrade, only for those instances which have a non-zero delay duration configured in the service description.
- Recreate
Application bool - Determines whether the application should be recreated on update. If value=true, the rest of the upgrade policy parameters are not allowed.
- Rolling
Upgrade Pulumi.Monitoring Policy Azure Native. Service Fabric. Inputs. Rolling Upgrade Monitoring Policy Response - The policy used for monitoring the application upgrade
- Upgrade
Mode string - The mode used to monitor health during a rolling upgrade. The values are Monitored, and UnmonitoredAuto.
- Upgrade
Replica doubleSet Check Timeout - The maximum amount of time to block processing of an upgrade domain and prevent loss of availability when there are unexpected issues. When this timeout expires, processing of the upgrade domain will proceed regardless of availability loss issues. The timeout is reset at the start of each upgrade domain. Valid values are between 0 and 42949672925 inclusive. (unsigned 32-bit integer).
- Application
Health ApplicationPolicy Health Policy Response - Defines a health policy used to evaluate the health of an application or one of its children entities.
- Force
Restart bool - If true, then processes are forcefully restarted during upgrade even when the code version has not changed (the upgrade only changes configuration or data).
- Instance
Close float64Delay Duration - Duration in seconds, to wait before a stateless instance is closed, to allow the active requests to drain gracefully. This would be effective when the instance is closing during the application/cluster upgrade, only for those instances which have a non-zero delay duration configured in the service description.
- Recreate
Application bool - Determines whether the application should be recreated on update. If value=true, the rest of the upgrade policy parameters are not allowed.
- Rolling
Upgrade RollingMonitoring Policy Upgrade Monitoring Policy Response - The policy used for monitoring the application upgrade
- Upgrade
Mode string - The mode used to monitor health during a rolling upgrade. The values are Monitored, and UnmonitoredAuto.
- Upgrade
Replica float64Set Check Timeout - The maximum amount of time to block processing of an upgrade domain and prevent loss of availability when there are unexpected issues. When this timeout expires, processing of the upgrade domain will proceed regardless of availability loss issues. The timeout is reset at the start of each upgrade domain. Valid values are between 0 and 42949672925 inclusive. (unsigned 32-bit integer).
- application
Health ApplicationPolicy Health Policy Response - Defines a health policy used to evaluate the health of an application or one of its children entities.
- force
Restart Boolean - If true, then processes are forcefully restarted during upgrade even when the code version has not changed (the upgrade only changes configuration or data).
- instance
Close DoubleDelay Duration - Duration in seconds, to wait before a stateless instance is closed, to allow the active requests to drain gracefully. This would be effective when the instance is closing during the application/cluster upgrade, only for those instances which have a non-zero delay duration configured in the service description.
- recreate
Application Boolean - Determines whether the application should be recreated on update. If value=true, the rest of the upgrade policy parameters are not allowed.
- rolling
Upgrade RollingMonitoring Policy Upgrade Monitoring Policy Response - The policy used for monitoring the application upgrade
- upgrade
Mode String - The mode used to monitor health during a rolling upgrade. The values are Monitored, and UnmonitoredAuto.
- upgrade
Replica DoubleSet Check Timeout - The maximum amount of time to block processing of an upgrade domain and prevent loss of availability when there are unexpected issues. When this timeout expires, processing of the upgrade domain will proceed regardless of availability loss issues. The timeout is reset at the start of each upgrade domain. Valid values are between 0 and 42949672925 inclusive. (unsigned 32-bit integer).
- application
Health ApplicationPolicy Health Policy Response - Defines a health policy used to evaluate the health of an application or one of its children entities.
- force
Restart boolean - If true, then processes are forcefully restarted during upgrade even when the code version has not changed (the upgrade only changes configuration or data).
- instance
Close numberDelay Duration - Duration in seconds, to wait before a stateless instance is closed, to allow the active requests to drain gracefully. This would be effective when the instance is closing during the application/cluster upgrade, only for those instances which have a non-zero delay duration configured in the service description.
- recreate
Application boolean - Determines whether the application should be recreated on update. If value=true, the rest of the upgrade policy parameters are not allowed.
- rolling
Upgrade RollingMonitoring Policy Upgrade Monitoring Policy Response - The policy used for monitoring the application upgrade
- upgrade
Mode string - The mode used to monitor health during a rolling upgrade. The values are Monitored, and UnmonitoredAuto.
- upgrade
Replica numberSet Check Timeout - The maximum amount of time to block processing of an upgrade domain and prevent loss of availability when there are unexpected issues. When this timeout expires, processing of the upgrade domain will proceed regardless of availability loss issues. The timeout is reset at the start of each upgrade domain. Valid values are between 0 and 42949672925 inclusive. (unsigned 32-bit integer).
- application_
health_ Applicationpolicy Health Policy Response - Defines a health policy used to evaluate the health of an application or one of its children entities.
- force_
restart bool - If true, then processes are forcefully restarted during upgrade even when the code version has not changed (the upgrade only changes configuration or data).
- instance_
close_ floatdelay_ duration - Duration in seconds, to wait before a stateless instance is closed, to allow the active requests to drain gracefully. This would be effective when the instance is closing during the application/cluster upgrade, only for those instances which have a non-zero delay duration configured in the service description.
- recreate_
application bool - Determines whether the application should be recreated on update. If value=true, the rest of the upgrade policy parameters are not allowed.
- rolling_
upgrade_ Rollingmonitoring_ policy Upgrade Monitoring Policy Response - The policy used for monitoring the application upgrade
- upgrade_
mode str - The mode used to monitor health during a rolling upgrade. The values are Monitored, and UnmonitoredAuto.
- upgrade_
replica_ floatset_ check_ timeout - The maximum amount of time to block processing of an upgrade domain and prevent loss of availability when there are unexpected issues. When this timeout expires, processing of the upgrade domain will proceed regardless of availability loss issues. The timeout is reset at the start of each upgrade domain. Valid values are between 0 and 42949672925 inclusive. (unsigned 32-bit integer).
- application
Health Property MapPolicy - Defines a health policy used to evaluate the health of an application or one of its children entities.
- force
Restart Boolean - If true, then processes are forcefully restarted during upgrade even when the code version has not changed (the upgrade only changes configuration or data).
- instance
Close NumberDelay Duration - Duration in seconds, to wait before a stateless instance is closed, to allow the active requests to drain gracefully. This would be effective when the instance is closing during the application/cluster upgrade, only for those instances which have a non-zero delay duration configured in the service description.
- recreate
Application Boolean - Determines whether the application should be recreated on update. If value=true, the rest of the upgrade policy parameters are not allowed.
- rolling
Upgrade Property MapMonitoring Policy - The policy used for monitoring the application upgrade
- upgrade
Mode String - The mode used to monitor health during a rolling upgrade. The values are Monitored, and UnmonitoredAuto.
- upgrade
Replica NumberSet Check Timeout - The maximum amount of time to block processing of an upgrade domain and prevent loss of availability when there are unexpected issues. When this timeout expires, processing of the upgrade domain will proceed regardless of availability loss issues. The timeout is reset at the start of each upgrade domain. Valid values are between 0 and 42949672925 inclusive. (unsigned 32-bit integer).
ApplicationUserAssignedIdentity, ApplicationUserAssignedIdentityArgs
- Name string
- The friendly name of user assigned identity.
- Principal
Id string - The principal id of user assigned identity.
- Name string
- The friendly name of user assigned identity.
- Principal
Id string - The principal id of user assigned identity.
- name String
- The friendly name of user assigned identity.
- principal
Id String - The principal id of user assigned identity.
- name string
- The friendly name of user assigned identity.
- principal
Id string - The principal id of user assigned identity.
- name str
- The friendly name of user assigned identity.
- principal_
id str - The principal id of user assigned identity.
- name String
- The friendly name of user assigned identity.
- principal
Id String - The principal id of user assigned identity.
ApplicationUserAssignedIdentityResponse, ApplicationUserAssignedIdentityResponseArgs
- Name string
- The friendly name of user assigned identity.
- Principal
Id string - The principal id of user assigned identity.
- Name string
- The friendly name of user assigned identity.
- Principal
Id string - The principal id of user assigned identity.
- name String
- The friendly name of user assigned identity.
- principal
Id String - The principal id of user assigned identity.
- name string
- The friendly name of user assigned identity.
- principal
Id string - The principal id of user assigned identity.
- name str
- The friendly name of user assigned identity.
- principal_
id str - The principal id of user assigned identity.
- name String
- The friendly name of user assigned identity.
- principal
Id String - The principal id of user assigned identity.
FailureAction, FailureActionArgs
- Rollback
- RollbackIndicates that a rollback of the upgrade will be performed by Service Fabric if the upgrade fails.
- Manual
- ManualIndicates that a manual repair will need to be performed by the administrator if the upgrade fails. Service Fabric will not proceed to the next upgrade domain automatically.
- Failure
Action Rollback - RollbackIndicates that a rollback of the upgrade will be performed by Service Fabric if the upgrade fails.
- Failure
Action Manual - ManualIndicates that a manual repair will need to be performed by the administrator if the upgrade fails. Service Fabric will not proceed to the next upgrade domain automatically.
- Rollback
- RollbackIndicates that a rollback of the upgrade will be performed by Service Fabric if the upgrade fails.
- Manual
- ManualIndicates that a manual repair will need to be performed by the administrator if the upgrade fails. Service Fabric will not proceed to the next upgrade domain automatically.
- Rollback
- RollbackIndicates that a rollback of the upgrade will be performed by Service Fabric if the upgrade fails.
- Manual
- ManualIndicates that a manual repair will need to be performed by the administrator if the upgrade fails. Service Fabric will not proceed to the next upgrade domain automatically.
- ROLLBACK
- RollbackIndicates that a rollback of the upgrade will be performed by Service Fabric if the upgrade fails.
- MANUAL
- ManualIndicates that a manual repair will need to be performed by the administrator if the upgrade fails. Service Fabric will not proceed to the next upgrade domain automatically.
- "Rollback"
- RollbackIndicates that a rollback of the upgrade will be performed by Service Fabric if the upgrade fails.
- "Manual"
- ManualIndicates that a manual repair will need to be performed by the administrator if the upgrade fails. Service Fabric will not proceed to the next upgrade domain automatically.
ManagedIdentity, ManagedIdentityArgs
- Type
Pulumi.
Azure Native. Service Fabric. Managed Identity Type - The type of managed identity for the resource.
- User
Assigned List<string>Identities - The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- Type
Managed
Identity Type - The type of managed identity for the resource.
- User
Assigned []stringIdentities - The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- type
Managed
Identity Type - The type of managed identity for the resource.
- user
Assigned List<String>Identities - The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- type
Managed
Identity Type - The type of managed identity for the resource.
- user
Assigned string[]Identities - The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- type
Managed
Identity Type - The type of managed identity for the resource.
- user_
assigned_ Sequence[str]identities - The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- type
"None" | "System
Assigned" | "User Assigned" | "System Assigned, User Assigned" - The type of managed identity for the resource.
- user
Assigned List<String>Identities - The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
ManagedIdentityResponse, ManagedIdentityResponseArgs
- Principal
Id string - The principal id of the managed identity. This property will only be provided for a system assigned identity.
- Tenant
Id string - The tenant id of the managed identity. This property will only be provided for a system assigned identity.
- Type string
- The type of managed identity for the resource.
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Service Fabric. Inputs. User Assigned Identity Response> - The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- Principal
Id string - The principal id of the managed identity. This property will only be provided for a system assigned identity.
- Tenant
Id string - The tenant id of the managed identity. This property will only be provided for a system assigned identity.
- Type string
- The type of managed identity for the resource.
- User
Assigned map[string]UserIdentities Assigned Identity Response - The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- principal
Id String - The principal id of the managed identity. This property will only be provided for a system assigned identity.
- tenant
Id String - The tenant id of the managed identity. This property will only be provided for a system assigned identity.
- type String
- The type of managed identity for the resource.
- user
Assigned Map<String,UserIdentities Assigned Identity Response> - The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- principal
Id string - The principal id of the managed identity. This property will only be provided for a system assigned identity.
- tenant
Id string - The tenant id of the managed identity. This property will only be provided for a system assigned identity.
- type string
- The type of managed identity for the resource.
- user
Assigned {[key: string]: UserIdentities Assigned Identity Response} - The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- principal_
id str - The principal id of the managed identity. This property will only be provided for a system assigned identity.
- tenant_
id str - The tenant id of the managed identity. This property will only be provided for a system assigned identity.
- type str
- The type of managed identity for the resource.
- user_
assigned_ Mapping[str, Useridentities Assigned Identity Response] - The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- principal
Id String - The principal id of the managed identity. This property will only be provided for a system assigned identity.
- tenant
Id String - The tenant id of the managed identity. This property will only be provided for a system assigned identity.
- type String
- The type of managed identity for the resource.
- user
Assigned Map<Property Map>Identities - The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
ManagedIdentityType, ManagedIdentityTypeArgs
- None
- NoneIndicates that no identity is associated with the resource.
- System
Assigned - SystemAssignedIndicates that system assigned identity is associated with the resource.
- User
Assigned - UserAssignedIndicates that user assigned identity is associated with the resource.
- System
Assigned_User Assigned - SystemAssigned, UserAssignedIndicates that both system assigned and user assigned identity are associated with the resource.
- Managed
Identity Type None - NoneIndicates that no identity is associated with the resource.
- Managed
Identity Type System Assigned - SystemAssignedIndicates that system assigned identity is associated with the resource.
- Managed
Identity Type User Assigned - UserAssignedIndicates that user assigned identity is associated with the resource.
- Managed
Identity Type_System Assigned_User Assigned - SystemAssigned, UserAssignedIndicates that both system assigned and user assigned identity are associated with the resource.
- None
- NoneIndicates that no identity is associated with the resource.
- System
Assigned - SystemAssignedIndicates that system assigned identity is associated with the resource.
- User
Assigned - UserAssignedIndicates that user assigned identity is associated with the resource.
- System
Assigned_User Assigned - SystemAssigned, UserAssignedIndicates that both system assigned and user assigned identity are associated with the resource.
- None
- NoneIndicates that no identity is associated with the resource.
- System
Assigned - SystemAssignedIndicates that system assigned identity is associated with the resource.
- User
Assigned - UserAssignedIndicates that user assigned identity is associated with the resource.
- System
Assigned_User Assigned - SystemAssigned, UserAssignedIndicates that both system assigned and user assigned identity are associated with the resource.
- NONE
- NoneIndicates that no identity is associated with the resource.
- SYSTEM_ASSIGNED
- SystemAssignedIndicates that system assigned identity is associated with the resource.
- USER_ASSIGNED
- UserAssignedIndicates that user assigned identity is associated with the resource.
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned, UserAssignedIndicates that both system assigned and user assigned identity are associated with the resource.
- "None"
- NoneIndicates that no identity is associated with the resource.
- "System
Assigned" - SystemAssignedIndicates that system assigned identity is associated with the resource.
- "User
Assigned" - UserAssignedIndicates that user assigned identity is associated with the resource.
- "System
Assigned, User Assigned" - SystemAssigned, UserAssignedIndicates that both system assigned and user assigned identity are associated with the resource.
RollingUpgradeMode, RollingUpgradeModeArgs
- Monitored
- MonitoredThe upgrade will stop after completing each upgrade domain and automatically monitor health before proceeding. The value is 0.
- Unmonitored
Auto - UnmonitoredAutoThe upgrade will proceed automatically without performing any health monitoring. The value is 1.
- Rolling
Upgrade Mode Monitored - MonitoredThe upgrade will stop after completing each upgrade domain and automatically monitor health before proceeding. The value is 0.
- Rolling
Upgrade Mode Unmonitored Auto - UnmonitoredAutoThe upgrade will proceed automatically without performing any health monitoring. The value is 1.
- Monitored
- MonitoredThe upgrade will stop after completing each upgrade domain and automatically monitor health before proceeding. The value is 0.
- Unmonitored
Auto - UnmonitoredAutoThe upgrade will proceed automatically without performing any health monitoring. The value is 1.
- Monitored
- MonitoredThe upgrade will stop after completing each upgrade domain and automatically monitor health before proceeding. The value is 0.
- Unmonitored
Auto - UnmonitoredAutoThe upgrade will proceed automatically without performing any health monitoring. The value is 1.
- MONITORED
- MonitoredThe upgrade will stop after completing each upgrade domain and automatically monitor health before proceeding. The value is 0.
- UNMONITORED_AUTO
- UnmonitoredAutoThe upgrade will proceed automatically without performing any health monitoring. The value is 1.
- "Monitored"
- MonitoredThe upgrade will stop after completing each upgrade domain and automatically monitor health before proceeding. The value is 0.
- "Unmonitored
Auto" - UnmonitoredAutoThe upgrade will proceed automatically without performing any health monitoring. The value is 1.
RollingUpgradeMonitoringPolicy, RollingUpgradeMonitoringPolicyArgs
- Failure
Action string | Pulumi.Azure Native. Service Fabric. Failure Action - The compensating action to perform when a Monitored upgrade encounters monitoring policy or health policy violations. Invalid indicates the failure action is invalid. Rollback specifies that the upgrade will start rolling back automatically. Manual indicates that the upgrade will switch to UnmonitoredManual upgrade mode.
- Health
Check stringRetry Timeout - The amount of time to retry health evaluation when the application or cluster is unhealthy before FailureAction is executed. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- Health
Check stringStable Duration - The amount of time that the application or cluster must remain healthy before the upgrade proceeds to the next upgrade domain. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- Health
Check stringWait Duration - The amount of time to wait after completing an upgrade domain before applying health policies. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- Upgrade
Domain stringTimeout - The amount of time each upgrade domain has to complete before FailureAction is executed. Cannot be larger than 12 hours. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- Upgrade
Timeout string - The amount of time the overall upgrade has to complete before FailureAction is executed. Cannot be larger than 12 hours. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- Failure
Action string | FailureAction - The compensating action to perform when a Monitored upgrade encounters monitoring policy or health policy violations. Invalid indicates the failure action is invalid. Rollback specifies that the upgrade will start rolling back automatically. Manual indicates that the upgrade will switch to UnmonitoredManual upgrade mode.
- Health
Check stringRetry Timeout - The amount of time to retry health evaluation when the application or cluster is unhealthy before FailureAction is executed. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- Health
Check stringStable Duration - The amount of time that the application or cluster must remain healthy before the upgrade proceeds to the next upgrade domain. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- Health
Check stringWait Duration - The amount of time to wait after completing an upgrade domain before applying health policies. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- Upgrade
Domain stringTimeout - The amount of time each upgrade domain has to complete before FailureAction is executed. Cannot be larger than 12 hours. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- Upgrade
Timeout string - The amount of time the overall upgrade has to complete before FailureAction is executed. Cannot be larger than 12 hours. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- failure
Action String | FailureAction - The compensating action to perform when a Monitored upgrade encounters monitoring policy or health policy violations. Invalid indicates the failure action is invalid. Rollback specifies that the upgrade will start rolling back automatically. Manual indicates that the upgrade will switch to UnmonitoredManual upgrade mode.
- health
Check StringRetry Timeout - The amount of time to retry health evaluation when the application or cluster is unhealthy before FailureAction is executed. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- health
Check StringStable Duration - The amount of time that the application or cluster must remain healthy before the upgrade proceeds to the next upgrade domain. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- health
Check StringWait Duration - The amount of time to wait after completing an upgrade domain before applying health policies. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- upgrade
Domain StringTimeout - The amount of time each upgrade domain has to complete before FailureAction is executed. Cannot be larger than 12 hours. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- upgrade
Timeout String - The amount of time the overall upgrade has to complete before FailureAction is executed. Cannot be larger than 12 hours. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- failure
Action string | FailureAction - The compensating action to perform when a Monitored upgrade encounters monitoring policy or health policy violations. Invalid indicates the failure action is invalid. Rollback specifies that the upgrade will start rolling back automatically. Manual indicates that the upgrade will switch to UnmonitoredManual upgrade mode.
- health
Check stringRetry Timeout - The amount of time to retry health evaluation when the application or cluster is unhealthy before FailureAction is executed. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- health
Check stringStable Duration - The amount of time that the application or cluster must remain healthy before the upgrade proceeds to the next upgrade domain. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- health
Check stringWait Duration - The amount of time to wait after completing an upgrade domain before applying health policies. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- upgrade
Domain stringTimeout - The amount of time each upgrade domain has to complete before FailureAction is executed. Cannot be larger than 12 hours. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- upgrade
Timeout string - The amount of time the overall upgrade has to complete before FailureAction is executed. Cannot be larger than 12 hours. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- failure_
action str | FailureAction - The compensating action to perform when a Monitored upgrade encounters monitoring policy or health policy violations. Invalid indicates the failure action is invalid. Rollback specifies that the upgrade will start rolling back automatically. Manual indicates that the upgrade will switch to UnmonitoredManual upgrade mode.
- health_
check_ strretry_ timeout - The amount of time to retry health evaluation when the application or cluster is unhealthy before FailureAction is executed. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- health_
check_ strstable_ duration - The amount of time that the application or cluster must remain healthy before the upgrade proceeds to the next upgrade domain. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- health_
check_ strwait_ duration - The amount of time to wait after completing an upgrade domain before applying health policies. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- upgrade_
domain_ strtimeout - The amount of time each upgrade domain has to complete before FailureAction is executed. Cannot be larger than 12 hours. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- upgrade_
timeout str - The amount of time the overall upgrade has to complete before FailureAction is executed. Cannot be larger than 12 hours. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- failure
Action String | "Rollback" | "Manual" - The compensating action to perform when a Monitored upgrade encounters monitoring policy or health policy violations. Invalid indicates the failure action is invalid. Rollback specifies that the upgrade will start rolling back automatically. Manual indicates that the upgrade will switch to UnmonitoredManual upgrade mode.
- health
Check StringRetry Timeout - The amount of time to retry health evaluation when the application or cluster is unhealthy before FailureAction is executed. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- health
Check StringStable Duration - The amount of time that the application or cluster must remain healthy before the upgrade proceeds to the next upgrade domain. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- health
Check StringWait Duration - The amount of time to wait after completing an upgrade domain before applying health policies. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- upgrade
Domain StringTimeout - The amount of time each upgrade domain has to complete before FailureAction is executed. Cannot be larger than 12 hours. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- upgrade
Timeout String - The amount of time the overall upgrade has to complete before FailureAction is executed. Cannot be larger than 12 hours. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
RollingUpgradeMonitoringPolicyResponse, RollingUpgradeMonitoringPolicyResponseArgs
- Failure
Action string - The compensating action to perform when a Monitored upgrade encounters monitoring policy or health policy violations. Invalid indicates the failure action is invalid. Rollback specifies that the upgrade will start rolling back automatically. Manual indicates that the upgrade will switch to UnmonitoredManual upgrade mode.
- Health
Check stringRetry Timeout - The amount of time to retry health evaluation when the application or cluster is unhealthy before FailureAction is executed. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- Health
Check stringStable Duration - The amount of time that the application or cluster must remain healthy before the upgrade proceeds to the next upgrade domain. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- Health
Check stringWait Duration - The amount of time to wait after completing an upgrade domain before applying health policies. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- Upgrade
Domain stringTimeout - The amount of time each upgrade domain has to complete before FailureAction is executed. Cannot be larger than 12 hours. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- Upgrade
Timeout string - The amount of time the overall upgrade has to complete before FailureAction is executed. Cannot be larger than 12 hours. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- Failure
Action string - The compensating action to perform when a Monitored upgrade encounters monitoring policy or health policy violations. Invalid indicates the failure action is invalid. Rollback specifies that the upgrade will start rolling back automatically. Manual indicates that the upgrade will switch to UnmonitoredManual upgrade mode.
- Health
Check stringRetry Timeout - The amount of time to retry health evaluation when the application or cluster is unhealthy before FailureAction is executed. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- Health
Check stringStable Duration - The amount of time that the application or cluster must remain healthy before the upgrade proceeds to the next upgrade domain. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- Health
Check stringWait Duration - The amount of time to wait after completing an upgrade domain before applying health policies. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- Upgrade
Domain stringTimeout - The amount of time each upgrade domain has to complete before FailureAction is executed. Cannot be larger than 12 hours. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- Upgrade
Timeout string - The amount of time the overall upgrade has to complete before FailureAction is executed. Cannot be larger than 12 hours. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- failure
Action String - The compensating action to perform when a Monitored upgrade encounters monitoring policy or health policy violations. Invalid indicates the failure action is invalid. Rollback specifies that the upgrade will start rolling back automatically. Manual indicates that the upgrade will switch to UnmonitoredManual upgrade mode.
- health
Check StringRetry Timeout - The amount of time to retry health evaluation when the application or cluster is unhealthy before FailureAction is executed. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- health
Check StringStable Duration - The amount of time that the application or cluster must remain healthy before the upgrade proceeds to the next upgrade domain. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- health
Check StringWait Duration - The amount of time to wait after completing an upgrade domain before applying health policies. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- upgrade
Domain StringTimeout - The amount of time each upgrade domain has to complete before FailureAction is executed. Cannot be larger than 12 hours. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- upgrade
Timeout String - The amount of time the overall upgrade has to complete before FailureAction is executed. Cannot be larger than 12 hours. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- failure
Action string - The compensating action to perform when a Monitored upgrade encounters monitoring policy or health policy violations. Invalid indicates the failure action is invalid. Rollback specifies that the upgrade will start rolling back automatically. Manual indicates that the upgrade will switch to UnmonitoredManual upgrade mode.
- health
Check stringRetry Timeout - The amount of time to retry health evaluation when the application or cluster is unhealthy before FailureAction is executed. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- health
Check stringStable Duration - The amount of time that the application or cluster must remain healthy before the upgrade proceeds to the next upgrade domain. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- health
Check stringWait Duration - The amount of time to wait after completing an upgrade domain before applying health policies. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- upgrade
Domain stringTimeout - The amount of time each upgrade domain has to complete before FailureAction is executed. Cannot be larger than 12 hours. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- upgrade
Timeout string - The amount of time the overall upgrade has to complete before FailureAction is executed. Cannot be larger than 12 hours. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- failure_
action str - The compensating action to perform when a Monitored upgrade encounters monitoring policy or health policy violations. Invalid indicates the failure action is invalid. Rollback specifies that the upgrade will start rolling back automatically. Manual indicates that the upgrade will switch to UnmonitoredManual upgrade mode.
- health_
check_ strretry_ timeout - The amount of time to retry health evaluation when the application or cluster is unhealthy before FailureAction is executed. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- health_
check_ strstable_ duration - The amount of time that the application or cluster must remain healthy before the upgrade proceeds to the next upgrade domain. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- health_
check_ strwait_ duration - The amount of time to wait after completing an upgrade domain before applying health policies. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- upgrade_
domain_ strtimeout - The amount of time each upgrade domain has to complete before FailureAction is executed. Cannot be larger than 12 hours. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- upgrade_
timeout str - The amount of time the overall upgrade has to complete before FailureAction is executed. Cannot be larger than 12 hours. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- failure
Action String - The compensating action to perform when a Monitored upgrade encounters monitoring policy or health policy violations. Invalid indicates the failure action is invalid. Rollback specifies that the upgrade will start rolling back automatically. Manual indicates that the upgrade will switch to UnmonitoredManual upgrade mode.
- health
Check StringRetry Timeout - The amount of time to retry health evaluation when the application or cluster is unhealthy before FailureAction is executed. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- health
Check StringStable Duration - The amount of time that the application or cluster must remain healthy before the upgrade proceeds to the next upgrade domain. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- health
Check StringWait Duration - The amount of time to wait after completing an upgrade domain before applying health policies. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- upgrade
Domain StringTimeout - The amount of time each upgrade domain has to complete before FailureAction is executed. Cannot be larger than 12 hours. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
- upgrade
Timeout String - The amount of time the overall upgrade has to complete before FailureAction is executed. Cannot be larger than 12 hours. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
ServiceTypeHealthPolicy, ServiceTypeHealthPolicyArgs
- Max
Percent intUnhealthy Partitions Per Service The maximum allowed percentage of unhealthy partitions per service.
The percentage represents the maximum tolerated percentage of partitions that can be unhealthy before the service is considered in error. If the percentage is respected but there is at least one unhealthy partition, the health is evaluated as Warning. The percentage is calculated by dividing the number of unhealthy partitions over the total number of partitions in the service. The computation rounds up to tolerate one failure on small numbers of partitions.
- Max
Percent intUnhealthy Replicas Per Partition The maximum allowed percentage of unhealthy replicas per partition.
The percentage represents the maximum tolerated percentage of replicas that can be unhealthy before the partition is considered in error. If the percentage is respected but there is at least one unhealthy replica, the health is evaluated as Warning. The percentage is calculated by dividing the number of unhealthy replicas over the total number of replicas in the partition. The computation rounds up to tolerate one failure on small numbers of replicas.
- Max
Percent intUnhealthy Services The maximum allowed percentage of unhealthy services.
The percentage represents the maximum tolerated percentage of services that can be unhealthy before the application is considered in error. If the percentage is respected but there is at least one unhealthy service, the health is evaluated as Warning. This is calculated by dividing the number of unhealthy services of the specific service type over the total number of services of the specific service type. The computation rounds up to tolerate one failure on small numbers of services.
- Max
Percent intUnhealthy Partitions Per Service The maximum allowed percentage of unhealthy partitions per service.
The percentage represents the maximum tolerated percentage of partitions that can be unhealthy before the service is considered in error. If the percentage is respected but there is at least one unhealthy partition, the health is evaluated as Warning. The percentage is calculated by dividing the number of unhealthy partitions over the total number of partitions in the service. The computation rounds up to tolerate one failure on small numbers of partitions.
- Max
Percent intUnhealthy Replicas Per Partition The maximum allowed percentage of unhealthy replicas per partition.
The percentage represents the maximum tolerated percentage of replicas that can be unhealthy before the partition is considered in error. If the percentage is respected but there is at least one unhealthy replica, the health is evaluated as Warning. The percentage is calculated by dividing the number of unhealthy replicas over the total number of replicas in the partition. The computation rounds up to tolerate one failure on small numbers of replicas.
- Max
Percent intUnhealthy Services The maximum allowed percentage of unhealthy services.
The percentage represents the maximum tolerated percentage of services that can be unhealthy before the application is considered in error. If the percentage is respected but there is at least one unhealthy service, the health is evaluated as Warning. This is calculated by dividing the number of unhealthy services of the specific service type over the total number of services of the specific service type. The computation rounds up to tolerate one failure on small numbers of services.
- max
Percent IntegerUnhealthy Partitions Per Service The maximum allowed percentage of unhealthy partitions per service.
The percentage represents the maximum tolerated percentage of partitions that can be unhealthy before the service is considered in error. If the percentage is respected but there is at least one unhealthy partition, the health is evaluated as Warning. The percentage is calculated by dividing the number of unhealthy partitions over the total number of partitions in the service. The computation rounds up to tolerate one failure on small numbers of partitions.
- max
Percent IntegerUnhealthy Replicas Per Partition The maximum allowed percentage of unhealthy replicas per partition.
The percentage represents the maximum tolerated percentage of replicas that can be unhealthy before the partition is considered in error. If the percentage is respected but there is at least one unhealthy replica, the health is evaluated as Warning. The percentage is calculated by dividing the number of unhealthy replicas over the total number of replicas in the partition. The computation rounds up to tolerate one failure on small numbers of replicas.
- max
Percent IntegerUnhealthy Services The maximum allowed percentage of unhealthy services.
The percentage represents the maximum tolerated percentage of services that can be unhealthy before the application is considered in error. If the percentage is respected but there is at least one unhealthy service, the health is evaluated as Warning. This is calculated by dividing the number of unhealthy services of the specific service type over the total number of services of the specific service type. The computation rounds up to tolerate one failure on small numbers of services.
- max
Percent numberUnhealthy Partitions Per Service The maximum allowed percentage of unhealthy partitions per service.
The percentage represents the maximum tolerated percentage of partitions that can be unhealthy before the service is considered in error. If the percentage is respected but there is at least one unhealthy partition, the health is evaluated as Warning. The percentage is calculated by dividing the number of unhealthy partitions over the total number of partitions in the service. The computation rounds up to tolerate one failure on small numbers of partitions.
- max
Percent numberUnhealthy Replicas Per Partition The maximum allowed percentage of unhealthy replicas per partition.
The percentage represents the maximum tolerated percentage of replicas that can be unhealthy before the partition is considered in error. If the percentage is respected but there is at least one unhealthy replica, the health is evaluated as Warning. The percentage is calculated by dividing the number of unhealthy replicas over the total number of replicas in the partition. The computation rounds up to tolerate one failure on small numbers of replicas.
- max
Percent numberUnhealthy Services The maximum allowed percentage of unhealthy services.
The percentage represents the maximum tolerated percentage of services that can be unhealthy before the application is considered in error. If the percentage is respected but there is at least one unhealthy service, the health is evaluated as Warning. This is calculated by dividing the number of unhealthy services of the specific service type over the total number of services of the specific service type. The computation rounds up to tolerate one failure on small numbers of services.
- max_
percent_ intunhealthy_ partitions_ per_ service The maximum allowed percentage of unhealthy partitions per service.
The percentage represents the maximum tolerated percentage of partitions that can be unhealthy before the service is considered in error. If the percentage is respected but there is at least one unhealthy partition, the health is evaluated as Warning. The percentage is calculated by dividing the number of unhealthy partitions over the total number of partitions in the service. The computation rounds up to tolerate one failure on small numbers of partitions.
- max_
percent_ intunhealthy_ replicas_ per_ partition The maximum allowed percentage of unhealthy replicas per partition.
The percentage represents the maximum tolerated percentage of replicas that can be unhealthy before the partition is considered in error. If the percentage is respected but there is at least one unhealthy replica, the health is evaluated as Warning. The percentage is calculated by dividing the number of unhealthy replicas over the total number of replicas in the partition. The computation rounds up to tolerate one failure on small numbers of replicas.
- max_
percent_ intunhealthy_ services The maximum allowed percentage of unhealthy services.
The percentage represents the maximum tolerated percentage of services that can be unhealthy before the application is considered in error. If the percentage is respected but there is at least one unhealthy service, the health is evaluated as Warning. This is calculated by dividing the number of unhealthy services of the specific service type over the total number of services of the specific service type. The computation rounds up to tolerate one failure on small numbers of services.
- max
Percent NumberUnhealthy Partitions Per Service The maximum allowed percentage of unhealthy partitions per service.
The percentage represents the maximum tolerated percentage of partitions that can be unhealthy before the service is considered in error. If the percentage is respected but there is at least one unhealthy partition, the health is evaluated as Warning. The percentage is calculated by dividing the number of unhealthy partitions over the total number of partitions in the service. The computation rounds up to tolerate one failure on small numbers of partitions.
- max
Percent NumberUnhealthy Replicas Per Partition The maximum allowed percentage of unhealthy replicas per partition.
The percentage represents the maximum tolerated percentage of replicas that can be unhealthy before the partition is considered in error. If the percentage is respected but there is at least one unhealthy replica, the health is evaluated as Warning. The percentage is calculated by dividing the number of unhealthy replicas over the total number of replicas in the partition. The computation rounds up to tolerate one failure on small numbers of replicas.
- max
Percent NumberUnhealthy Services The maximum allowed percentage of unhealthy services.
The percentage represents the maximum tolerated percentage of services that can be unhealthy before the application is considered in error. If the percentage is respected but there is at least one unhealthy service, the health is evaluated as Warning. This is calculated by dividing the number of unhealthy services of the specific service type over the total number of services of the specific service type. The computation rounds up to tolerate one failure on small numbers of services.
ServiceTypeHealthPolicyResponse, ServiceTypeHealthPolicyResponseArgs
- Max
Percent intUnhealthy Partitions Per Service The maximum allowed percentage of unhealthy partitions per service.
The percentage represents the maximum tolerated percentage of partitions that can be unhealthy before the service is considered in error. If the percentage is respected but there is at least one unhealthy partition, the health is evaluated as Warning. The percentage is calculated by dividing the number of unhealthy partitions over the total number of partitions in the service. The computation rounds up to tolerate one failure on small numbers of partitions.
- Max
Percent intUnhealthy Replicas Per Partition The maximum allowed percentage of unhealthy replicas per partition.
The percentage represents the maximum tolerated percentage of replicas that can be unhealthy before the partition is considered in error. If the percentage is respected but there is at least one unhealthy replica, the health is evaluated as Warning. The percentage is calculated by dividing the number of unhealthy replicas over the total number of replicas in the partition. The computation rounds up to tolerate one failure on small numbers of replicas.
- Max
Percent intUnhealthy Services The maximum allowed percentage of unhealthy services.
The percentage represents the maximum tolerated percentage of services that can be unhealthy before the application is considered in error. If the percentage is respected but there is at least one unhealthy service, the health is evaluated as Warning. This is calculated by dividing the number of unhealthy services of the specific service type over the total number of services of the specific service type. The computation rounds up to tolerate one failure on small numbers of services.
- Max
Percent intUnhealthy Partitions Per Service The maximum allowed percentage of unhealthy partitions per service.
The percentage represents the maximum tolerated percentage of partitions that can be unhealthy before the service is considered in error. If the percentage is respected but there is at least one unhealthy partition, the health is evaluated as Warning. The percentage is calculated by dividing the number of unhealthy partitions over the total number of partitions in the service. The computation rounds up to tolerate one failure on small numbers of partitions.
- Max
Percent intUnhealthy Replicas Per Partition The maximum allowed percentage of unhealthy replicas per partition.
The percentage represents the maximum tolerated percentage of replicas that can be unhealthy before the partition is considered in error. If the percentage is respected but there is at least one unhealthy replica, the health is evaluated as Warning. The percentage is calculated by dividing the number of unhealthy replicas over the total number of replicas in the partition. The computation rounds up to tolerate one failure on small numbers of replicas.
- Max
Percent intUnhealthy Services The maximum allowed percentage of unhealthy services.
The percentage represents the maximum tolerated percentage of services that can be unhealthy before the application is considered in error. If the percentage is respected but there is at least one unhealthy service, the health is evaluated as Warning. This is calculated by dividing the number of unhealthy services of the specific service type over the total number of services of the specific service type. The computation rounds up to tolerate one failure on small numbers of services.
- max
Percent IntegerUnhealthy Partitions Per Service The maximum allowed percentage of unhealthy partitions per service.
The percentage represents the maximum tolerated percentage of partitions that can be unhealthy before the service is considered in error. If the percentage is respected but there is at least one unhealthy partition, the health is evaluated as Warning. The percentage is calculated by dividing the number of unhealthy partitions over the total number of partitions in the service. The computation rounds up to tolerate one failure on small numbers of partitions.
- max
Percent IntegerUnhealthy Replicas Per Partition The maximum allowed percentage of unhealthy replicas per partition.
The percentage represents the maximum tolerated percentage of replicas that can be unhealthy before the partition is considered in error. If the percentage is respected but there is at least one unhealthy replica, the health is evaluated as Warning. The percentage is calculated by dividing the number of unhealthy replicas over the total number of replicas in the partition. The computation rounds up to tolerate one failure on small numbers of replicas.
- max
Percent IntegerUnhealthy Services The maximum allowed percentage of unhealthy services.
The percentage represents the maximum tolerated percentage of services that can be unhealthy before the application is considered in error. If the percentage is respected but there is at least one unhealthy service, the health is evaluated as Warning. This is calculated by dividing the number of unhealthy services of the specific service type over the total number of services of the specific service type. The computation rounds up to tolerate one failure on small numbers of services.
- max
Percent numberUnhealthy Partitions Per Service The maximum allowed percentage of unhealthy partitions per service.
The percentage represents the maximum tolerated percentage of partitions that can be unhealthy before the service is considered in error. If the percentage is respected but there is at least one unhealthy partition, the health is evaluated as Warning. The percentage is calculated by dividing the number of unhealthy partitions over the total number of partitions in the service. The computation rounds up to tolerate one failure on small numbers of partitions.
- max
Percent numberUnhealthy Replicas Per Partition The maximum allowed percentage of unhealthy replicas per partition.
The percentage represents the maximum tolerated percentage of replicas that can be unhealthy before the partition is considered in error. If the percentage is respected but there is at least one unhealthy replica, the health is evaluated as Warning. The percentage is calculated by dividing the number of unhealthy replicas over the total number of replicas in the partition. The computation rounds up to tolerate one failure on small numbers of replicas.
- max
Percent numberUnhealthy Services The maximum allowed percentage of unhealthy services.
The percentage represents the maximum tolerated percentage of services that can be unhealthy before the application is considered in error. If the percentage is respected but there is at least one unhealthy service, the health is evaluated as Warning. This is calculated by dividing the number of unhealthy services of the specific service type over the total number of services of the specific service type. The computation rounds up to tolerate one failure on small numbers of services.
- max_
percent_ intunhealthy_ partitions_ per_ service The maximum allowed percentage of unhealthy partitions per service.
The percentage represents the maximum tolerated percentage of partitions that can be unhealthy before the service is considered in error. If the percentage is respected but there is at least one unhealthy partition, the health is evaluated as Warning. The percentage is calculated by dividing the number of unhealthy partitions over the total number of partitions in the service. The computation rounds up to tolerate one failure on small numbers of partitions.
- max_
percent_ intunhealthy_ replicas_ per_ partition The maximum allowed percentage of unhealthy replicas per partition.
The percentage represents the maximum tolerated percentage of replicas that can be unhealthy before the partition is considered in error. If the percentage is respected but there is at least one unhealthy replica, the health is evaluated as Warning. The percentage is calculated by dividing the number of unhealthy replicas over the total number of replicas in the partition. The computation rounds up to tolerate one failure on small numbers of replicas.
- max_
percent_ intunhealthy_ services The maximum allowed percentage of unhealthy services.
The percentage represents the maximum tolerated percentage of services that can be unhealthy before the application is considered in error. If the percentage is respected but there is at least one unhealthy service, the health is evaluated as Warning. This is calculated by dividing the number of unhealthy services of the specific service type over the total number of services of the specific service type. The computation rounds up to tolerate one failure on small numbers of services.
- max
Percent NumberUnhealthy Partitions Per Service The maximum allowed percentage of unhealthy partitions per service.
The percentage represents the maximum tolerated percentage of partitions that can be unhealthy before the service is considered in error. If the percentage is respected but there is at least one unhealthy partition, the health is evaluated as Warning. The percentage is calculated by dividing the number of unhealthy partitions over the total number of partitions in the service. The computation rounds up to tolerate one failure on small numbers of partitions.
- max
Percent NumberUnhealthy Replicas Per Partition The maximum allowed percentage of unhealthy replicas per partition.
The percentage represents the maximum tolerated percentage of replicas that can be unhealthy before the partition is considered in error. If the percentage is respected but there is at least one unhealthy replica, the health is evaluated as Warning. The percentage is calculated by dividing the number of unhealthy replicas over the total number of replicas in the partition. The computation rounds up to tolerate one failure on small numbers of replicas.
- max
Percent NumberUnhealthy Services The maximum allowed percentage of unhealthy services.
The percentage represents the maximum tolerated percentage of services that can be unhealthy before the application is considered in error. If the percentage is respected but there is at least one unhealthy service, the health is evaluated as Warning. This is calculated by dividing the number of unhealthy services of the specific service type over the total number of services of the specific service type. The computation rounds up to tolerate one failure on small numbers of services.
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC).
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC).
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC).
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC).
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC).
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC).
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs
- Client
Id string - The client id of user assigned identity.
- Principal
Id string - The principal id of user assigned identity.
- Client
Id string - The client id of user assigned identity.
- Principal
Id string - The principal id of user assigned identity.
- client
Id String - The client id of user assigned identity.
- principal
Id String - The principal id of user assigned identity.
- client
Id string - The client id of user assigned identity.
- principal
Id string - The principal id of user assigned identity.
- client_
id str - The client id of user assigned identity.
- principal_
id str - The principal id of user assigned identity.
- client
Id String - The client id of user assigned identity.
- principal
Id String - The principal id of user assigned identity.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:servicefabric:ManagedClusterApplication myApp /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabric/managedclusters/{clusterName}/applications/{applicationName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0