Skip to content

Commit

Permalink
CodeGen from PR 24049 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Merge 39132a4523136d91929f50088d6cf6ab747442c1 into 3680d2096a649d6824c364c2d98db56e0a239c8e
  • Loading branch information
SDKAuto committed May 25, 2023
1 parent 8758c5e commit d30185a
Show file tree
Hide file tree
Showing 14 changed files with 440 additions and 39 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1244,6 +1244,13 @@ public ColumnTransformer() { }
public System.Collections.Generic.IList<string> Fields { get { throw null; } set { } }
public System.BinaryData Parameters { get { throw null; } set { } }
}
public partial class Cron
{
public Cron() { }
public string Expression { get { throw null; } set { } }
public string StartTime { get { throw null; } set { } }
public string TimeZone { get { throw null; } set { } }
}
public partial class CronTrigger : Azure.ResourceManager.MachineLearning.Models.MachineLearningTriggerBase
{
public CronTrigger(string expression) { }
Expand Down Expand Up @@ -2031,7 +2038,7 @@ public MachineLearningComputeInstanceProperties() { }
public System.Collections.Generic.IReadOnlyList<Azure.ResourceManager.MachineLearning.Models.MachineLearningError> Errors { get { throw null; } }
public Azure.ResourceManager.MachineLearning.Models.MachineLearningComputeInstanceLastOperation LastOperation { get { throw null; } }
public Azure.ResourceManager.MachineLearning.Models.MachineLearningComputeInstanceAssignedUser PersonalComputeInstanceAssignedUser { get { throw null; } set { } }
public System.Collections.Generic.IReadOnlyList<Azure.ResourceManager.MachineLearning.Models.MachineLearningComputeStartStopSchedule> SchedulesComputeStartStop { get { throw null; } }
public System.Collections.Generic.IList<Azure.ResourceManager.MachineLearning.Models.MachineLearningComputeStartStopSchedule> SchedulesComputeStartStop { get { throw null; } }
public Azure.ResourceManager.MachineLearning.Models.MachineLearningScriptsToExecute Scripts { get { throw null; } set { } }
public Azure.ResourceManager.MachineLearning.Models.MachineLearningComputeInstanceSshSettings SshSettings { get { throw null; } set { } }
public Azure.ResourceManager.MachineLearning.Models.MachineLearningComputeInstanceState? State { get { throw null; } }
Expand Down Expand Up @@ -2139,15 +2146,15 @@ protected MachineLearningComputeSecrets() { }
}
public partial class MachineLearningComputeStartStopSchedule
{
internal MachineLearningComputeStartStopSchedule() { }
public Azure.ResourceManager.MachineLearning.Models.MachineLearningComputePowerAction? Action { get { throw null; } }
public Azure.ResourceManager.MachineLearning.Models.CronTrigger Cron { get { throw null; } }
public MachineLearningComputeStartStopSchedule() { }
public Azure.ResourceManager.MachineLearning.Models.MachineLearningComputePowerAction? Action { get { throw null; } set { } }
public Azure.ResourceManager.MachineLearning.Models.Cron Cron { get { throw null; } set { } }
public string Id { get { throw null; } }
public Azure.ResourceManager.MachineLearning.Models.MachineLearningComputeProvisioningStatus? ProvisioningStatus { get { throw null; } }
public Azure.ResourceManager.MachineLearning.Models.MachineLearningRecurrenceTrigger Recurrence { get { throw null; } }
public Azure.ResourceManager.MachineLearning.Models.MachineLearningScheduleBase Schedule { get { throw null; } }
public Azure.ResourceManager.MachineLearning.Models.MachineLearningScheduleStatus? Status { get { throw null; } }
public Azure.ResourceManager.MachineLearning.Models.MachineLearningTriggerType? TriggerType { get { throw null; } }
public Azure.ResourceManager.MachineLearning.Models.Recurrence Recurrence { get { throw null; } set { } }
public Azure.ResourceManager.MachineLearning.Models.MachineLearningScheduleBase Schedule { get { throw null; } set { } }
public Azure.ResourceManager.MachineLearning.Models.MachineLearningScheduleStatus? Status { get { throw null; } set { } }
public Azure.ResourceManager.MachineLearning.Models.MachineLearningTriggerType? TriggerType { get { throw null; } set { } }
}
public partial class MachineLearningComputeSystemService
{
Expand Down Expand Up @@ -3673,10 +3680,10 @@ protected MachineLearningScheduleAction() { }
}
public partial class MachineLearningScheduleBase
{
internal MachineLearningScheduleBase() { }
public string Id { get { throw null; } }
public Azure.ResourceManager.MachineLearning.Models.MachineLearningScheduleProvisioningState? ProvisioningStatus { get { throw null; } }
public Azure.ResourceManager.MachineLearning.Models.MachineLearningScheduleStatus? Status { get { throw null; } }
public MachineLearningScheduleBase() { }
public string Id { get { throw null; } set { } }
public Azure.ResourceManager.MachineLearning.Models.MachineLearningScheduleProvisioningState? ProvisioningStatus { get { throw null; } set { } }
public Azure.ResourceManager.MachineLearning.Models.MachineLearningScheduleStatus? Status { get { throw null; } set { } }
}
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
public readonly partial struct MachineLearningScheduleListViewType : System.IEquatable<Azure.ResourceManager.MachineLearning.Models.MachineLearningScheduleListViewType>
Expand Down Expand Up @@ -4589,6 +4596,15 @@ public RandomSamplingAlgorithm() { }
public static bool operator !=(Azure.ResourceManager.MachineLearning.Models.RandomSamplingAlgorithmRule left, Azure.ResourceManager.MachineLearning.Models.RandomSamplingAlgorithmRule right) { throw null; }
public override string ToString() { throw null; }
}
public partial class Recurrence
{
public Recurrence() { }
public Azure.ResourceManager.MachineLearning.Models.MachineLearningRecurrenceFrequency? Frequency { get { throw null; } set { } }
public int? Interval { get { throw null; } set { } }
public Azure.ResourceManager.MachineLearning.Models.MachineLearningRecurrenceSchedule Schedule { get { throw null; } set { } }
public string StartTime { get { throw null; } set { } }
public string TimeZone { get { throw null; } set { } }
}
public partial class RegressionTrainingSettings : Azure.ResourceManager.MachineLearning.Models.MachineLearningTrainingSettings
{
public RegressionTrainingSettings() { }
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit d30185a

Please sign in to comment.