forked from Azure/azure-sdk-for-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
models.go
5094 lines (4666 loc) · 182 KB
/
models.go
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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package containerregistry
// 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.
import (
"context"
"encoding/json"
"github.com/Azure/go-autorest/autorest"
"github.com/Azure/go-autorest/autorest/azure"
"github.com/Azure/go-autorest/autorest/date"
"github.com/Azure/go-autorest/autorest/to"
"github.com/Azure/go-autorest/tracing"
"net/http"
)
// The package's fully qualified name.
const fqdn = "github.com/Azure/azure-sdk-for-go/services/containerregistry/mgmt/2019-05-01/containerregistry"
// Actor the agent that initiated the event. For most situations, this could be from the authorization
// context of the request.
type Actor struct {
// Name - The subject or username associated with the request context that generated the event.
Name *string `json:"name,omitempty"`
}
// AgentProperties the properties that determine the run agent configuration.
type AgentProperties struct {
// CPU - The CPU configuration in terms of number of cores required for the run.
CPU *int32 `json:"cpu,omitempty"`
}
// Argument the properties of a run argument.
type Argument struct {
// Name - The name of the argument.
Name *string `json:"name,omitempty"`
// Value - The value of the argument.
Value *string `json:"value,omitempty"`
// IsSecret - Flag to indicate whether the argument represents a secret and want to be removed from build logs.
IsSecret *bool `json:"isSecret,omitempty"`
}
// AuthInfo the authorization properties for accessing the source code repository.
type AuthInfo struct {
// TokenType - The type of Auth token. Possible values include: 'PAT', 'OAuth'
TokenType TokenType `json:"tokenType,omitempty"`
// Token - The access token used to access the source control provider.
Token *string `json:"token,omitempty"`
// RefreshToken - The refresh token used to refresh the access token.
RefreshToken *string `json:"refreshToken,omitempty"`
// Scope - The scope of the access token.
Scope *string `json:"scope,omitempty"`
// ExpiresIn - Time in seconds that the token remains valid
ExpiresIn *int32 `json:"expiresIn,omitempty"`
}
// AuthInfoUpdateParameters the authorization properties for accessing the source code repository.
type AuthInfoUpdateParameters struct {
// TokenType - The type of Auth token. Possible values include: 'PAT', 'OAuth'
TokenType TokenType `json:"tokenType,omitempty"`
// Token - The access token used to access the source control provider.
Token *string `json:"token,omitempty"`
// RefreshToken - The refresh token used to refresh the access token.
RefreshToken *string `json:"refreshToken,omitempty"`
// Scope - The scope of the access token.
Scope *string `json:"scope,omitempty"`
// ExpiresIn - Time in seconds that the token remains valid
ExpiresIn *int32 `json:"expiresIn,omitempty"`
}
// BaseImageDependency properties that describe a base image dependency.
type BaseImageDependency struct {
// Type - The type of the base image dependency. Possible values include: 'BuildTime', 'RunTime'
Type BaseImageDependencyType `json:"type,omitempty"`
// Registry - The registry login server.
Registry *string `json:"registry,omitempty"`
// Repository - The repository name.
Repository *string `json:"repository,omitempty"`
// Tag - The tag name.
Tag *string `json:"tag,omitempty"`
// Digest - The sha256-based digest of the image manifest.
Digest *string `json:"digest,omitempty"`
}
// BaseImageTrigger the trigger based on base image dependency.
type BaseImageTrigger struct {
// BaseImageTriggerType - The type of the auto trigger for base image dependency updates. Possible values include: 'All', 'Runtime'
BaseImageTriggerType BaseImageTriggerType `json:"baseImageTriggerType,omitempty"`
// Status - The current status of trigger. Possible values include: 'TriggerStatusDisabled', 'TriggerStatusEnabled'
Status TriggerStatus `json:"status,omitempty"`
// Name - The name of the trigger.
Name *string `json:"name,omitempty"`
}
// BaseImageTriggerUpdateParameters the properties for updating base image dependency trigger.
type BaseImageTriggerUpdateParameters struct {
// BaseImageTriggerType - The type of the auto trigger for base image dependency updates. Possible values include: 'All', 'Runtime'
BaseImageTriggerType BaseImageTriggerType `json:"baseImageTriggerType,omitempty"`
// Status - The current status of trigger. Possible values include: 'TriggerStatusDisabled', 'TriggerStatusEnabled'
Status TriggerStatus `json:"status,omitempty"`
// Name - The name of the trigger.
Name *string `json:"name,omitempty"`
}
// CallbackConfig the configuration of service URI and custom headers for the webhook.
type CallbackConfig struct {
autorest.Response `json:"-"`
// ServiceURI - The service URI for the webhook to post notifications.
ServiceURI *string `json:"serviceUri,omitempty"`
// CustomHeaders - Custom headers that will be added to the webhook notifications.
CustomHeaders map[string]*string `json:"customHeaders"`
}
// MarshalJSON is the custom marshaler for CallbackConfig.
func (cc CallbackConfig) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if cc.ServiceURI != nil {
objectMap["serviceUri"] = cc.ServiceURI
}
if cc.CustomHeaders != nil {
objectMap["customHeaders"] = cc.CustomHeaders
}
return json.Marshal(objectMap)
}
// Credentials the parameters that describes a set of credentials that will be used when a run is invoked.
type Credentials struct {
// SourceRegistry - Describes the credential parameters for accessing the source registry.
SourceRegistry *SourceRegistryCredentials `json:"sourceRegistry,omitempty"`
// CustomRegistries - Describes the credential parameters for accessing other custom registries. The key
// for the dictionary item will be the registry login server (myregistry.azurecr.io) and
// the value of the item will be the registry credentials for accessing the registry.
CustomRegistries map[string]*CustomRegistryCredentials `json:"customRegistries"`
}
// MarshalJSON is the custom marshaler for Credentials.
func (c Credentials) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if c.SourceRegistry != nil {
objectMap["sourceRegistry"] = c.SourceRegistry
}
if c.CustomRegistries != nil {
objectMap["customRegistries"] = c.CustomRegistries
}
return json.Marshal(objectMap)
}
// CustomRegistryCredentials describes the credentials that will be used to access a custom registry during
// a run.
type CustomRegistryCredentials struct {
// UserName - The username for logging into the custom registry.
UserName *SecretObject `json:"userName,omitempty"`
// Password - The password for logging into the custom registry. The password is a secret
// object that allows multiple ways of providing the value for it.
Password *SecretObject `json:"password,omitempty"`
// Identity - Indicates the managed identity assigned to the custom credential. If a user-assigned identity
// this value is the Client ID. If a system-assigned identity, the value will be `system`. In
// the case of a system-assigned identity, the Client ID will be determined by the runner. This
// identity may be used to authenticate to key vault to retrieve credentials or it may be the only
// source of authentication used for accessing the registry.
Identity *string `json:"identity,omitempty"`
}
// DockerBuildRequest the parameters for a docker quick build.
type DockerBuildRequest struct {
// ImageNames - The fully qualified image names including the repository and tag.
ImageNames *[]string `json:"imageNames,omitempty"`
// IsPushEnabled - The value of this property indicates whether the image built should be pushed to the registry or not.
IsPushEnabled *bool `json:"isPushEnabled,omitempty"`
// NoCache - The value of this property indicates whether the image cache is enabled or not.
NoCache *bool `json:"noCache,omitempty"`
// DockerFilePath - The Docker file path relative to the source location.
DockerFilePath *string `json:"dockerFilePath,omitempty"`
// Target - The name of the target build stage for the docker build.
Target *string `json:"target,omitempty"`
// Arguments - The collection of override arguments to be used when executing the run.
Arguments *[]Argument `json:"arguments,omitempty"`
// Timeout - Run timeout in seconds.
Timeout *int32 `json:"timeout,omitempty"`
// Platform - The platform properties against which the run has to happen.
Platform *PlatformProperties `json:"platform,omitempty"`
// AgentConfiguration - The machine configuration of the run agent.
AgentConfiguration *AgentProperties `json:"agentConfiguration,omitempty"`
// SourceLocation - The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository.
// If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
SourceLocation *string `json:"sourceLocation,omitempty"`
// Credentials - The properties that describes a set of credentials that will be used when this run is invoked.
Credentials *Credentials `json:"credentials,omitempty"`
// IsArchiveEnabled - The value that indicates whether archiving is enabled for the run or not.
IsArchiveEnabled *bool `json:"isArchiveEnabled,omitempty"`
// Type - Possible values include: 'TypeRunRequest', 'TypeDockerBuildRequest', 'TypeFileTaskRunRequest', 'TypeTaskRunRequest', 'TypeEncodedTaskRunRequest'
Type Type `json:"type,omitempty"`
}
// MarshalJSON is the custom marshaler for DockerBuildRequest.
func (dbr DockerBuildRequest) MarshalJSON() ([]byte, error) {
dbr.Type = TypeDockerBuildRequest
objectMap := make(map[string]interface{})
if dbr.ImageNames != nil {
objectMap["imageNames"] = dbr.ImageNames
}
if dbr.IsPushEnabled != nil {
objectMap["isPushEnabled"] = dbr.IsPushEnabled
}
if dbr.NoCache != nil {
objectMap["noCache"] = dbr.NoCache
}
if dbr.DockerFilePath != nil {
objectMap["dockerFilePath"] = dbr.DockerFilePath
}
if dbr.Target != nil {
objectMap["target"] = dbr.Target
}
if dbr.Arguments != nil {
objectMap["arguments"] = dbr.Arguments
}
if dbr.Timeout != nil {
objectMap["timeout"] = dbr.Timeout
}
if dbr.Platform != nil {
objectMap["platform"] = dbr.Platform
}
if dbr.AgentConfiguration != nil {
objectMap["agentConfiguration"] = dbr.AgentConfiguration
}
if dbr.SourceLocation != nil {
objectMap["sourceLocation"] = dbr.SourceLocation
}
if dbr.Credentials != nil {
objectMap["credentials"] = dbr.Credentials
}
if dbr.IsArchiveEnabled != nil {
objectMap["isArchiveEnabled"] = dbr.IsArchiveEnabled
}
if dbr.Type != "" {
objectMap["type"] = dbr.Type
}
return json.Marshal(objectMap)
}
// AsDockerBuildRequest is the BasicRunRequest implementation for DockerBuildRequest.
func (dbr DockerBuildRequest) AsDockerBuildRequest() (*DockerBuildRequest, bool) {
return &dbr, true
}
// AsFileTaskRunRequest is the BasicRunRequest implementation for DockerBuildRequest.
func (dbr DockerBuildRequest) AsFileTaskRunRequest() (*FileTaskRunRequest, bool) {
return nil, false
}
// AsTaskRunRequest is the BasicRunRequest implementation for DockerBuildRequest.
func (dbr DockerBuildRequest) AsTaskRunRequest() (*TaskRunRequest, bool) {
return nil, false
}
// AsEncodedTaskRunRequest is the BasicRunRequest implementation for DockerBuildRequest.
func (dbr DockerBuildRequest) AsEncodedTaskRunRequest() (*EncodedTaskRunRequest, bool) {
return nil, false
}
// AsRunRequest is the BasicRunRequest implementation for DockerBuildRequest.
func (dbr DockerBuildRequest) AsRunRequest() (*RunRequest, bool) {
return nil, false
}
// AsBasicRunRequest is the BasicRunRequest implementation for DockerBuildRequest.
func (dbr DockerBuildRequest) AsBasicRunRequest() (BasicRunRequest, bool) {
return &dbr, true
}
// DockerBuildStep the Docker build step.
type DockerBuildStep struct {
// ImageNames - The fully qualified image names including the repository and tag.
ImageNames *[]string `json:"imageNames,omitempty"`
// IsPushEnabled - The value of this property indicates whether the image built should be pushed to the registry or not.
IsPushEnabled *bool `json:"isPushEnabled,omitempty"`
// NoCache - The value of this property indicates whether the image cache is enabled or not.
NoCache *bool `json:"noCache,omitempty"`
// DockerFilePath - The Docker file path relative to the source context.
DockerFilePath *string `json:"dockerFilePath,omitempty"`
// Target - The name of the target build stage for the docker build.
Target *string `json:"target,omitempty"`
// Arguments - The collection of override arguments to be used when executing this build step.
Arguments *[]Argument `json:"arguments,omitempty"`
// BaseImageDependencies - READ-ONLY; List of base image dependencies for a step.
BaseImageDependencies *[]BaseImageDependency `json:"baseImageDependencies,omitempty"`
// ContextPath - The URL(absolute or relative) of the source context for the task step.
ContextPath *string `json:"contextPath,omitempty"`
// ContextAccessToken - The token (git PAT or SAS token of storage account blob) associated with the context for a step.
ContextAccessToken *string `json:"contextAccessToken,omitempty"`
// Type - Possible values include: 'TypeTaskStepProperties', 'TypeDocker', 'TypeFileTask', 'TypeEncodedTask'
Type TypeBasicTaskStepProperties `json:"type,omitempty"`
}
// MarshalJSON is the custom marshaler for DockerBuildStep.
func (dbs DockerBuildStep) MarshalJSON() ([]byte, error) {
dbs.Type = TypeDocker
objectMap := make(map[string]interface{})
if dbs.ImageNames != nil {
objectMap["imageNames"] = dbs.ImageNames
}
if dbs.IsPushEnabled != nil {
objectMap["isPushEnabled"] = dbs.IsPushEnabled
}
if dbs.NoCache != nil {
objectMap["noCache"] = dbs.NoCache
}
if dbs.DockerFilePath != nil {
objectMap["dockerFilePath"] = dbs.DockerFilePath
}
if dbs.Target != nil {
objectMap["target"] = dbs.Target
}
if dbs.Arguments != nil {
objectMap["arguments"] = dbs.Arguments
}
if dbs.ContextPath != nil {
objectMap["contextPath"] = dbs.ContextPath
}
if dbs.ContextAccessToken != nil {
objectMap["contextAccessToken"] = dbs.ContextAccessToken
}
if dbs.Type != "" {
objectMap["type"] = dbs.Type
}
return json.Marshal(objectMap)
}
// AsDockerBuildStep is the BasicTaskStepProperties implementation for DockerBuildStep.
func (dbs DockerBuildStep) AsDockerBuildStep() (*DockerBuildStep, bool) {
return &dbs, true
}
// AsFileTaskStep is the BasicTaskStepProperties implementation for DockerBuildStep.
func (dbs DockerBuildStep) AsFileTaskStep() (*FileTaskStep, bool) {
return nil, false
}
// AsEncodedTaskStep is the BasicTaskStepProperties implementation for DockerBuildStep.
func (dbs DockerBuildStep) AsEncodedTaskStep() (*EncodedTaskStep, bool) {
return nil, false
}
// AsTaskStepProperties is the BasicTaskStepProperties implementation for DockerBuildStep.
func (dbs DockerBuildStep) AsTaskStepProperties() (*TaskStepProperties, bool) {
return nil, false
}
// AsBasicTaskStepProperties is the BasicTaskStepProperties implementation for DockerBuildStep.
func (dbs DockerBuildStep) AsBasicTaskStepProperties() (BasicTaskStepProperties, bool) {
return &dbs, true
}
// DockerBuildStepUpdateParameters the properties for updating a docker build step.
type DockerBuildStepUpdateParameters struct {
// ImageNames - The fully qualified image names including the repository and tag.
ImageNames *[]string `json:"imageNames,omitempty"`
// IsPushEnabled - The value of this property indicates whether the image built should be pushed to the registry or not.
IsPushEnabled *bool `json:"isPushEnabled,omitempty"`
// NoCache - The value of this property indicates whether the image cache is enabled or not.
NoCache *bool `json:"noCache,omitempty"`
// DockerFilePath - The Docker file path relative to the source context.
DockerFilePath *string `json:"dockerFilePath,omitempty"`
// Arguments - The collection of override arguments to be used when executing this build step.
Arguments *[]Argument `json:"arguments,omitempty"`
// Target - The name of the target build stage for the docker build.
Target *string `json:"target,omitempty"`
// ContextPath - The URL(absolute or relative) of the source context for the task step.
ContextPath *string `json:"contextPath,omitempty"`
// ContextAccessToken - The token (git PAT or SAS token of storage account blob) associated with the context for a step.
ContextAccessToken *string `json:"contextAccessToken,omitempty"`
// Type - Possible values include: 'TypeBasicTaskStepUpdateParametersTypeTaskStepUpdateParameters', 'TypeBasicTaskStepUpdateParametersTypeDocker', 'TypeBasicTaskStepUpdateParametersTypeFileTask', 'TypeBasicTaskStepUpdateParametersTypeEncodedTask'
Type TypeBasicTaskStepUpdateParameters `json:"type,omitempty"`
}
// MarshalJSON is the custom marshaler for DockerBuildStepUpdateParameters.
func (dbsup DockerBuildStepUpdateParameters) MarshalJSON() ([]byte, error) {
dbsup.Type = TypeBasicTaskStepUpdateParametersTypeDocker
objectMap := make(map[string]interface{})
if dbsup.ImageNames != nil {
objectMap["imageNames"] = dbsup.ImageNames
}
if dbsup.IsPushEnabled != nil {
objectMap["isPushEnabled"] = dbsup.IsPushEnabled
}
if dbsup.NoCache != nil {
objectMap["noCache"] = dbsup.NoCache
}
if dbsup.DockerFilePath != nil {
objectMap["dockerFilePath"] = dbsup.DockerFilePath
}
if dbsup.Arguments != nil {
objectMap["arguments"] = dbsup.Arguments
}
if dbsup.Target != nil {
objectMap["target"] = dbsup.Target
}
if dbsup.ContextPath != nil {
objectMap["contextPath"] = dbsup.ContextPath
}
if dbsup.ContextAccessToken != nil {
objectMap["contextAccessToken"] = dbsup.ContextAccessToken
}
if dbsup.Type != "" {
objectMap["type"] = dbsup.Type
}
return json.Marshal(objectMap)
}
// AsDockerBuildStepUpdateParameters is the BasicTaskStepUpdateParameters implementation for DockerBuildStepUpdateParameters.
func (dbsup DockerBuildStepUpdateParameters) AsDockerBuildStepUpdateParameters() (*DockerBuildStepUpdateParameters, bool) {
return &dbsup, true
}
// AsFileTaskStepUpdateParameters is the BasicTaskStepUpdateParameters implementation for DockerBuildStepUpdateParameters.
func (dbsup DockerBuildStepUpdateParameters) AsFileTaskStepUpdateParameters() (*FileTaskStepUpdateParameters, bool) {
return nil, false
}
// AsEncodedTaskStepUpdateParameters is the BasicTaskStepUpdateParameters implementation for DockerBuildStepUpdateParameters.
func (dbsup DockerBuildStepUpdateParameters) AsEncodedTaskStepUpdateParameters() (*EncodedTaskStepUpdateParameters, bool) {
return nil, false
}
// AsTaskStepUpdateParameters is the BasicTaskStepUpdateParameters implementation for DockerBuildStepUpdateParameters.
func (dbsup DockerBuildStepUpdateParameters) AsTaskStepUpdateParameters() (*TaskStepUpdateParameters, bool) {
return nil, false
}
// AsBasicTaskStepUpdateParameters is the BasicTaskStepUpdateParameters implementation for DockerBuildStepUpdateParameters.
func (dbsup DockerBuildStepUpdateParameters) AsBasicTaskStepUpdateParameters() (BasicTaskStepUpdateParameters, bool) {
return &dbsup, true
}
// EncodedTaskRunRequest the parameters for a quick task run request.
type EncodedTaskRunRequest struct {
// EncodedTaskContent - Base64 encoded value of the template/definition file content.
EncodedTaskContent *string `json:"encodedTaskContent,omitempty"`
// EncodedValuesContent - Base64 encoded value of the parameters/values file content.
EncodedValuesContent *string `json:"encodedValuesContent,omitempty"`
// Values - The collection of overridable values that can be passed when running a task.
Values *[]SetValue `json:"values,omitempty"`
// Timeout - Run timeout in seconds.
Timeout *int32 `json:"timeout,omitempty"`
// Platform - The platform properties against which the run has to happen.
Platform *PlatformProperties `json:"platform,omitempty"`
// AgentConfiguration - The machine configuration of the run agent.
AgentConfiguration *AgentProperties `json:"agentConfiguration,omitempty"`
// SourceLocation - The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository.
// If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
SourceLocation *string `json:"sourceLocation,omitempty"`
// Credentials - The properties that describes a set of credentials that will be used when this run is invoked.
Credentials *Credentials `json:"credentials,omitempty"`
// IsArchiveEnabled - The value that indicates whether archiving is enabled for the run or not.
IsArchiveEnabled *bool `json:"isArchiveEnabled,omitempty"`
// Type - Possible values include: 'TypeRunRequest', 'TypeDockerBuildRequest', 'TypeFileTaskRunRequest', 'TypeTaskRunRequest', 'TypeEncodedTaskRunRequest'
Type Type `json:"type,omitempty"`
}
// MarshalJSON is the custom marshaler for EncodedTaskRunRequest.
func (etrr EncodedTaskRunRequest) MarshalJSON() ([]byte, error) {
etrr.Type = TypeEncodedTaskRunRequest
objectMap := make(map[string]interface{})
if etrr.EncodedTaskContent != nil {
objectMap["encodedTaskContent"] = etrr.EncodedTaskContent
}
if etrr.EncodedValuesContent != nil {
objectMap["encodedValuesContent"] = etrr.EncodedValuesContent
}
if etrr.Values != nil {
objectMap["values"] = etrr.Values
}
if etrr.Timeout != nil {
objectMap["timeout"] = etrr.Timeout
}
if etrr.Platform != nil {
objectMap["platform"] = etrr.Platform
}
if etrr.AgentConfiguration != nil {
objectMap["agentConfiguration"] = etrr.AgentConfiguration
}
if etrr.SourceLocation != nil {
objectMap["sourceLocation"] = etrr.SourceLocation
}
if etrr.Credentials != nil {
objectMap["credentials"] = etrr.Credentials
}
if etrr.IsArchiveEnabled != nil {
objectMap["isArchiveEnabled"] = etrr.IsArchiveEnabled
}
if etrr.Type != "" {
objectMap["type"] = etrr.Type
}
return json.Marshal(objectMap)
}
// AsDockerBuildRequest is the BasicRunRequest implementation for EncodedTaskRunRequest.
func (etrr EncodedTaskRunRequest) AsDockerBuildRequest() (*DockerBuildRequest, bool) {
return nil, false
}
// AsFileTaskRunRequest is the BasicRunRequest implementation for EncodedTaskRunRequest.
func (etrr EncodedTaskRunRequest) AsFileTaskRunRequest() (*FileTaskRunRequest, bool) {
return nil, false
}
// AsTaskRunRequest is the BasicRunRequest implementation for EncodedTaskRunRequest.
func (etrr EncodedTaskRunRequest) AsTaskRunRequest() (*TaskRunRequest, bool) {
return nil, false
}
// AsEncodedTaskRunRequest is the BasicRunRequest implementation for EncodedTaskRunRequest.
func (etrr EncodedTaskRunRequest) AsEncodedTaskRunRequest() (*EncodedTaskRunRequest, bool) {
return &etrr, true
}
// AsRunRequest is the BasicRunRequest implementation for EncodedTaskRunRequest.
func (etrr EncodedTaskRunRequest) AsRunRequest() (*RunRequest, bool) {
return nil, false
}
// AsBasicRunRequest is the BasicRunRequest implementation for EncodedTaskRunRequest.
func (etrr EncodedTaskRunRequest) AsBasicRunRequest() (BasicRunRequest, bool) {
return &etrr, true
}
// EncodedTaskStep the properties of a encoded task step.
type EncodedTaskStep struct {
// EncodedTaskContent - Base64 encoded value of the template/definition file content.
EncodedTaskContent *string `json:"encodedTaskContent,omitempty"`
// EncodedValuesContent - Base64 encoded value of the parameters/values file content.
EncodedValuesContent *string `json:"encodedValuesContent,omitempty"`
// Values - The collection of overridable values that can be passed when running a task.
Values *[]SetValue `json:"values,omitempty"`
// BaseImageDependencies - READ-ONLY; List of base image dependencies for a step.
BaseImageDependencies *[]BaseImageDependency `json:"baseImageDependencies,omitempty"`
// ContextPath - The URL(absolute or relative) of the source context for the task step.
ContextPath *string `json:"contextPath,omitempty"`
// ContextAccessToken - The token (git PAT or SAS token of storage account blob) associated with the context for a step.
ContextAccessToken *string `json:"contextAccessToken,omitempty"`
// Type - Possible values include: 'TypeTaskStepProperties', 'TypeDocker', 'TypeFileTask', 'TypeEncodedTask'
Type TypeBasicTaskStepProperties `json:"type,omitempty"`
}
// MarshalJSON is the custom marshaler for EncodedTaskStep.
func (ets EncodedTaskStep) MarshalJSON() ([]byte, error) {
ets.Type = TypeEncodedTask
objectMap := make(map[string]interface{})
if ets.EncodedTaskContent != nil {
objectMap["encodedTaskContent"] = ets.EncodedTaskContent
}
if ets.EncodedValuesContent != nil {
objectMap["encodedValuesContent"] = ets.EncodedValuesContent
}
if ets.Values != nil {
objectMap["values"] = ets.Values
}
if ets.ContextPath != nil {
objectMap["contextPath"] = ets.ContextPath
}
if ets.ContextAccessToken != nil {
objectMap["contextAccessToken"] = ets.ContextAccessToken
}
if ets.Type != "" {
objectMap["type"] = ets.Type
}
return json.Marshal(objectMap)
}
// AsDockerBuildStep is the BasicTaskStepProperties implementation for EncodedTaskStep.
func (ets EncodedTaskStep) AsDockerBuildStep() (*DockerBuildStep, bool) {
return nil, false
}
// AsFileTaskStep is the BasicTaskStepProperties implementation for EncodedTaskStep.
func (ets EncodedTaskStep) AsFileTaskStep() (*FileTaskStep, bool) {
return nil, false
}
// AsEncodedTaskStep is the BasicTaskStepProperties implementation for EncodedTaskStep.
func (ets EncodedTaskStep) AsEncodedTaskStep() (*EncodedTaskStep, bool) {
return &ets, true
}
// AsTaskStepProperties is the BasicTaskStepProperties implementation for EncodedTaskStep.
func (ets EncodedTaskStep) AsTaskStepProperties() (*TaskStepProperties, bool) {
return nil, false
}
// AsBasicTaskStepProperties is the BasicTaskStepProperties implementation for EncodedTaskStep.
func (ets EncodedTaskStep) AsBasicTaskStepProperties() (BasicTaskStepProperties, bool) {
return &ets, true
}
// EncodedTaskStepUpdateParameters the properties for updating encoded task step.
type EncodedTaskStepUpdateParameters struct {
// EncodedTaskContent - Base64 encoded value of the template/definition file content.
EncodedTaskContent *string `json:"encodedTaskContent,omitempty"`
// EncodedValuesContent - Base64 encoded value of the parameters/values file content.
EncodedValuesContent *string `json:"encodedValuesContent,omitempty"`
// Values - The collection of overridable values that can be passed when running a task.
Values *[]SetValue `json:"values,omitempty"`
// ContextPath - The URL(absolute or relative) of the source context for the task step.
ContextPath *string `json:"contextPath,omitempty"`
// ContextAccessToken - The token (git PAT or SAS token of storage account blob) associated with the context for a step.
ContextAccessToken *string `json:"contextAccessToken,omitempty"`
// Type - Possible values include: 'TypeBasicTaskStepUpdateParametersTypeTaskStepUpdateParameters', 'TypeBasicTaskStepUpdateParametersTypeDocker', 'TypeBasicTaskStepUpdateParametersTypeFileTask', 'TypeBasicTaskStepUpdateParametersTypeEncodedTask'
Type TypeBasicTaskStepUpdateParameters `json:"type,omitempty"`
}
// MarshalJSON is the custom marshaler for EncodedTaskStepUpdateParameters.
func (etsup EncodedTaskStepUpdateParameters) MarshalJSON() ([]byte, error) {
etsup.Type = TypeBasicTaskStepUpdateParametersTypeEncodedTask
objectMap := make(map[string]interface{})
if etsup.EncodedTaskContent != nil {
objectMap["encodedTaskContent"] = etsup.EncodedTaskContent
}
if etsup.EncodedValuesContent != nil {
objectMap["encodedValuesContent"] = etsup.EncodedValuesContent
}
if etsup.Values != nil {
objectMap["values"] = etsup.Values
}
if etsup.ContextPath != nil {
objectMap["contextPath"] = etsup.ContextPath
}
if etsup.ContextAccessToken != nil {
objectMap["contextAccessToken"] = etsup.ContextAccessToken
}
if etsup.Type != "" {
objectMap["type"] = etsup.Type
}
return json.Marshal(objectMap)
}
// AsDockerBuildStepUpdateParameters is the BasicTaskStepUpdateParameters implementation for EncodedTaskStepUpdateParameters.
func (etsup EncodedTaskStepUpdateParameters) AsDockerBuildStepUpdateParameters() (*DockerBuildStepUpdateParameters, bool) {
return nil, false
}
// AsFileTaskStepUpdateParameters is the BasicTaskStepUpdateParameters implementation for EncodedTaskStepUpdateParameters.
func (etsup EncodedTaskStepUpdateParameters) AsFileTaskStepUpdateParameters() (*FileTaskStepUpdateParameters, bool) {
return nil, false
}
// AsEncodedTaskStepUpdateParameters is the BasicTaskStepUpdateParameters implementation for EncodedTaskStepUpdateParameters.
func (etsup EncodedTaskStepUpdateParameters) AsEncodedTaskStepUpdateParameters() (*EncodedTaskStepUpdateParameters, bool) {
return &etsup, true
}
// AsTaskStepUpdateParameters is the BasicTaskStepUpdateParameters implementation for EncodedTaskStepUpdateParameters.
func (etsup EncodedTaskStepUpdateParameters) AsTaskStepUpdateParameters() (*TaskStepUpdateParameters, bool) {
return nil, false
}
// AsBasicTaskStepUpdateParameters is the BasicTaskStepUpdateParameters implementation for EncodedTaskStepUpdateParameters.
func (etsup EncodedTaskStepUpdateParameters) AsBasicTaskStepUpdateParameters() (BasicTaskStepUpdateParameters, bool) {
return &etsup, true
}
// Event the event for a webhook.
type Event struct {
// EventRequestMessage - The event request message sent to the service URI.
EventRequestMessage *EventRequestMessage `json:"eventRequestMessage,omitempty"`
// EventResponseMessage - The event response message received from the service URI.
EventResponseMessage *EventResponseMessage `json:"eventResponseMessage,omitempty"`
// ID - The event ID.
ID *string `json:"id,omitempty"`
}
// EventContent the content of the event request message.
type EventContent struct {
// ID - The event ID.
ID *string `json:"id,omitempty"`
// Timestamp - The time at which the event occurred.
Timestamp *date.Time `json:"timestamp,omitempty"`
// Action - The action that encompasses the provided event.
Action *string `json:"action,omitempty"`
// Target - The target of the event.
Target *Target `json:"target,omitempty"`
// Request - The request that generated the event.
Request *Request `json:"request,omitempty"`
// Actor - The agent that initiated the event. For most situations, this could be from the authorization context of the request.
Actor *Actor `json:"actor,omitempty"`
// Source - The registry node that generated the event. Put differently, while the actor initiates the event, the source generates it.
Source *Source `json:"source,omitempty"`
}
// EventInfo the basic information of an event.
type EventInfo struct {
autorest.Response `json:"-"`
// ID - The event ID.
ID *string `json:"id,omitempty"`
}
// EventListResult the result of a request to list events for a webhook.
type EventListResult struct {
autorest.Response `json:"-"`
// Value - The list of events. Since this list may be incomplete, the nextLink field should be used to request the next list of events.
Value *[]Event `json:"value,omitempty"`
// NextLink - The URI that can be used to request the next list of events.
NextLink *string `json:"nextLink,omitempty"`
}
// EventListResultIterator provides access to a complete listing of Event values.
type EventListResultIterator struct {
i int
page EventListResultPage
}
// NextWithContext advances to the next value. If there was an error making
// the request the iterator does not advance and the error is returned.
func (iter *EventListResultIterator) NextWithContext(ctx context.Context) (err error) {
if tracing.IsEnabled() {
ctx = tracing.StartSpan(ctx, fqdn+"/EventListResultIterator.NextWithContext")
defer func() {
sc := -1
if iter.Response().Response.Response != nil {
sc = iter.Response().Response.Response.StatusCode
}
tracing.EndSpan(ctx, sc, err)
}()
}
iter.i++
if iter.i < len(iter.page.Values()) {
return nil
}
err = iter.page.NextWithContext(ctx)
if err != nil {
iter.i--
return err
}
iter.i = 0
return nil
}
// Next advances to the next value. If there was an error making
// the request the iterator does not advance and the error is returned.
// Deprecated: Use NextWithContext() instead.
func (iter *EventListResultIterator) Next() error {
return iter.NextWithContext(context.Background())
}
// NotDone returns true if the enumeration should be started or is not yet complete.
func (iter EventListResultIterator) NotDone() bool {
return iter.page.NotDone() && iter.i < len(iter.page.Values())
}
// Response returns the raw server response from the last page request.
func (iter EventListResultIterator) Response() EventListResult {
return iter.page.Response()
}
// Value returns the current value or a zero-initialized value if the
// iterator has advanced beyond the end of the collection.
func (iter EventListResultIterator) Value() Event {
if !iter.page.NotDone() {
return Event{}
}
return iter.page.Values()[iter.i]
}
// Creates a new instance of the EventListResultIterator type.
func NewEventListResultIterator(page EventListResultPage) EventListResultIterator {
return EventListResultIterator{page: page}
}
// IsEmpty returns true if the ListResult contains no values.
func (elr EventListResult) IsEmpty() bool {
return elr.Value == nil || len(*elr.Value) == 0
}
// hasNextLink returns true if the NextLink is not empty.
func (elr EventListResult) hasNextLink() bool {
return elr.NextLink != nil && len(*elr.NextLink) != 0
}
// eventListResultPreparer prepares a request to retrieve the next set of results.
// It returns nil if no more results exist.
func (elr EventListResult) eventListResultPreparer(ctx context.Context) (*http.Request, error) {
if !elr.hasNextLink() {
return nil, nil
}
return autorest.Prepare((&http.Request{}).WithContext(ctx),
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(elr.NextLink)))
}
// EventListResultPage contains a page of Event values.
type EventListResultPage struct {
fn func(context.Context, EventListResult) (EventListResult, error)
elr EventListResult
}
// NextWithContext advances to the next page of values. If there was an error making
// the request the page does not advance and the error is returned.
func (page *EventListResultPage) NextWithContext(ctx context.Context) (err error) {
if tracing.IsEnabled() {
ctx = tracing.StartSpan(ctx, fqdn+"/EventListResultPage.NextWithContext")
defer func() {
sc := -1
if page.Response().Response.Response != nil {
sc = page.Response().Response.Response.StatusCode
}
tracing.EndSpan(ctx, sc, err)
}()
}
for {
next, err := page.fn(ctx, page.elr)
if err != nil {
return err
}
page.elr = next
if !next.hasNextLink() || !next.IsEmpty() {
break
}
}
return nil
}
// Next advances to the next page of values. If there was an error making
// the request the page does not advance and the error is returned.
// Deprecated: Use NextWithContext() instead.
func (page *EventListResultPage) Next() error {
return page.NextWithContext(context.Background())
}
// NotDone returns true if the page enumeration should be started or is not yet complete.
func (page EventListResultPage) NotDone() bool {
return !page.elr.IsEmpty()
}
// Response returns the raw server response from the last page request.
func (page EventListResultPage) Response() EventListResult {
return page.elr
}
// Values returns the slice of values for the current page or nil if there are no values.
func (page EventListResultPage) Values() []Event {
if page.elr.IsEmpty() {
return nil
}
return *page.elr.Value
}
// Creates a new instance of the EventListResultPage type.
func NewEventListResultPage(cur EventListResult, getNextPage func(context.Context, EventListResult) (EventListResult, error)) EventListResultPage {
return EventListResultPage{
fn: getNextPage,
elr: cur,
}
}
// EventRequestMessage the event request message sent to the service URI.
type EventRequestMessage struct {
// Content - The content of the event request message.
Content *EventContent `json:"content,omitempty"`
// Headers - The headers of the event request message.
Headers map[string]*string `json:"headers"`
// Method - The HTTP method used to send the event request message.
Method *string `json:"method,omitempty"`
// RequestURI - The URI used to send the event request message.
RequestURI *string `json:"requestUri,omitempty"`
// Version - The HTTP message version.
Version *string `json:"version,omitempty"`
}
// MarshalJSON is the custom marshaler for EventRequestMessage.
func (erm EventRequestMessage) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if erm.Content != nil {
objectMap["content"] = erm.Content
}
if erm.Headers != nil {
objectMap["headers"] = erm.Headers
}
if erm.Method != nil {
objectMap["method"] = erm.Method
}
if erm.RequestURI != nil {
objectMap["requestUri"] = erm.RequestURI
}
if erm.Version != nil {
objectMap["version"] = erm.Version
}
return json.Marshal(objectMap)
}
// EventResponseMessage the event response message received from the service URI.
type EventResponseMessage struct {
// Content - The content of the event response message.
Content *string `json:"content,omitempty"`
// Headers - The headers of the event response message.
Headers map[string]*string `json:"headers"`
// ReasonPhrase - The reason phrase of the event response message.
ReasonPhrase *string `json:"reasonPhrase,omitempty"`
// StatusCode - The status code of the event response message.
StatusCode *string `json:"statusCode,omitempty"`
// Version - The HTTP message version.
Version *string `json:"version,omitempty"`
}
// MarshalJSON is the custom marshaler for EventResponseMessage.
func (erm EventResponseMessage) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if erm.Content != nil {
objectMap["content"] = erm.Content
}
if erm.Headers != nil {
objectMap["headers"] = erm.Headers
}
if erm.ReasonPhrase != nil {
objectMap["reasonPhrase"] = erm.ReasonPhrase
}
if erm.StatusCode != nil {
objectMap["statusCode"] = erm.StatusCode
}
if erm.Version != nil {
objectMap["version"] = erm.Version
}
return json.Marshal(objectMap)
}
// FileTaskRunRequest the request parameters for a scheduling run against a task file.
type FileTaskRunRequest struct {
// TaskFilePath - The template/definition file path relative to the source.
TaskFilePath *string `json:"taskFilePath,omitempty"`
// ValuesFilePath - The values/parameters file path relative to the source.
ValuesFilePath *string `json:"valuesFilePath,omitempty"`
// Values - The collection of overridable values that can be passed when running a task.
Values *[]SetValue `json:"values,omitempty"`
// Timeout - Run timeout in seconds.
Timeout *int32 `json:"timeout,omitempty"`
// Platform - The platform properties against which the run has to happen.
Platform *PlatformProperties `json:"platform,omitempty"`
// AgentConfiguration - The machine configuration of the run agent.
AgentConfiguration *AgentProperties `json:"agentConfiguration,omitempty"`
// SourceLocation - The URL(absolute or relative) of the source context. It can be an URL to a tar or git repository.
// If it is relative URL, the relative path should be obtained from calling listBuildSourceUploadUrl API.
SourceLocation *string `json:"sourceLocation,omitempty"`
// Credentials - The properties that describes a set of credentials that will be used when this run is invoked.
Credentials *Credentials `json:"credentials,omitempty"`
// IsArchiveEnabled - The value that indicates whether archiving is enabled for the run or not.
IsArchiveEnabled *bool `json:"isArchiveEnabled,omitempty"`
// Type - Possible values include: 'TypeRunRequest', 'TypeDockerBuildRequest', 'TypeFileTaskRunRequest', 'TypeTaskRunRequest', 'TypeEncodedTaskRunRequest'
Type Type `json:"type,omitempty"`
}
// MarshalJSON is the custom marshaler for FileTaskRunRequest.
func (ftrr FileTaskRunRequest) MarshalJSON() ([]byte, error) {
ftrr.Type = TypeFileTaskRunRequest
objectMap := make(map[string]interface{})
if ftrr.TaskFilePath != nil {
objectMap["taskFilePath"] = ftrr.TaskFilePath
}
if ftrr.ValuesFilePath != nil {
objectMap["valuesFilePath"] = ftrr.ValuesFilePath
}
if ftrr.Values != nil {
objectMap["values"] = ftrr.Values
}
if ftrr.Timeout != nil {
objectMap["timeout"] = ftrr.Timeout
}
if ftrr.Platform != nil {
objectMap["platform"] = ftrr.Platform
}
if ftrr.AgentConfiguration != nil {
objectMap["agentConfiguration"] = ftrr.AgentConfiguration
}
if ftrr.SourceLocation != nil {
objectMap["sourceLocation"] = ftrr.SourceLocation
}
if ftrr.Credentials != nil {
objectMap["credentials"] = ftrr.Credentials
}
if ftrr.IsArchiveEnabled != nil {
objectMap["isArchiveEnabled"] = ftrr.IsArchiveEnabled
}
if ftrr.Type != "" {
objectMap["type"] = ftrr.Type
}
return json.Marshal(objectMap)
}
// AsDockerBuildRequest is the BasicRunRequest implementation for FileTaskRunRequest.
func (ftrr FileTaskRunRequest) AsDockerBuildRequest() (*DockerBuildRequest, bool) {
return nil, false
}
// AsFileTaskRunRequest is the BasicRunRequest implementation for FileTaskRunRequest.
func (ftrr FileTaskRunRequest) AsFileTaskRunRequest() (*FileTaskRunRequest, bool) {
return &ftrr, true
}
// AsTaskRunRequest is the BasicRunRequest implementation for FileTaskRunRequest.