Skip to content

[AutoPR timeseriesinsights/resource-manager] updating with warm store features #6161

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

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
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ type SkuName = original.SkuName

const (
L1 SkuName = original.L1
P1 SkuName = original.P1
S1 SkuName = original.S1
S2 SkuName = original.S2
)
Expand All @@ -134,6 +135,14 @@ const (
PurgeOldData StorageLimitExceededBehavior = original.PurgeOldData
)

type WarmStoragePropertiesState = original.WarmStoragePropertiesState

const (
WarmStoragePropertiesStateError WarmStoragePropertiesState = original.WarmStoragePropertiesStateError
WarmStoragePropertiesStateOk WarmStoragePropertiesState = original.WarmStoragePropertiesStateOk
WarmStoragePropertiesStateUnknown WarmStoragePropertiesState = original.WarmStoragePropertiesStateUnknown
)

type AccessPoliciesClient = original.AccessPoliciesClient
type AccessPolicyCreateOrUpdateParameters = original.AccessPolicyCreateOrUpdateParameters
type AccessPolicyListResponse = original.AccessPolicyListResponse
Expand Down Expand Up @@ -220,6 +229,10 @@ type StandardEnvironmentResourceProperties = original.StandardEnvironmentResourc
type StandardEnvironmentUpdateParameters = original.StandardEnvironmentUpdateParameters
type TimeSeriesIDProperty = original.TimeSeriesIDProperty
type TrackedResource = original.TrackedResource
type WarmStorageEnvironmentStatus = original.WarmStorageEnvironmentStatus
type WarmStoragePropertiesUsage = original.WarmStoragePropertiesUsage
type WarmStoragePropertiesUsageStateDetails = original.WarmStoragePropertiesUsageStateDetails
type WarmStoreConfigurationProperties = original.WarmStoreConfigurationProperties

func New(subscriptionID string) BaseClient {
return original.New(subscriptionID)
Expand Down Expand Up @@ -302,6 +315,9 @@ func PossibleSkuNameValues() []SkuName {
func PossibleStorageLimitExceededBehaviorValues() []StorageLimitExceededBehavior {
return original.PossibleStorageLimitExceededBehaviorValues()
}
func PossibleWarmStoragePropertiesStateValues() []WarmStoragePropertiesState {
return original.PossibleWarmStoragePropertiesStateValues()
}
func UserAgent() string {
return original.UserAgent() + " profiles/preview"
}
Expand Down

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

Loading