diff --git a/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/src/Generated/Models/ClientCertificate.cs b/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/src/Generated/Models/ClientCertificate.cs
index 219753afd690..dcf70e85115e 100644
--- a/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/src/Generated/Models/ClientCertificate.cs
+++ b/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/src/Generated/Models/ClientCertificate.cs
@@ -34,7 +34,7 @@ public ClientCertificate()
/// Certificate Thumbprint.
/// Certificate Common name.
/// Issuer thumbprint for the
- /// certificate. Its only use ehn CommonName is used.
+ /// certificate. Only used together with CommonName.
public ClientCertificate(bool isAdmin, string thumbprint = default(string), string commonName = default(string), string issuerThumbprint = default(string))
{
IsAdmin = isAdmin;
@@ -68,8 +68,8 @@ public ClientCertificate()
public string CommonName { get; set; }
///
- /// Gets or sets issuer thumbprint for the certificate. Its only use
- /// ehn CommonName is used.
+ /// Gets or sets issuer thumbprint for the certificate. Only used
+ /// together with CommonName.
///
[JsonProperty(PropertyName = "issuerThumbprint")]
public string IssuerThumbprint { get; set; }
diff --git a/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/src/Generated/Models/ManagedCluster.cs b/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/src/Generated/Models/ManagedCluster.cs
index fce7281fcb49..281f9e015177 100644
--- a/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/src/Generated/Models/ManagedCluster.cs
+++ b/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/src/Generated/Models/ManagedCluster.cs
@@ -47,33 +47,7 @@ public ManagedCluster()
/// A service generated unique identifier for
/// the cluster resource.
/// The current state of the cluster.
- ///
- /// - WaitingForNodes - Indicates that the cluster resource is created
- /// and the resource provider is waiting for Service Fabric VM
- /// extension to boot up and report to it.
- /// - Deploying - Indicates that the Service Fabric runtime is being
- /// installed on the VMs. Cluster resource will be in this state until
- /// the cluster boots up and system services are up.
- /// - BaselineUpgrade - Indicates that the cluster is upgrading to
- /// establishes the cluster version. This upgrade is automatically
- /// initiated when the cluster boots up for the first time.
- /// - UpdatingUserConfiguration - Indicates that the cluster is being
- /// upgraded with the user provided configuration.
- /// - UpdatingUserCertificate - Indicates that the cluster is being
- /// upgraded with the user provided certificate.
- /// - UpdatingInfrastructure - Indicates that the cluster is being
- /// upgraded with the latest Service Fabric runtime version. This
- /// happens only when the **upgradeMode** is set to 'Automatic'.
- /// - EnforcingClusterVersion - Indicates that cluster is on a
- /// different version than expected and the cluster is being upgraded
- /// to the expected version.
- /// - UpgradeServiceUnreachable - Indicates that the system service in
- /// the cluster is no longer polling the Resource Provider. Clusters in
- /// this state cannot be managed by the Resource Provider.
- /// - AutoScale - Indicates that the ReliabilityLevel of the cluster is
- /// being adjusted.
- /// - Ready - Indicates that the cluster is in a stable state.
- /// . Possible values include: 'WaitingForNodes', 'Deploying',
+ /// Possible values include: 'WaitingForNodes', 'Deploying',
/// 'BaselineUpgrade', 'UpdatingUserConfiguration',
/// 'UpdatingUserCertificate', 'UpdatingInfrastructure',
/// 'EnforcingClusterVersion', 'UpgradeServiceUnreachable',
@@ -91,8 +65,6 @@ public ManagedCluster()
/// Azure active directory.
/// The list of custom fabric settings to
/// configure the cluster.
- /// Use service fabric test vm
- /// extension, by default it's false.
/// The provisioning state of the
/// managed cluster resource. Possible values include: 'None',
/// 'Creating', 'Created', 'Updating', 'Succeeded', 'Failed',
@@ -103,22 +75,10 @@ public ManagedCluster()
/// Service Fabric versions for new clusters use [ClusterVersion
/// API](./ClusterVersion.md). To get the list of available version for
/// existing clusters use **availableClusterVersions**.
- /// The upgrade mode of the cluster
- /// when new Service Fabric runtime version is available.
- ///
- /// - Automatic - The cluster will be automatically upgraded to the
- /// latest Service Fabric runtime version as soon as it is available.
- /// - Manual - The cluster will not be automatically upgraded to the
- /// latest Service Fabric runtime version. The cluster is upgraded by
- /// setting the **clusterCodeVersion** property in the cluster
- /// resource.
- /// . Possible values include: 'Automatic', 'Manual'
- /// Describes the policy used
- /// when upgrading the cluster.
- /// The endpoint used by reverse
- /// proxy.
+ /// client certificates for the
+ /// cluster.
/// The sku of the managed cluster
- public ManagedCluster(string location, string dnsName, string adminUserName, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string etag = default(string), string fqdn = default(string), string clusterId = default(string), string clusterState = default(string), string clusterCertificateThumbprint = default(string), int? clientConnectionPort = default(int?), int? httpGatewayConnectionPort = default(int?), string adminPassword = default(string), IList loadBalancingRules = default(IList), IList clients = default(IList), AzureActiveDirectory azureActiveDirectory = default(AzureActiveDirectory), IList fabricSettings = default(IList), bool? useTestExtension = default(bool?), string provisioningState = default(string), string clusterCodeVersion = default(string), string clusterUpgradeMode = default(string), ClusterUpgradePolicy clusterUpgradeDescription = default(ClusterUpgradePolicy), int? reverseProxyEndpointPort = default(int?), Sku sku = default(Sku))
+ public ManagedCluster(string location, string dnsName, string adminUserName, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string etag = default(string), string fqdn = default(string), string clusterId = default(string), string clusterState = default(string), string clusterCertificateThumbprint = default(string), int? clientConnectionPort = default(int?), int? httpGatewayConnectionPort = default(int?), string adminPassword = default(string), IList loadBalancingRules = default(IList), IList clients = default(IList), AzureActiveDirectory azureActiveDirectory = default(AzureActiveDirectory), IList fabricSettings = default(IList), string provisioningState = default(string), string clusterCodeVersion = default(string), IList addonFeatures = default(IList), Sku sku = default(Sku))
: base(location, id, name, type, tags, etag)
{
DnsName = dnsName;
@@ -134,12 +94,9 @@ public ManagedCluster()
Clients = clients;
AzureActiveDirectory = azureActiveDirectory;
FabricSettings = fabricSettings;
- UseTestExtension = useTestExtension;
ProvisioningState = provisioningState;
ClusterCodeVersion = clusterCodeVersion;
- ClusterUpgradeMode = clusterUpgradeMode;
- ClusterUpgradeDescription = clusterUpgradeDescription;
- ReverseProxyEndpointPort = reverseProxyEndpointPort;
+ AddonFeatures = addonFeatures;
Sku = sku;
CustomInit();
}
@@ -169,38 +126,11 @@ public ManagedCluster()
public string ClusterId { get; private set; }
///
- /// Gets the current state of the cluster.
- ///
- /// - WaitingForNodes - Indicates that the cluster resource is created
- /// and the resource provider is waiting for Service Fabric VM
- /// extension to boot up and report to it.
- /// - Deploying - Indicates that the Service Fabric runtime is being
- /// installed on the VMs. Cluster resource will be in this state until
- /// the cluster boots up and system services are up.
- /// - BaselineUpgrade - Indicates that the cluster is upgrading to
- /// establishes the cluster version. This upgrade is automatically
- /// initiated when the cluster boots up for the first time.
- /// - UpdatingUserConfiguration - Indicates that the cluster is being
- /// upgraded with the user provided configuration.
- /// - UpdatingUserCertificate - Indicates that the cluster is being
- /// upgraded with the user provided certificate.
- /// - UpdatingInfrastructure - Indicates that the cluster is being
- /// upgraded with the latest Service Fabric runtime version. This
- /// happens only when the **upgradeMode** is set to 'Automatic'.
- /// - EnforcingClusterVersion - Indicates that cluster is on a
- /// different version than expected and the cluster is being upgraded
- /// to the expected version.
- /// - UpgradeServiceUnreachable - Indicates that the system service in
- /// the cluster is no longer polling the Resource Provider. Clusters in
- /// this state cannot be managed by the Resource Provider.
- /// - AutoScale - Indicates that the ReliabilityLevel of the cluster is
- /// being adjusted.
- /// - Ready - Indicates that the cluster is in a stable state.
- /// . Possible values include: 'WaitingForNodes', 'Deploying',
- /// 'BaselineUpgrade', 'UpdatingUserConfiguration',
- /// 'UpdatingUserCertificate', 'UpdatingInfrastructure',
- /// 'EnforcingClusterVersion', 'UpgradeServiceUnreachable',
- /// 'AutoScale', 'Ready'
+ /// Gets the current state of the cluster. Possible values include:
+ /// 'WaitingForNodes', 'Deploying', 'BaselineUpgrade',
+ /// 'UpdatingUserConfiguration', 'UpdatingUserCertificate',
+ /// 'UpdatingInfrastructure', 'EnforcingClusterVersion',
+ /// 'UpgradeServiceUnreachable', 'AutoScale', 'Ready'
///
[JsonProperty(PropertyName = "properties.clusterState")]
public string ClusterState { get; private set; }
@@ -261,13 +191,6 @@ public ManagedCluster()
[JsonProperty(PropertyName = "properties.fabricSettings")]
public IList FabricSettings { get; set; }
- ///
- /// Gets or sets use service fabric test vm extension, by default it's
- /// false.
- ///
- [JsonProperty(PropertyName = "properties.useTestExtension")]
- public bool? UseTestExtension { get; set; }
-
///
/// Gets the provisioning state of the managed cluster resource.
/// Possible values include: 'None', 'Creating', 'Created', 'Updating',
@@ -288,31 +211,10 @@ public ManagedCluster()
public string ClusterCodeVersion { get; set; }
///
- /// Gets or sets the upgrade mode of the cluster when new Service
- /// Fabric runtime version is available.
- ///
- /// - Automatic - The cluster will be automatically upgraded to the
- /// latest Service Fabric runtime version as soon as it is available.
- /// - Manual - The cluster will not be automatically upgraded to the
- /// latest Service Fabric runtime version. The cluster is upgraded by
- /// setting the **clusterCodeVersion** property in the cluster
- /// resource.
- /// . Possible values include: 'Automatic', 'Manual'
- ///
- [JsonProperty(PropertyName = "properties.clusterUpgradeMode")]
- public string ClusterUpgradeMode { get; set; }
-
- ///
- /// Gets or sets describes the policy used when upgrading the cluster.
- ///
- [JsonProperty(PropertyName = "properties.clusterUpgradeDescription")]
- public ClusterUpgradePolicy ClusterUpgradeDescription { get; set; }
-
- ///
- /// Gets or sets the endpoint used by reverse proxy.
+ /// Gets or sets client certificates for the cluster.
///
- [JsonProperty(PropertyName = "properties.reverseProxyEndpointPort")]
- public int? ReverseProxyEndpointPort { get; set; }
+ [JsonProperty(PropertyName = "properties.addonFeatures")]
+ public IList AddonFeatures { get; set; }
///
/// Gets or sets the sku of the managed cluster
@@ -367,10 +269,6 @@ public override void Validate()
}
}
}
- if (ClusterUpgradeDescription != null)
- {
- ClusterUpgradeDescription.Validate();
- }
if (Sku != null)
{
Sku.Validate();
diff --git a/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/src/Generated/Models/ManagedClusterUpdateParameters.cs b/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/src/Generated/Models/ManagedClusterUpdateParameters.cs
index 83e88b714816..ee38bbc25fad 100644
--- a/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/src/Generated/Models/ManagedClusterUpdateParameters.cs
+++ b/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/src/Generated/Models/ManagedClusterUpdateParameters.cs
@@ -40,8 +40,8 @@ public ManagedClusterUpdateParameters()
/// connections to the cluster.
/// The port used for http
/// connections to the cluster.
- /// Describes a load balancing
- /// rule.
+ /// Describes load balancing
+ /// rules.
/// client certificates for the cluster.
/// Azure active directory.
/// The list of custom fabric settings to
@@ -52,22 +52,10 @@ public ManagedClusterUpdateParameters()
/// Service Fabric versions for new clusters use [ClusterVersion
/// API](./ClusterVersion.md). To get the list of available version for
/// existing clusters use **availableClusterVersions**.
- /// The upgrade mode of the cluster
- /// when new Service Fabric runtime version is available.
- ///
- /// - Automatic - The cluster will be automatically upgraded to the
- /// latest Service Fabric runtime version as soon as it is available.
- /// - Manual - The cluster will not be automatically upgraded to the
- /// latest Service Fabric runtime version. The cluster is upgraded by
- /// setting the **clusterCodeVersion** property in the cluster
- /// resource.
- /// . Possible values include: 'Automatic', 'Manual'
- /// Describes the policy used
- /// when upgrading the cluster.
- /// The endpoint used by reverse
- /// proxy.
+ /// client certificates for the
+ /// cluster.
/// Managed cluster update parameters
- public ManagedClusterUpdateParameters(int? clientConnectionPort = default(int?), int? httpGatewayConnectionPort = default(int?), IList loadBalancingRules = default(IList), IList clients = default(IList), AzureActiveDirectory azureActiveDirectory = default(AzureActiveDirectory), IList fabricSettings = default(IList), string clusterCodeVersion = default(string), string clusterUpgradeMode = default(string), ClusterUpgradePolicy clusterUpgradeDescription = default(ClusterUpgradePolicy), int? reverseProxyEndpointPort = default(int?), IDictionary tags = default(IDictionary))
+ public ManagedClusterUpdateParameters(int? clientConnectionPort = default(int?), int? httpGatewayConnectionPort = default(int?), IList loadBalancingRules = default(IList), IList clients = default(IList), AzureActiveDirectory azureActiveDirectory = default(AzureActiveDirectory), IList fabricSettings = default(IList), string clusterCodeVersion = default(string), IList addonFeatures = default(IList), IDictionary tags = default(IDictionary))
{
ClientConnectionPort = clientConnectionPort;
HttpGatewayConnectionPort = httpGatewayConnectionPort;
@@ -76,9 +64,7 @@ public ManagedClusterUpdateParameters()
AzureActiveDirectory = azureActiveDirectory;
FabricSettings = fabricSettings;
ClusterCodeVersion = clusterCodeVersion;
- ClusterUpgradeMode = clusterUpgradeMode;
- ClusterUpgradeDescription = clusterUpgradeDescription;
- ReverseProxyEndpointPort = reverseProxyEndpointPort;
+ AddonFeatures = addonFeatures;
Tags = tags;
CustomInit();
}
@@ -101,7 +87,7 @@ public ManagedClusterUpdateParameters()
public int? HttpGatewayConnectionPort { get; set; }
///
- /// Gets or sets describes a load balancing rule.
+ /// Gets or sets describes load balancing rules.
///
[JsonProperty(PropertyName = "properties.loadBalancingRules")]
public IList LoadBalancingRules { get; set; }
@@ -137,31 +123,10 @@ public ManagedClusterUpdateParameters()
public string ClusterCodeVersion { get; set; }
///
- /// Gets or sets the upgrade mode of the cluster when new Service
- /// Fabric runtime version is available.
- ///
- /// - Automatic - The cluster will be automatically upgraded to the
- /// latest Service Fabric runtime version as soon as it is available.
- /// - Manual - The cluster will not be automatically upgraded to the
- /// latest Service Fabric runtime version. The cluster is upgraded by
- /// setting the **clusterCodeVersion** property in the cluster
- /// resource.
- /// . Possible values include: 'Automatic', 'Manual'
- ///
- [JsonProperty(PropertyName = "properties.clusterUpgradeMode")]
- public string ClusterUpgradeMode { get; set; }
-
- ///
- /// Gets or sets describes the policy used when upgrading the cluster.
- ///
- [JsonProperty(PropertyName = "properties.clusterUpgradeDescription")]
- public ClusterUpgradePolicy ClusterUpgradeDescription { get; set; }
-
- ///
- /// Gets or sets the endpoint used by reverse proxy.
+ /// Gets or sets client certificates for the cluster.
///
- [JsonProperty(PropertyName = "properties.reverseProxyEndpointPort")]
- public int? ReverseProxyEndpointPort { get; set; }
+ [JsonProperty(PropertyName = "properties.addonFeatures")]
+ public IList AddonFeatures { get; set; }
///
/// Gets or sets managed cluster update parameters
@@ -169,48 +134,5 @@ public ManagedClusterUpdateParameters()
[JsonProperty(PropertyName = "tags")]
public IDictionary Tags { get; set; }
- ///
- /// Validate the object.
- ///
- ///
- /// Thrown if validation fails
- ///
- public virtual void Validate()
- {
- if (LoadBalancingRules != null)
- {
- foreach (var element in LoadBalancingRules)
- {
- if (element != null)
- {
- element.Validate();
- }
- }
- }
- if (Clients != null)
- {
- foreach (var element1 in Clients)
- {
- if (element1 != null)
- {
- element1.Validate();
- }
- }
- }
- if (FabricSettings != null)
- {
- foreach (var element2 in FabricSettings)
- {
- if (element2 != null)
- {
- element2.Validate();
- }
- }
- }
- if (ClusterUpgradeDescription != null)
- {
- ClusterUpgradeDescription.Validate();
- }
- }
}
}
diff --git a/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/src/Generated/Models/NodeType.cs b/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/src/Generated/Models/NodeType.cs
index 25135392265c..6f479ab08cf2 100644
--- a/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/src/Generated/Models/NodeType.cs
+++ b/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/src/Generated/Models/NodeType.cs
@@ -38,9 +38,8 @@ public NodeType()
/// The node type on which system services will
/// run. Only one node type should be marked as primary. Primary node
/// type cannot be deleted or changed for existing clusters.
- /// The number of nodes in the node type.
- /// This count should match the capacity property in the corresponding
- /// VirtualMachineScaleSet resource.
+ /// The number of nodes in the node
+ /// type.
/// Disk size for each vm in the node type
/// in GBs.
/// Azure resource identifier.
@@ -114,9 +113,7 @@ public NodeType()
public bool IsPrimary { get; set; }
///
- /// Gets or sets the number of nodes in the node type. This count
- /// should match the capacity property in the corresponding
- /// VirtualMachineScaleSet resource.
+ /// Gets or sets the number of nodes in the node type.
///
[JsonProperty(PropertyName = "properties.vmInstanceCount")]
public int VmInstanceCount { get; set; }
diff --git a/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/src/Generated/Models/NodeTypeUpdateParameters.cs b/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/src/Generated/Models/NodeTypeUpdateParameters.cs
index 4d643802bf94..b2880bf08611 100644
--- a/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/src/Generated/Models/NodeTypeUpdateParameters.cs
+++ b/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/src/Generated/Models/NodeTypeUpdateParameters.cs
@@ -34,9 +34,8 @@ public NodeTypeUpdateParameters()
///
/// Initializes a new instance of the NodeTypeUpdateParameters class.
///
- /// The number of nodes in the node type.
- /// This count should match the capacity property in the corresponding
- /// VirtualMachineScaleSet resource.
+ /// The number of nodes in the node
+ /// type.
/// The placement tags applied to
/// nodes in the node type, which can be used to indicate where certain
/// services (workload) should run.
@@ -69,9 +68,7 @@ public NodeTypeUpdateParameters()
partial void CustomInit();
///
- /// Gets or sets the number of nodes in the node type. This count
- /// should match the capacity property in the corresponding
- /// VirtualMachineScaleSet resource.
+ /// Gets or sets the number of nodes in the node type.
///
[JsonProperty(PropertyName = "properties.vmInstanceCount")]
public int? VmInstanceCount { get; set; }
diff --git a/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/src/Generated/Models/Sku.cs b/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/src/Generated/Models/Sku.cs
index 04cc20c4e280..7895e9dd2cb9 100644
--- a/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/src/Generated/Models/Sku.cs
+++ b/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/src/Generated/Models/Sku.cs
@@ -30,9 +30,8 @@ public Sku()
///
/// Initializes a new instance of the Sku class.
///
- /// Sku Name. Basic will hav a minimum of 3 seed
- /// nodes and Standard a minimum of 5. Basic only allows 1 node type.
- /// Possible values include: 'Basic', 'Standard'
+ /// Sku Name. Possible values include: 'Basic',
+ /// 'Standard'
public Sku(string name)
{
Name = name;
@@ -45,9 +44,7 @@ public Sku(string name)
partial void CustomInit();
///
- /// Gets or sets sku Name. Basic will hav a minimum of 3 seed nodes and
- /// Standard a minimum of 5. Basic only allows 1 node type. Possible
- /// values include: 'Basic', 'Standard'
+ /// Gets or sets sku Name. Possible values include: 'Basic', 'Standard'
///
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
diff --git a/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/src/Generated/Models/VMSSExtension.cs b/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/src/Generated/Models/VMSSExtension.cs
index 34ca919e65f6..e2d7f130604a 100644
--- a/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/src/Generated/Models/VMSSExtension.cs
+++ b/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/src/Generated/Models/VMSSExtension.cs
@@ -42,10 +42,6 @@ public VMSSExtension()
/// is "CustomScriptExtension".
/// Specifies the version of the
/// script handler.
- /// If a value is provided and is
- /// different from the previous value, the extension handler will be
- /// forced to update even if the extension configuration has not
- /// changed.
/// Indicates whether the
/// extension should use a newer minor version if one is available at
/// deployment time. Once deployed, however, the extension will not
@@ -56,22 +52,26 @@ public VMSSExtension()
/// The extension can contain either
/// protectedSettings or protectedSettingsFromKeyVault or no protected
/// settings at all.
- /// The provisioning state, which only
- /// appears in the response.
+ /// If a value is provided and is
+ /// different from the previous value, the extension handler will be
+ /// forced to update even if the extension configuration has not
+ /// changed.
/// Collection of extension
/// names after which this extension needs to be provisioned.
- public VMSSExtension(string name, string publisher, string type, string typeHandlerVersion, string forceUpdateTag = default(string), bool? autoUpgradeMinorVersion = default(bool?), object settings = default(object), object protectedSettings = default(object), string provisioningState = default(string), IList provisionAfterExtensions = default(IList))
+ /// The provisioning state, which only
+ /// appears in the response.
+ public VMSSExtension(string name, string publisher, string type, string typeHandlerVersion, bool? autoUpgradeMinorVersion = default(bool?), object settings = default(object), object protectedSettings = default(object), string forceUpdateTag = default(string), IList provisionAfterExtensions = default(IList), string provisioningState = default(string))
{
Name = name;
- ForceUpdateTag = forceUpdateTag;
Publisher = publisher;
Type = type;
TypeHandlerVersion = typeHandlerVersion;
AutoUpgradeMinorVersion = autoUpgradeMinorVersion;
Settings = settings;
ProtectedSettings = protectedSettings;
- ProvisioningState = provisioningState;
+ ForceUpdateTag = forceUpdateTag;
ProvisionAfterExtensions = provisionAfterExtensions;
+ ProvisioningState = provisioningState;
CustomInit();
}
@@ -86,14 +86,6 @@ public VMSSExtension()
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
- ///
- /// Gets or sets if a value is provided and is different from the
- /// previous value, the extension handler will be forced to update even
- /// if the extension configuration has not changed.
- ///
- [JsonProperty(PropertyName = "properties.forceUpdateTag")]
- public string ForceUpdateTag { get; set; }
-
///
/// Gets or sets the name of the extension handler publisher.
///
@@ -136,10 +128,12 @@ public VMSSExtension()
public object ProtectedSettings { get; set; }
///
- /// Gets the provisioning state, which only appears in the response.
+ /// Gets or sets if a value is provided and is different from the
+ /// previous value, the extension handler will be forced to update even
+ /// if the extension configuration has not changed.
///
- [JsonProperty(PropertyName = "properties.provisioningState")]
- public string ProvisioningState { get; private set; }
+ [JsonProperty(PropertyName = "properties.forceUpdateTag")]
+ public string ForceUpdateTag { get; set; }
///
/// Gets or sets collection of extension names after which this
@@ -148,6 +142,12 @@ public VMSSExtension()
[JsonProperty(PropertyName = "properties.provisionAfterExtensions")]
public IList ProvisionAfterExtensions { get; set; }
+ ///
+ /// Gets the provisioning state, which only appears in the response.
+ ///
+ [JsonProperty(PropertyName = "properties.provisioningState")]
+ public string ProvisioningState { get; private set; }
+
///
/// Validate the object.
///
diff --git a/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/src/Generated/SdkInfo_ServiceFabricManagementClient.cs b/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/src/Generated/SdkInfo_ServiceFabricManagementClient.cs
index b746b3bd8f04..005177d499cb 100644
--- a/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/src/Generated/SdkInfo_ServiceFabricManagementClient.cs
+++ b/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/src/Generated/SdkInfo_ServiceFabricManagementClient.cs
@@ -33,16 +33,5 @@ public static IEnumerable> ApiInfo_ServiceFabricMa
}.AsEnumerable();
}
}
- // BEGIN: Code Generation Metadata Section
- public static readonly String AutoRestVersion = "v2";
- public static readonly String AutoRestBootStrapperVersion = "autorest@2.0.4413";
- public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/servicefabric/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=E:\\code\\azure-sdk-for-net\\sdk";
- public static readonly String GithubForkName = "Azure";
- public static readonly String GithubBranchName = "master";
- public static readonly String GithubCommidId = "4873ee82eef44772dec2b6c26d9b5a094c393b21";
- public static readonly String CodeGenerationErrors = "";
- public static readonly String GithubRepoName = "azure-rest-api-specs";
- // END: Code Generation Metadata Section
}
}
-