Exemple #1
0
 internal ThroughputSettingsResource(int?throughput, AutoscaleSettingsResource autoscaleSettings, string minimumThroughput, string offerReplacePending)
 {
     Throughput          = throughput;
     AutoscaleSettings   = autoscaleSettings;
     MinimumThroughput   = minimumThroughput;
     OfferReplacePending = offerReplacePending;
 }
        public PSAutoscaleSettingsResource(AutoscaleSettingsResource autoscaleSettings)
        {
            if (autoscaleSettings == null)
            {
                return;
            }

            MaxThroughput       = autoscaleSettings.MaxThroughput;
            TargetMaxThroughput = autoscaleSettings.TargetMaxThroughput;
        }
Exemple #3
0
 internal ThroughputSettingsGetPropertiesResource(int?throughput, AutoscaleSettingsResource autoscaleSettings, string minimumThroughput, string offerReplacePending, string rid, object ts, string etag) : base(throughput, autoscaleSettings, minimumThroughput, offerReplacePending)
 {
     Rid  = rid;
     Ts   = ts;
     Etag = etag;
 }