@@ -2465,33 +2465,33 @@ type TimelineAttempt struct {
2465
2465
}
2466
2466
2467
2467
type TimelineRecord struct {
2468
- Attempt * int `json:"attempt,omitempty"`
2469
- ChangeId * int `json:"changeId,omitempty"`
2470
- CurrentOperation * string `json:"currentOperation,omitempty"`
2471
- Details * TimelineReference `json:"details,omitempty"`
2472
- ErrorCount * int `json:"errorCount,omitempty"`
2473
- FinishTime * azuredevops.Time `json:"finishTime,omitempty"`
2474
- Id * uuid.UUID `json:"id,omitempty"`
2475
- Identifier * string `json:"identifier,omitempty"`
2476
- Issues * []Issue `json:"issues,omitempty"`
2477
- LastModified * azuredevops.Time `json:"lastModified,omitempty"`
2478
- Location * string `json:"location,omitempty"`
2479
- Log * TaskLogReference `json:"log,omitempty"`
2480
- Name * string `json:"name,omitempty"`
2481
- Order * int `json:"order,omitempty"`
2482
- ParentId * uuid.UUID `json:"parentId,omitempty"`
2483
- PercentComplete * int `json:"percentComplete,omitempty"`
2484
- PreviousAttempts * []TimelineAttempt `json:"previousAttempts,omitempty"`
2485
- RefName * string `json:"refName,omitempty"`
2486
- Result * TaskResult `json:"result,omitempty"`
2487
- ResultCode * string `json:"resultCode,omitempty"`
2488
- StartTime * azuredevops.Time `json:"startTime,omitempty"`
2489
- State * TimelineRecordState `json:"state,omitempty"`
2490
- Task * TaskReference `json:"task,omitempty"`
2491
- Type * string `json:"type,omitempty"`
2492
- Variables * map [string ]VariableValue `json:"variables,omitempty"`
2493
- WarningCount * int `json:"warningCount,omitempty"`
2494
- WorkerName * string `json:"workerName,omitempty"`
2468
+ Attempt * int `json:"attempt,omitempty"`
2469
+ ChangeId * int `json:"changeId,omitempty"`
2470
+ CurrentOperation * string `json:"currentOperation,omitempty"`
2471
+ Details * TimelineReference `json:"details,omitempty"`
2472
+ ErrorCount * int `json:"errorCount,omitempty"`
2473
+ FinishTime * azuredevops.Time `json:"finishTime,omitempty"`
2474
+ Id * uuid.UUID `json:"id,omitempty"`
2475
+ Identifier * string `json:"identifier,omitempty"`
2476
+ Issues * []Issue `json:"issues,omitempty"`
2477
+ LastModified * azuredevops.Time `json:"lastModified,omitempty"`
2478
+ Location * string `json:"location,omitempty"`
2479
+ Log * TaskLogReference `json:"log,omitempty"`
2480
+ Name * string `json:"name,omitempty"`
2481
+ Order * int `json:"order,omitempty"`
2482
+ ParentId * uuid.UUID `json:"parentId,omitempty"`
2483
+ PercentComplete * int `json:"percentComplete,omitempty"`
2484
+ PreviousAttempts * []TimelineAttempt `json:"previousAttempts,omitempty"`
2485
+ RefName * string `json:"refName,omitempty"`
2486
+ Result * TaskResult `json:"result,omitempty"`
2487
+ ResultCode * string `json:"resultCode,omitempty"`
2488
+ StartTime * azuredevops.Time `json:"startTime,omitempty"`
2489
+ State * TimelineRecordState `json:"state,omitempty"`
2490
+ Task * TaskReference `json:"task,omitempty"`
2491
+ Type * string `json:"type,omitempty"`
2492
+ Variables * map [string ]interface {} `json:"variables,omitempty"`
2493
+ WarningCount * int `json:"warningCount,omitempty"`
2494
+ WorkerName * string `json:"workerName,omitempty"`
2495
2495
}
2496
2496
2497
2497
type TimelineRecordFeedLinesWrapper struct {
@@ -2550,11 +2550,11 @@ type VariableGroup struct {
2550
2550
// Gets or sets name of the variable group.
2551
2551
Name * string `json:"name,omitempty"`
2552
2552
// Gets or sets provider data.
2553
- ProviderData * VariableGroupProviderData `json:"providerData,omitempty"`
2553
+ ProviderData interface {} `json:"providerData,omitempty"`
2554
2554
// Gets or sets type of the variable group.
2555
2555
Type * string `json:"type,omitempty"`
2556
2556
// Gets or sets variables contained in the variable group.
2557
- Variables * map [string ]VariableValue `json:"variables,omitempty"`
2557
+ Variables * map [string ]interface {} `json:"variables,omitempty"`
2558
2558
}
2559
2559
2560
2560
// [Flags]
@@ -2578,11 +2578,11 @@ type VariableGroupParameters struct {
2578
2578
// Sets name of the variable group.
2579
2579
Name * string `json:"name,omitempty"`
2580
2580
// Sets provider data.
2581
- ProviderData * VariableGroupProviderData `json:"providerData,omitempty"`
2581
+ ProviderData interface {} `json:"providerData,omitempty"`
2582
2582
// Sets type of the variable group.
2583
2583
Type * string `json:"type,omitempty"`
2584
2584
// Sets variables contained in the variable group.
2585
- Variables * map [string ]VariableValue `json:"variables,omitempty"`
2585
+ Variables * map [string ]interface {} `json:"variables,omitempty"`
2586
2586
}
2587
2587
2588
2588
// Defines provider data of the variable group.
0 commit comments