Пример #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;
 }
 public PSAutoPauseProperties(AutoPauseProperties autoPause)
 {
     this.DelayInMinutes = autoPause?.DelayInMinutes;
     this.Enabled        = autoPause?.Enabled;
 }