Esempio n. 1
0
 internal SynapseSparkProperties(AutoScaleProperties autoScaleProperties, AutoPauseProperties autoPauseProperties, string sparkVersion, int?nodeCount, string nodeSize, string nodeSizeFamily, string subscriptionId, string resourceGroup, string workspaceName, string poolName)
 {
     AutoScaleProperties = autoScaleProperties;
     AutoPauseProperties = autoPauseProperties;
     SparkVersion        = sparkVersion;
     NodeCount           = nodeCount;
     NodeSize            = nodeSize;
     NodeSizeFamily      = nodeSizeFamily;
     SubscriptionId      = subscriptionId;
     ResourceGroup       = resourceGroup;
     WorkspaceName       = workspaceName;
     PoolName            = poolName;
 }
Esempio n. 2
0
 public PSAutoScaleProperties(AutoScaleProperties autoScale)
 {
     this.MinNodeCount = autoScale?.MinNodeCount;
     this.Enabled      = autoScale?.Enabled;
     this.MaxNodeCount = autoScale?.MaxNodeCount;
 }