Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR hdinsight/resource-manager] HDI add autoscale feature support #5049

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions profiles/preview/preview/hdinsight/mgmt/hdinsight/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,18 @@ const (
ClusterProvisioningStateSucceeded ClusterProvisioningState = original.ClusterProvisioningStateSucceeded
)

type DaysOfWeek = original.DaysOfWeek

const (
Friday DaysOfWeek = original.Friday
Monday DaysOfWeek = original.Monday
Saturday DaysOfWeek = original.Saturday
Sunday DaysOfWeek = original.Sunday
Thursday DaysOfWeek = original.Thursday
Tuesday DaysOfWeek = original.Tuesday
Wednesday DaysOfWeek = original.Wednesday
)

type DirectoryType = original.DirectoryType

const (
Expand Down Expand Up @@ -94,6 +106,11 @@ type ApplicationProperties = original.ApplicationProperties
type ApplicationsClient = original.ApplicationsClient
type ApplicationsCreateFuture = original.ApplicationsCreateFuture
type ApplicationsDeleteFuture = original.ApplicationsDeleteFuture
type Autoscale = original.Autoscale
type AutoscaleCapacity = original.AutoscaleCapacity
type AutoscaleRecurrence = original.AutoscaleRecurrence
type AutoscaleSchedule = original.AutoscaleSchedule
type AutoscaleTimeAndCapacity = original.AutoscaleTimeAndCapacity
type BaseClient = original.BaseClient
type Cluster = original.Cluster
type ClusterConfigurations = original.ClusterConfigurations
Expand Down Expand Up @@ -267,6 +284,9 @@ func PossibleAsyncOperationStateValues() []AsyncOperationState {
func PossibleClusterProvisioningStateValues() []ClusterProvisioningState {
return original.PossibleClusterProvisioningStateValues()
}
func PossibleDaysOfWeekValues() []DaysOfWeek {
return original.PossibleDaysOfWeekValues()
}
func PossibleDirectoryTypeValues() []DirectoryType {
return original.PossibleDirectoryTypeValues()
}
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.