Microsoft.ServiceFabric (preview:2024-11-01)

2025/04/03 • 4 updated methods

Applications_List (updated)
Description Gets all managed application resources created or in the process of being created in the Service Fabric cluster resource.
Reference Link ¶

⚶ Changes

{
  "#id": "Applications_List",
  "$responses": {
    "200": {
      "$properties": {
        "value": {
          "$properties": {
            "properties": [
              {
                "upgradePolicy": [
                  {
                    "#name": "upgradeReplicaSetCheckTimeout",
                    "Description": {
                      "new": "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). Unit is in seconds.",
                      "old": "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)."
                    }
                  }
                ]
              }
            ]
          }
        }
      }
    }
  }
}

⚼ Request

GET:  /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabric/managedClusters/{clusterName}/applications
{
api-version: string ,
subscriptionId: string ,
resourceGroupName: string ,
clusterName: string ,
}

⚐ Response (200)

{
value:
[
{
properties:
{
provisioningState: string ,
version: string ,
parameters: object ,
upgradePolicy:
{
applicationHealthPolicy:
{
considerWarningAsError: boolean ,
maxPercentUnhealthyDeployedApplications: integer ,
defaultServiceTypeHealthPolicy:
{
maxPercentUnhealthyServices: integer ,
maxPercentUnhealthyPartitionsPerService: integer ,
maxPercentUnhealthyReplicasPerPartition: integer ,
}
,
serviceTypeHealthPolicyMap: object ,
}
,
forceRestart: boolean ,
rollingUpgradeMonitoringPolicy:
{
failureAction: enum ,
healthCheckWaitDuration: string ,
healthCheckStableDuration: string ,
healthCheckRetryTimeout: string ,
upgradeTimeout: string ,
upgradeDomainTimeout: string ,
}
,
instanceCloseDelayDuration: integer ,
upgradeMode: enum ,
upgradeReplicaSetCheckTimeout: integer ,
recreateApplication: boolean ,
}
,
managedIdentities:
[
{
name: string ,
principalId: string ,
}
,
]
,
}
,
tags: object ,
identity:
{
principalId: string ,
tenantId: string ,
type: enum ,
userAssignedIdentities: object ,
}
,
location: string ,
}
,
]
,
nextLink: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
Applications_Get (updated)
Description Get a Service Fabric managed application resource created or in the process of being created in the Service Fabric cluster resource.
Reference Link ¶

⚶ Changes

{
  "#id": "Applications_Get",
  "$responses": {
    "200": {
      "$properties": {
        "properties": [
          {
            "upgradePolicy": [
              {
                "#name": "upgradeReplicaSetCheckTimeout",
                "Description": {
                  "new": "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). Unit is in seconds.",
                  "old": "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)."
                }
              }
            ]
          }
        ]
      }
    }
  }
}

⚼ Request

GET:  /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabric/managedClusters/{clusterName}/applications/{applicationName}
{
api-version: string ,
subscriptionId: string ,
resourceGroupName: string ,
clusterName: string ,
applicationName: string ,
}

⚐ Response (200)

{
properties:
{
provisioningState: string ,
version: string ,
parameters: object ,
upgradePolicy:
{
applicationHealthPolicy:
{
considerWarningAsError: boolean ,
maxPercentUnhealthyDeployedApplications: integer ,
defaultServiceTypeHealthPolicy:
{
maxPercentUnhealthyServices: integer ,
maxPercentUnhealthyPartitionsPerService: integer ,
maxPercentUnhealthyReplicasPerPartition: integer ,
}
,
serviceTypeHealthPolicyMap: object ,
}
,
forceRestart: boolean ,
rollingUpgradeMonitoringPolicy:
{
failureAction: enum ,
healthCheckWaitDuration: string ,
healthCheckStableDuration: string ,
healthCheckRetryTimeout: string ,
upgradeTimeout: string ,
upgradeDomainTimeout: string ,
}
,
instanceCloseDelayDuration: integer ,
upgradeMode: enum ,
upgradeReplicaSetCheckTimeout: integer ,
recreateApplication: boolean ,
}
,
managedIdentities:
[
{
name: string ,
principalId: string ,
}
,
]
,
}
,
tags: object ,
identity:
{
principalId: string ,
tenantId: string ,
type: enum ,
userAssignedIdentities: object ,
}
,
location: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
Applications_CreateOrUpdate (updated)
Description Create or update a Service Fabric managed application resource with the specified name.
Reference Link ¶

⚶ Changes

{
  "#id": "Applications_CreateOrUpdate",
  "$parameters": {
    "parameters": {
      "$properties": {
        "properties": [
          {
            "upgradePolicy": [
              {
                "#name": "upgradeReplicaSetCheckTimeout",
                "Description": {
                  "new": "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). Unit is in seconds.",
                  "old": "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)."
                }
              }
            ]
          }
        ]
      }
    }
  },
  "$responses": {
    "200": {
      "$properties": {
        "properties": [
          {
            "upgradePolicy": [
              {
                "#name": "upgradeReplicaSetCheckTimeout",
                "Description": {
                  "new": "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). Unit is in seconds.",
                  "old": "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)."
                }
              }
            ]
          }
        ]
      }
    },
    "202": {
      "$properties": {
        "properties": [
          {
            "upgradePolicy": [
              {
                "#name": "upgradeReplicaSetCheckTimeout",
                "Description": {
                  "new": "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). Unit is in seconds.",
                  "old": "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)."
                }
              }
            ]
          }
        ]
      }
    }
  }
}

⚼ Request

PUT:  /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabric/managedClusters/{clusterName}/applications/{applicationName}
{
api-version: string ,
subscriptionId: string ,
resourceGroupName: string ,
clusterName: string ,
applicationName: string ,
parameters:
{
properties:
{
provisioningState: string ,
version: string ,
parameters: object ,
upgradePolicy:
{
applicationHealthPolicy:
{
considerWarningAsError: boolean ,
maxPercentUnhealthyDeployedApplications: integer ,
defaultServiceTypeHealthPolicy:
{
maxPercentUnhealthyServices: integer ,
maxPercentUnhealthyPartitionsPerService: integer ,
maxPercentUnhealthyReplicasPerPartition: integer ,
}
,
serviceTypeHealthPolicyMap: object ,
}
,
forceRestart: boolean ,
rollingUpgradeMonitoringPolicy:
{
failureAction: enum ,
healthCheckWaitDuration: string ,
healthCheckStableDuration: string ,
healthCheckRetryTimeout: string ,
upgradeTimeout: string ,
upgradeDomainTimeout: string ,
}
,
instanceCloseDelayDuration: integer ,
upgradeMode: enum ,
upgradeReplicaSetCheckTimeout: integer ,
recreateApplication: boolean ,
}
,
managedIdentities:
[
{
name: string ,
principalId: string ,
}
,
]
,
}
,
tags: object ,
identity:
{
principalId: string ,
tenantId: string ,
type: enum ,
userAssignedIdentities: object ,
}
,
location: string ,
}
,
}

⚐ Response (200)

{
properties:
{
provisioningState: string ,
version: string ,
parameters: object ,
upgradePolicy:
{
applicationHealthPolicy:
{
considerWarningAsError: boolean ,
maxPercentUnhealthyDeployedApplications: integer ,
defaultServiceTypeHealthPolicy:
{
maxPercentUnhealthyServices: integer ,
maxPercentUnhealthyPartitionsPerService: integer ,
maxPercentUnhealthyReplicasPerPartition: integer ,
}
,
serviceTypeHealthPolicyMap: object ,
}
,
forceRestart: boolean ,
rollingUpgradeMonitoringPolicy:
{
failureAction: enum ,
healthCheckWaitDuration: string ,
healthCheckStableDuration: string ,
healthCheckRetryTimeout: string ,
upgradeTimeout: string ,
upgradeDomainTimeout: string ,
}
,
instanceCloseDelayDuration: integer ,
upgradeMode: enum ,
upgradeReplicaSetCheckTimeout: integer ,
recreateApplication: boolean ,
}
,
managedIdentities:
[
{
name: string ,
principalId: string ,
}
,
]
,
}
,
tags: object ,
identity:
{
principalId: string ,
tenantId: string ,
type: enum ,
userAssignedIdentities: object ,
}
,
location: string ,
}

⚐ Response (202)

{
$headers:
{
azure-asyncoperation: string ,
location: string ,
}
,
$schema:
{
properties:
{
provisioningState: string ,
version: string ,
parameters: object ,
upgradePolicy:
{
applicationHealthPolicy:
{
considerWarningAsError: boolean ,
maxPercentUnhealthyDeployedApplications: integer ,
defaultServiceTypeHealthPolicy:
{
maxPercentUnhealthyServices: integer ,
maxPercentUnhealthyPartitionsPerService: integer ,
maxPercentUnhealthyReplicasPerPartition: integer ,
}
,
serviceTypeHealthPolicyMap: object ,
}
,
forceRestart: boolean ,
rollingUpgradeMonitoringPolicy:
{
failureAction: enum ,
healthCheckWaitDuration: string ,
healthCheckStableDuration: string ,
healthCheckRetryTimeout: string ,
upgradeTimeout: string ,
upgradeDomainTimeout: string ,
}
,
instanceCloseDelayDuration: integer ,
upgradeMode: enum ,
upgradeReplicaSetCheckTimeout: integer ,
recreateApplication: boolean ,
}
,
managedIdentities:
[
{
name: string ,
principalId: string ,
}
,
]
,
}
,
tags: object ,
identity:
{
principalId: string ,
tenantId: string ,
type: enum ,
userAssignedIdentities: object ,
}
,
location: string ,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
Applications_Update (updated)
Description Updates the tags of an application resource of a given managed cluster.
Reference Link ¶

⚶ Changes

{
  "#id": "Applications_Update",
  "$responses": {
    "200": {
      "$properties": {
        "properties": [
          {
            "upgradePolicy": [
              {
                "#name": "upgradeReplicaSetCheckTimeout",
                "Description": {
                  "new": "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). Unit is in seconds.",
                  "old": "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)."
                }
              }
            ]
          }
        ]
      }
    }
  }
}

⚼ Request

PATCH:  /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabric/managedClusters/{clusterName}/applications/{applicationName}
{
api-version: string ,
subscriptionId: string ,
resourceGroupName: string ,
clusterName: string ,
applicationName: string ,
parameters:
{
tags: object ,
}
,
}

⚐ Response (200)

{
properties:
{
provisioningState: string ,
version: string ,
parameters: object ,
upgradePolicy:
{
applicationHealthPolicy:
{
considerWarningAsError: boolean ,
maxPercentUnhealthyDeployedApplications: integer ,
defaultServiceTypeHealthPolicy:
{
maxPercentUnhealthyServices: integer ,
maxPercentUnhealthyPartitionsPerService: integer ,
maxPercentUnhealthyReplicasPerPartition: integer ,
}
,
serviceTypeHealthPolicyMap: object ,
}
,
forceRestart: boolean ,
rollingUpgradeMonitoringPolicy:
{
failureAction: enum ,
healthCheckWaitDuration: string ,
healthCheckStableDuration: string ,
healthCheckRetryTimeout: string ,
upgradeTimeout: string ,
upgradeDomainTimeout: string ,
}
,
instanceCloseDelayDuration: integer ,
upgradeMode: enum ,
upgradeReplicaSetCheckTimeout: integer ,
recreateApplication: boolean ,
}
,
managedIdentities:
[
{
name: string ,
principalId: string ,
}
,
]
,
}
,
tags: object ,
identity:
{
principalId: string ,
tenantId: string ,
type: enum ,
userAssignedIdentities: object ,
}
,
location: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}