1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
|
package insights
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
//
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is regenerated.
// ApplicationType enumerates the values for application type.
type ApplicationType string
const (
// Other ...
Other ApplicationType = "other"
// Web ...
Web ApplicationType = "web"
)
// PossibleApplicationTypeValues returns an array of possible values for the ApplicationType const type.
func PossibleApplicationTypeValues() []ApplicationType {
return []ApplicationType{Other, Web}
}
// CategoryType enumerates the values for category type.
type CategoryType string
const (
// CategoryTypePerformance ...
CategoryTypePerformance CategoryType = "performance"
// CategoryTypeRetention ...
CategoryTypeRetention CategoryType = "retention"
// CategoryTypeTSG ...
CategoryTypeTSG CategoryType = "TSG"
// CategoryTypeWorkbook ...
CategoryTypeWorkbook CategoryType = "workbook"
)
// PossibleCategoryTypeValues returns an array of possible values for the CategoryType const type.
func PossibleCategoryTypeValues() []CategoryType {
return []CategoryType{CategoryTypePerformance, CategoryTypeRetention, CategoryTypeTSG, CategoryTypeWorkbook}
}
// FavoriteSourceType enumerates the values for favorite source type.
type FavoriteSourceType string
const (
// Events ...
Events FavoriteSourceType = "events"
// Funnel ...
Funnel FavoriteSourceType = "funnel"
// Impact ...
Impact FavoriteSourceType = "impact"
// Notebook ...
Notebook FavoriteSourceType = "notebook"
// Retention ...
Retention FavoriteSourceType = "retention"
// Segmentation ...
Segmentation FavoriteSourceType = "segmentation"
// Sessions ...
Sessions FavoriteSourceType = "sessions"
// Userflows ...
Userflows FavoriteSourceType = "userflows"
)
// PossibleFavoriteSourceTypeValues returns an array of possible values for the FavoriteSourceType const type.
func PossibleFavoriteSourceTypeValues() []FavoriteSourceType {
return []FavoriteSourceType{Events, Funnel, Impact, Notebook, Retention, Segmentation, Sessions, Userflows}
}
// FavoriteType enumerates the values for favorite type.
type FavoriteType string
const (
// Shared ...
Shared FavoriteType = "shared"
// User ...
User FavoriteType = "user"
)
// PossibleFavoriteTypeValues returns an array of possible values for the FavoriteType const type.
func PossibleFavoriteTypeValues() []FavoriteType {
return []FavoriteType{Shared, User}
}
// FlowType enumerates the values for flow type.
type FlowType string
const (
// Bluefield ...
Bluefield FlowType = "Bluefield"
)
// PossibleFlowTypeValues returns an array of possible values for the FlowType const type.
func PossibleFlowTypeValues() []FlowType {
return []FlowType{Bluefield}
}
// IngestionMode enumerates the values for ingestion mode.
type IngestionMode string
const (
// ApplicationInsights ...
ApplicationInsights IngestionMode = "ApplicationInsights"
// ApplicationInsightsWithDiagnosticSettings ...
ApplicationInsightsWithDiagnosticSettings IngestionMode = "ApplicationInsightsWithDiagnosticSettings"
// LogAnalytics ...
LogAnalytics IngestionMode = "LogAnalytics"
)
// PossibleIngestionModeValues returns an array of possible values for the IngestionMode const type.
func PossibleIngestionModeValues() []IngestionMode {
return []IngestionMode{ApplicationInsights, ApplicationInsightsWithDiagnosticSettings, LogAnalytics}
}
// ItemScope enumerates the values for item scope.
type ItemScope string
const (
// ItemScopeShared ...
ItemScopeShared ItemScope = "shared"
// ItemScopeUser ...
ItemScopeUser ItemScope = "user"
)
// PossibleItemScopeValues returns an array of possible values for the ItemScope const type.
func PossibleItemScopeValues() []ItemScope {
return []ItemScope{ItemScopeShared, ItemScopeUser}
}
// ItemScopePath enumerates the values for item scope path.
type ItemScopePath string
const (
// AnalyticsItems ...
AnalyticsItems ItemScopePath = "analyticsItems"
// MyanalyticsItems ...
MyanalyticsItems ItemScopePath = "myanalyticsItems"
)
// PossibleItemScopePathValues returns an array of possible values for the ItemScopePath const type.
func PossibleItemScopePathValues() []ItemScopePath {
return []ItemScopePath{AnalyticsItems, MyanalyticsItems}
}
// ItemType enumerates the values for item type.
type ItemType string
const (
// Folder ...
Folder ItemType = "folder"
// Function ...
Function ItemType = "function"
// Query ...
Query ItemType = "query"
// Recent ...
Recent ItemType = "recent"
)
// PossibleItemTypeValues returns an array of possible values for the ItemType const type.
func PossibleItemTypeValues() []ItemType {
return []ItemType{Folder, Function, Query, Recent}
}
// ItemTypeParameter enumerates the values for item type parameter.
type ItemTypeParameter string
const (
// ItemTypeParameterFolder ...
ItemTypeParameterFolder ItemTypeParameter = "folder"
// ItemTypeParameterFunction ...
ItemTypeParameterFunction ItemTypeParameter = "function"
// ItemTypeParameterNone ...
ItemTypeParameterNone ItemTypeParameter = "none"
// ItemTypeParameterQuery ...
ItemTypeParameterQuery ItemTypeParameter = "query"
// ItemTypeParameterRecent ...
ItemTypeParameterRecent ItemTypeParameter = "recent"
)
// PossibleItemTypeParameterValues returns an array of possible values for the ItemTypeParameter const type.
func PossibleItemTypeParameterValues() []ItemTypeParameter {
return []ItemTypeParameter{ItemTypeParameterFolder, ItemTypeParameterFunction, ItemTypeParameterNone, ItemTypeParameterQuery, ItemTypeParameterRecent}
}
// PurgeState enumerates the values for purge state.
type PurgeState string
const (
// Completed ...
Completed PurgeState = "completed"
// Pending ...
Pending PurgeState = "pending"
)
// PossiblePurgeStateValues returns an array of possible values for the PurgeState const type.
func PossiblePurgeStateValues() []PurgeState {
return []PurgeState{Completed, Pending}
}
// RequestSource enumerates the values for request source.
type RequestSource string
const (
// Rest ...
Rest RequestSource = "rest"
)
// PossibleRequestSourceValues returns an array of possible values for the RequestSource const type.
func PossibleRequestSourceValues() []RequestSource {
return []RequestSource{Rest}
}
// SharedTypeKind enumerates the values for shared type kind.
type SharedTypeKind string
const (
// SharedTypeKindShared ...
SharedTypeKindShared SharedTypeKind = "shared"
// SharedTypeKindUser ...
SharedTypeKindUser SharedTypeKind = "user"
)
// PossibleSharedTypeKindValues returns an array of possible values for the SharedTypeKind const type.
func PossibleSharedTypeKindValues() []SharedTypeKind {
return []SharedTypeKind{SharedTypeKindShared, SharedTypeKindUser}
}
// WebTestKind enumerates the values for web test kind.
type WebTestKind string
const (
// Multistep ...
Multistep WebTestKind = "multistep"
// Ping ...
Ping WebTestKind = "ping"
)
// PossibleWebTestKindValues returns an array of possible values for the WebTestKind const type.
func PossibleWebTestKindValues() []WebTestKind {
return []WebTestKind{Multistep, Ping}
}
|