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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315
|
package webservices
// 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/machinelearning/mgmt/2017-01-01/webservices"
// AssetItem information about an asset associated with the web service.
type AssetItem struct {
// Name - Asset's friendly name.
Name *string `json:"name,omitempty"`
// ID - Asset's Id.
ID *string `json:"id,omitempty"`
// Type - Asset's type. Possible values include: 'AssetTypeModule', 'AssetTypeResource'
Type AssetType `json:"type,omitempty"`
// LocationInfo - Access information for the asset.
LocationInfo *BlobLocation `json:"locationInfo,omitempty"`
// InputPorts - Information about the asset's input ports.
InputPorts map[string]*InputPort `json:"inputPorts"`
// OutputPorts - Information about the asset's output ports.
OutputPorts map[string]*OutputPort `json:"outputPorts"`
// Metadata - If the asset is a custom module, this holds the module's metadata.
Metadata map[string]*string `json:"metadata"`
// Parameters - If the asset is a custom module, this holds the module's parameters.
Parameters *[]ModuleAssetParameter `json:"parameters,omitempty"`
}
// MarshalJSON is the custom marshaler for AssetItem.
func (ai AssetItem) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if ai.Name != nil {
objectMap["name"] = ai.Name
}
if ai.ID != nil {
objectMap["id"] = ai.ID
}
if ai.Type != "" {
objectMap["type"] = ai.Type
}
if ai.LocationInfo != nil {
objectMap["locationInfo"] = ai.LocationInfo
}
if ai.InputPorts != nil {
objectMap["inputPorts"] = ai.InputPorts
}
if ai.OutputPorts != nil {
objectMap["outputPorts"] = ai.OutputPorts
}
if ai.Metadata != nil {
objectMap["metadata"] = ai.Metadata
}
if ai.Parameters != nil {
objectMap["parameters"] = ai.Parameters
}
return json.Marshal(objectMap)
}
// AsyncOperationErrorInfo the error detail information for async operation
type AsyncOperationErrorInfo struct {
// Code - READ-ONLY; The error code.
Code *string `json:"code,omitempty"`
// Target - READ-ONLY; The error target.
Target *string `json:"target,omitempty"`
// Message - READ-ONLY; The error message.
Message *string `json:"message,omitempty"`
// Details - READ-ONLY; An array containing error information.
Details *[]AsyncOperationErrorInfo `json:"details,omitempty"`
}
// MarshalJSON is the custom marshaler for AsyncOperationErrorInfo.
func (aoei AsyncOperationErrorInfo) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
return json.Marshal(objectMap)
}
// AsyncOperationStatus azure async operation status.
type AsyncOperationStatus struct {
autorest.Response `json:"-"`
// ID - READ-ONLY; Async operation id.
ID *string `json:"id,omitempty"`
// Name - READ-ONLY; Async operation name.
Name *string `json:"name,omitempty"`
// ProvisioningState - READ-ONLY; Read Only: The provisioning state of the web service. Valid values are Unknown, Provisioning, Succeeded, and Failed. Possible values include: 'Unknown', 'Provisioning', 'Succeeded', 'Failed'
ProvisioningState ProvisioningState `json:"provisioningState,omitempty"`
// StartTime - READ-ONLY; The date time that the async operation started.
StartTime *date.Time `json:"startTime,omitempty"`
// EndTime - READ-ONLY; The date time that the async operation finished.
EndTime *date.Time `json:"endTime,omitempty"`
// PercentComplete - READ-ONLY; Async operation progress.
PercentComplete *float64 `json:"percentComplete,omitempty"`
// ErrorInfo - READ-ONLY; If the async operation fails, this structure contains the error details.
ErrorInfo *AsyncOperationErrorInfo `json:"errorInfo,omitempty"`
}
// MarshalJSON is the custom marshaler for AsyncOperationStatus.
func (aos AsyncOperationStatus) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
return json.Marshal(objectMap)
}
// BlobLocation describes the access location for a blob.
type BlobLocation struct {
// URI - The URI from which the blob is accessible from. For example, aml://abc for system assets or https://xyz for user assets or payload.
URI *string `json:"uri,omitempty"`
// Credentials - Access credentials for the blob, if applicable (e.g. blob specified by storage account connection string + blob URI)
Credentials *string `json:"credentials,omitempty"`
}
// ColumnSpecification swagger 2.0 schema for a column within the data table representing a web service
// input or output. See Swagger specification: http://swagger.io/specification/
type ColumnSpecification struct {
// Type - Data type of the column. Possible values include: 'Boolean', 'Integer', 'Number', 'String'
Type ColumnType `json:"type,omitempty"`
// Format - Additional format information for the data type. Possible values include: 'Byte', 'Char', 'Complex64', 'Complex128', 'DateTime', 'DateTimeOffset', 'Double', 'Duration', 'Float', 'Int8', 'Int16', 'Int32', 'Int64', 'Uint8', 'Uint16', 'Uint32', 'Uint64'
Format ColumnFormat `json:"format,omitempty"`
// Enum - If the data type is categorical, this provides the list of accepted categories.
Enum *[]interface{} `json:"enum,omitempty"`
// XMsIsnullable - Flag indicating if the type supports null values or not.
XMsIsnullable *bool `json:"x-ms-isnullable,omitempty"`
// XMsIsordered - Flag indicating whether the categories are treated as an ordered set or not, if this is a categorical column.
XMsIsordered *bool `json:"x-ms-isordered,omitempty"`
}
// CommitmentPlan information about the machine learning commitment plan associated with the web service.
type CommitmentPlan struct {
// ID - Specifies the Azure Resource Manager ID of the commitment plan associated with the web service.
ID *string `json:"id,omitempty"`
}
// CreateOrUpdateFuture an abstraction for monitoring and retrieving the results of a long-running
// operation.
type CreateOrUpdateFuture struct {
azure.FutureAPI
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
Result func(Client) (WebService, error)
}
// UnmarshalJSON is the custom unmarshaller for CreateFuture.
func (future *CreateOrUpdateFuture) UnmarshalJSON(body []byte) error {
var azFuture azure.Future
if err := json.Unmarshal(body, &azFuture); err != nil {
return err
}
future.FutureAPI = &azFuture
future.Result = future.result
return nil
}
// result is the default implementation for CreateOrUpdateFuture.Result.
func (future *CreateOrUpdateFuture) result(client Client) (ws WebService, err error) {
var done bool
done, err = future.DoneWithContext(context.Background(), client)
if err != nil {
err = autorest.NewErrorWithError(err, "webservices.CreateOrUpdateFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
ws.Response.Response = future.Response()
err = azure.NewAsyncOpIncompleteError("webservices.CreateOrUpdateFuture")
return
}
sender := autorest.DecorateSender(client, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...))
if ws.Response.Response, err = future.GetResult(sender); err == nil && ws.Response.Response.StatusCode != http.StatusNoContent {
ws, err = client.CreateOrUpdateResponder(ws.Response.Response)
if err != nil {
err = autorest.NewErrorWithError(err, "webservices.CreateOrUpdateFuture", "Result", ws.Response.Response, "Failure responding to request")
}
}
return
}
// CreateRegionalPropertiesFuture an abstraction for monitoring and retrieving the results of a
// long-running operation.
type CreateRegionalPropertiesFuture struct {
azure.FutureAPI
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
Result func(Client) (AsyncOperationStatus, error)
}
// UnmarshalJSON is the custom unmarshaller for CreateFuture.
func (future *CreateRegionalPropertiesFuture) UnmarshalJSON(body []byte) error {
var azFuture azure.Future
if err := json.Unmarshal(body, &azFuture); err != nil {
return err
}
future.FutureAPI = &azFuture
future.Result = future.result
return nil
}
// result is the default implementation for CreateRegionalPropertiesFuture.Result.
func (future *CreateRegionalPropertiesFuture) result(client Client) (aos AsyncOperationStatus, err error) {
var done bool
done, err = future.DoneWithContext(context.Background(), client)
if err != nil {
err = autorest.NewErrorWithError(err, "webservices.CreateRegionalPropertiesFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
aos.Response.Response = future.Response()
err = azure.NewAsyncOpIncompleteError("webservices.CreateRegionalPropertiesFuture")
return
}
sender := autorest.DecorateSender(client, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...))
if aos.Response.Response, err = future.GetResult(sender); err == nil && aos.Response.Response.StatusCode != http.StatusNoContent {
aos, err = client.CreateRegionalPropertiesResponder(aos.Response.Response)
if err != nil {
err = autorest.NewErrorWithError(err, "webservices.CreateRegionalPropertiesFuture", "Result", aos.Response.Response, "Failure responding to request")
}
}
return
}
// DiagnosticsConfiguration diagnostics settings for an Azure ML web service.
type DiagnosticsConfiguration struct {
// Level - Specifies the verbosity of the diagnostic output. Valid values are: None - disables tracing; Error - collects only error (stderr) traces; All - collects all traces (stdout and stderr). Possible values include: 'None', 'Error', 'All'
Level DiagnosticsLevel `json:"level,omitempty"`
// Expiry - Specifies the date and time when the logging will cease. If null, diagnostic collection is not time limited.
Expiry *date.Time `json:"expiry,omitempty"`
}
// ExampleRequest sample input data for the service's input(s).
type ExampleRequest struct {
// Inputs - Sample input data for the web service's input(s) given as an input name to sample input values matrix map.
Inputs map[string][][]interface{} `json:"inputs"`
// GlobalParameters - Sample input data for the web service's global parameters
GlobalParameters map[string]interface{} `json:"globalParameters"`
}
// MarshalJSON is the custom marshaler for ExampleRequest.
func (er ExampleRequest) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if er.Inputs != nil {
objectMap["inputs"] = er.Inputs
}
if er.GlobalParameters != nil {
objectMap["globalParameters"] = er.GlobalParameters
}
return json.Marshal(objectMap)
}
// GraphEdge defines an edge within the web service's graph.
type GraphEdge struct {
// SourceNodeID - The source graph node's identifier.
SourceNodeID *string `json:"sourceNodeId,omitempty"`
// SourcePortID - The identifier of the source node's port that the edge connects from.
SourcePortID *string `json:"sourcePortId,omitempty"`
// TargetNodeID - The destination graph node's identifier.
TargetNodeID *string `json:"targetNodeId,omitempty"`
// TargetPortID - The identifier of the destination node's port that the edge connects into.
TargetPortID *string `json:"targetPortId,omitempty"`
}
// GraphNode specifies a node in the web service graph. The node can either be an input, output or asset
// node, so only one of the corresponding id properties is populated at any given time.
type GraphNode struct {
// AssetID - The id of the asset represented by this node.
AssetID *string `json:"assetId,omitempty"`
// InputID - The id of the input element represented by this node.
InputID *string `json:"inputId,omitempty"`
// OutputID - The id of the output element represented by this node.
OutputID *string `json:"outputId,omitempty"`
// Parameters - If applicable, parameters of the node. Global graph parameters map into these, with values set at runtime.
Parameters map[string]*Parameter `json:"parameters"`
}
// MarshalJSON is the custom marshaler for GraphNode.
func (gn GraphNode) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if gn.AssetID != nil {
objectMap["assetId"] = gn.AssetID
}
if gn.InputID != nil {
objectMap["inputId"] = gn.InputID
}
if gn.OutputID != nil {
objectMap["outputId"] = gn.OutputID
}
if gn.Parameters != nil {
objectMap["parameters"] = gn.Parameters
}
return json.Marshal(objectMap)
}
// GraphPackage defines the graph of modules making up the machine learning solution.
type GraphPackage struct {
// Nodes - The set of nodes making up the graph, provided as a nodeId to GraphNode map
Nodes map[string]*GraphNode `json:"nodes"`
// Edges - The list of edges making up the graph.
Edges *[]GraphEdge `json:"edges,omitempty"`
// GraphParameters - The collection of global parameters for the graph, given as a global parameter name to GraphParameter map. Each parameter here has a 1:1 match with the global parameters values map declared at the WebServiceProperties level.
GraphParameters map[string]*GraphParameter `json:"graphParameters"`
}
// MarshalJSON is the custom marshaler for GraphPackage.
func (gp GraphPackage) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if gp.Nodes != nil {
objectMap["nodes"] = gp.Nodes
}
if gp.Edges != nil {
objectMap["edges"] = gp.Edges
}
if gp.GraphParameters != nil {
objectMap["graphParameters"] = gp.GraphParameters
}
return json.Marshal(objectMap)
}
// GraphParameter defines a global parameter in the graph.
type GraphParameter struct {
// Description - Description of this graph parameter.
Description *string `json:"description,omitempty"`
// Type - Graph parameter's type. Possible values include: 'ParameterTypeString', 'ParameterTypeInt', 'ParameterTypeFloat', 'ParameterTypeEnumerated', 'ParameterTypeScript', 'ParameterTypeMode', 'ParameterTypeCredential', 'ParameterTypeBoolean', 'ParameterTypeDouble', 'ParameterTypeColumnPicker', 'ParameterTypeParameterRange', 'ParameterTypeDataGatewayName'
Type ParameterType `json:"type,omitempty"`
// Links - Association links for this parameter to nodes in the graph.
Links *[]GraphParameterLink `json:"links,omitempty"`
}
// GraphParameterLink association link for a graph global parameter to a node in the graph.
type GraphParameterLink struct {
// NodeID - The graph node's identifier
NodeID *string `json:"nodeId,omitempty"`
// ParameterKey - The identifier of the node parameter that the global parameter maps to.
ParameterKey *string `json:"parameterKey,omitempty"`
}
// InputPort asset input port
type InputPort struct {
// Type - Port data type. Possible values include: 'Dataset'
Type InputPortType `json:"type,omitempty"`
}
// Keys access keys for the web service calls.
type Keys struct {
autorest.Response `json:"-"`
// Primary - The primary access key.
Primary *string `json:"primary,omitempty"`
// Secondary - The secondary access key.
Secondary *string `json:"secondary,omitempty"`
}
// MachineLearningWorkspace information about the machine learning workspace containing the experiment that
// is source for the web service.
type MachineLearningWorkspace struct {
// ID - Specifies the workspace ID of the machine learning workspace associated with the web service
ID *string `json:"id,omitempty"`
}
// ModeValueInfo nested parameter definition.
type ModeValueInfo struct {
// InterfaceString - The interface string name for the nested parameter.
InterfaceString *string `json:"interfaceString,omitempty"`
// Parameters - The definition of the parameter.
Parameters *[]ModuleAssetParameter `json:"parameters,omitempty"`
}
// ModuleAssetParameter parameter definition for a module asset.
type ModuleAssetParameter struct {
// Name - Parameter name.
Name *string `json:"name,omitempty"`
// ParameterType - Parameter type.
ParameterType *string `json:"parameterType,omitempty"`
// ModeValuesInfo - Definitions for nested interface parameters if this is a complex module parameter.
ModeValuesInfo map[string]*ModeValueInfo `json:"modeValuesInfo"`
}
// MarshalJSON is the custom marshaler for ModuleAssetParameter.
func (mapVar ModuleAssetParameter) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if mapVar.Name != nil {
objectMap["name"] = mapVar.Name
}
if mapVar.ParameterType != nil {
objectMap["parameterType"] = mapVar.ParameterType
}
if mapVar.ModeValuesInfo != nil {
objectMap["modeValuesInfo"] = mapVar.ModeValuesInfo
}
return json.Marshal(objectMap)
}
// OperationDisplayInfo the API operation info.
type OperationDisplayInfo struct {
// Description - READ-ONLY; The description of the operation.
Description *string `json:"description,omitempty"`
// Operation - READ-ONLY; The action that users can perform, based on their permission level.
Operation *string `json:"operation,omitempty"`
// Provider - READ-ONLY; The service provider.
Provider *string `json:"provider,omitempty"`
// Resource - READ-ONLY; The resource on which the operation is performed.
Resource *string `json:"resource,omitempty"`
}
// MarshalJSON is the custom marshaler for OperationDisplayInfo.
func (odi OperationDisplayInfo) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
return json.Marshal(objectMap)
}
// OperationEntity an API operation.
type OperationEntity struct {
// Name - READ-ONLY; Operation name: {provider}/{resource}/{operation}.
Name *string `json:"name,omitempty"`
// Display - The API operation info.
Display *OperationDisplayInfo `json:"display,omitempty"`
}
// MarshalJSON is the custom marshaler for OperationEntity.
func (oe OperationEntity) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if oe.Display != nil {
objectMap["display"] = oe.Display
}
return json.Marshal(objectMap)
}
// OperationEntityListResult the list of REST API operations.
type OperationEntityListResult struct {
autorest.Response `json:"-"`
// Value - READ-ONLY; The list of operations.
Value *[]OperationEntity `json:"value,omitempty"`
}
// MarshalJSON is the custom marshaler for OperationEntityListResult.
func (oelr OperationEntityListResult) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
return json.Marshal(objectMap)
}
// OutputPort asset output port
type OutputPort struct {
// Type - Port data type. Possible values include: 'OutputPortTypeDataset'
Type OutputPortType `json:"type,omitempty"`
}
// PaginatedWebServicesList paginated list of web services.
type PaginatedWebServicesList struct {
autorest.Response `json:"-"`
// Value - An array of web service objects.
Value *[]WebService `json:"value,omitempty"`
// NextLink - A continuation link (absolute URI) to the next page of results in the list.
NextLink *string `json:"nextLink,omitempty"`
}
// PaginatedWebServicesListIterator provides access to a complete listing of WebService values.
type PaginatedWebServicesListIterator struct {
i int
page PaginatedWebServicesListPage
}
// 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 *PaginatedWebServicesListIterator) NextWithContext(ctx context.Context) (err error) {
if tracing.IsEnabled() {
ctx = tracing.StartSpan(ctx, fqdn+"/PaginatedWebServicesListIterator.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 *PaginatedWebServicesListIterator) Next() error {
return iter.NextWithContext(context.Background())
}
// NotDone returns true if the enumeration should be started or is not yet complete.
func (iter PaginatedWebServicesListIterator) 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 PaginatedWebServicesListIterator) Response() PaginatedWebServicesList {
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 PaginatedWebServicesListIterator) Value() WebService {
if !iter.page.NotDone() {
return WebService{}
}
return iter.page.Values()[iter.i]
}
// Creates a new instance of the PaginatedWebServicesListIterator type.
func NewPaginatedWebServicesListIterator(page PaginatedWebServicesListPage) PaginatedWebServicesListIterator {
return PaginatedWebServicesListIterator{page: page}
}
// IsEmpty returns true if the ListResult contains no values.
func (pwsl PaginatedWebServicesList) IsEmpty() bool {
return pwsl.Value == nil || len(*pwsl.Value) == 0
}
// hasNextLink returns true if the NextLink is not empty.
func (pwsl PaginatedWebServicesList) hasNextLink() bool {
return pwsl.NextLink != nil && len(*pwsl.NextLink) != 0
}
// paginatedWebServicesListPreparer prepares a request to retrieve the next set of results.
// It returns nil if no more results exist.
func (pwsl PaginatedWebServicesList) paginatedWebServicesListPreparer(ctx context.Context) (*http.Request, error) {
if !pwsl.hasNextLink() {
return nil, nil
}
return autorest.Prepare((&http.Request{}).WithContext(ctx),
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(pwsl.NextLink)))
}
// PaginatedWebServicesListPage contains a page of WebService values.
type PaginatedWebServicesListPage struct {
fn func(context.Context, PaginatedWebServicesList) (PaginatedWebServicesList, error)
pwsl PaginatedWebServicesList
}
// 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 *PaginatedWebServicesListPage) NextWithContext(ctx context.Context) (err error) {
if tracing.IsEnabled() {
ctx = tracing.StartSpan(ctx, fqdn+"/PaginatedWebServicesListPage.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.pwsl)
if err != nil {
return err
}
page.pwsl = 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 *PaginatedWebServicesListPage) Next() error {
return page.NextWithContext(context.Background())
}
// NotDone returns true if the page enumeration should be started or is not yet complete.
func (page PaginatedWebServicesListPage) NotDone() bool {
return !page.pwsl.IsEmpty()
}
// Response returns the raw server response from the last page request.
func (page PaginatedWebServicesListPage) Response() PaginatedWebServicesList {
return page.pwsl
}
// Values returns the slice of values for the current page or nil if there are no values.
func (page PaginatedWebServicesListPage) Values() []WebService {
if page.pwsl.IsEmpty() {
return nil
}
return *page.pwsl.Value
}
// Creates a new instance of the PaginatedWebServicesListPage type.
func NewPaginatedWebServicesListPage(cur PaginatedWebServicesList, getNextPage func(context.Context, PaginatedWebServicesList) (PaginatedWebServicesList, error)) PaginatedWebServicesListPage {
return PaginatedWebServicesListPage{
fn: getNextPage,
pwsl: cur,
}
}
// Parameter web Service Parameter object for node and global parameter
type Parameter struct {
// Value - The parameter value
Value interface{} `json:"value,omitempty"`
// CertificateThumbprint - If the parameter value in 'value' field is encrypted, the thumbprint of the certificate should be put here.
CertificateThumbprint *string `json:"certificateThumbprint,omitempty"`
}
// PatchedResource azure resource.
type PatchedResource struct {
// ID - READ-ONLY; Specifies the resource ID.
ID *string `json:"id,omitempty"`
// Name - READ-ONLY; Specifies the name of the resource.
Name *string `json:"name,omitempty"`
// Location - READ-ONLY; Specifies the location of the resource.
Location *string `json:"location,omitempty"`
// Type - READ-ONLY; Specifies the type of the resource.
Type *string `json:"type,omitempty"`
// Tags - Contains resource tags defined as key/value pairs.
Tags map[string]*string `json:"tags"`
}
// MarshalJSON is the custom marshaler for PatchedResource.
func (pr PatchedResource) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if pr.Tags != nil {
objectMap["tags"] = pr.Tags
}
return json.Marshal(objectMap)
}
// PatchedWebService instance of an Patched Azure ML web service resource.
type PatchedWebService struct {
// Properties - Contains the property payload that describes the web service.
Properties BasicProperties `json:"properties,omitempty"`
// ID - READ-ONLY; Specifies the resource ID.
ID *string `json:"id,omitempty"`
// Name - READ-ONLY; Specifies the name of the resource.
Name *string `json:"name,omitempty"`
// Location - READ-ONLY; Specifies the location of the resource.
Location *string `json:"location,omitempty"`
// Type - READ-ONLY; Specifies the type of the resource.
Type *string `json:"type,omitempty"`
// Tags - Contains resource tags defined as key/value pairs.
Tags map[string]*string `json:"tags"`
}
// MarshalJSON is the custom marshaler for PatchedWebService.
func (pws PatchedWebService) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
objectMap["properties"] = pws.Properties
if pws.Tags != nil {
objectMap["tags"] = pws.Tags
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for PatchedWebService struct.
func (pws *PatchedWebService) UnmarshalJSON(body []byte) error {
var m map[string]*json.RawMessage
err := json.Unmarshal(body, &m)
if err != nil {
return err
}
for k, v := range m {
switch k {
case "properties":
if v != nil {
properties, err := unmarshalBasicProperties(*v)
if err != nil {
return err
}
pws.Properties = properties
}
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
pws.ID = &ID
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
pws.Name = &name
}
case "location":
if v != nil {
var location string
err = json.Unmarshal(*v, &location)
if err != nil {
return err
}
pws.Location = &location
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
pws.Type = &typeVar
}
case "tags":
if v != nil {
var tags map[string]*string
err = json.Unmarshal(*v, &tags)
if err != nil {
return err
}
pws.Tags = tags
}
}
}
return nil
}
// PatchFuture an abstraction for monitoring and retrieving the results of a long-running operation.
type PatchFuture struct {
azure.FutureAPI
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
Result func(Client) (WebService, error)
}
// UnmarshalJSON is the custom unmarshaller for CreateFuture.
func (future *PatchFuture) UnmarshalJSON(body []byte) error {
var azFuture azure.Future
if err := json.Unmarshal(body, &azFuture); err != nil {
return err
}
future.FutureAPI = &azFuture
future.Result = future.result
return nil
}
// result is the default implementation for PatchFuture.Result.
func (future *PatchFuture) result(client Client) (ws WebService, err error) {
var done bool
done, err = future.DoneWithContext(context.Background(), client)
if err != nil {
err = autorest.NewErrorWithError(err, "webservices.PatchFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
ws.Response.Response = future.Response()
err = azure.NewAsyncOpIncompleteError("webservices.PatchFuture")
return
}
sender := autorest.DecorateSender(client, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...))
if ws.Response.Response, err = future.GetResult(sender); err == nil && ws.Response.Response.StatusCode != http.StatusNoContent {
ws, err = client.PatchResponder(ws.Response.Response)
if err != nil {
err = autorest.NewErrorWithError(err, "webservices.PatchFuture", "Result", ws.Response.Response, "Failure responding to request")
}
}
return
}
// BasicProperties the set of properties specific to the Azure ML web service resource.
type BasicProperties interface {
AsPropertiesForGraph() (*PropertiesForGraph, bool)
AsProperties() (*Properties, bool)
}
// Properties the set of properties specific to the Azure ML web service resource.
type Properties struct {
// Title - The title of the web service.
Title *string `json:"title,omitempty"`
// Description - The description of the web service.
Description *string `json:"description,omitempty"`
// CreatedOn - READ-ONLY; Read Only: The date and time when the web service was created.
CreatedOn *date.Time `json:"createdOn,omitempty"`
// ModifiedOn - READ-ONLY; Read Only: The date and time when the web service was last modified.
ModifiedOn *date.Time `json:"modifiedOn,omitempty"`
// ProvisioningState - READ-ONLY; Read Only: The provision state of the web service. Valid values are Unknown, Provisioning, Succeeded, and Failed. Possible values include: 'Unknown', 'Provisioning', 'Succeeded', 'Failed'
ProvisioningState ProvisioningState `json:"provisioningState,omitempty"`
// Keys - Contains the web service provisioning keys. If you do not specify provisioning keys, the Azure Machine Learning system generates them for you. Note: The keys are not returned from calls to GET operations.
Keys *Keys `json:"keys,omitempty"`
// ReadOnly - When set to true, indicates that the web service is read-only and can no longer be updated or patched, only removed. Default, is false. Note: Once set to true, you cannot change its value.
ReadOnly *bool `json:"readOnly,omitempty"`
// SwaggerLocation - READ-ONLY; Read Only: Contains the URI of the swagger spec associated with this web service.
SwaggerLocation *string `json:"swaggerLocation,omitempty"`
// ExposeSampleData - When set to true, sample data is included in the web service's swagger definition. The default value is true.
ExposeSampleData *bool `json:"exposeSampleData,omitempty"`
// RealtimeConfiguration - Contains the configuration settings for the web service endpoint.
RealtimeConfiguration *RealtimeConfiguration `json:"realtimeConfiguration,omitempty"`
// Diagnostics - Settings controlling the diagnostics traces collection for the web service.
Diagnostics *DiagnosticsConfiguration `json:"diagnostics,omitempty"`
// StorageAccount - Specifies the storage account that Azure Machine Learning uses to store information about the web service. Only the name of the storage account is returned from calls to GET operations. When updating the storage account information, you must ensure that all necessary assets are available in the new storage account or calls to your web service will fail.
StorageAccount *StorageAccount `json:"storageAccount,omitempty"`
// MachineLearningWorkspace - Specifies the Machine Learning workspace containing the experiment that is source for the web service.
MachineLearningWorkspace *MachineLearningWorkspace `json:"machineLearningWorkspace,omitempty"`
// CommitmentPlan - Contains the commitment plan associated with this web service. Set at creation time. Once set, this value cannot be changed. Note: The commitment plan is not returned from calls to GET operations.
CommitmentPlan *CommitmentPlan `json:"commitmentPlan,omitempty"`
// Input - Contains the Swagger 2.0 schema describing one or more of the web service's inputs. For more information, see the Swagger specification.
Input *ServiceInputOutputSpecification `json:"input,omitempty"`
// Output - Contains the Swagger 2.0 schema describing one or more of the web service's outputs. For more information, see the Swagger specification.
Output *ServiceInputOutputSpecification `json:"output,omitempty"`
// ExampleRequest - Defines sample input data for one or more of the service's inputs.
ExampleRequest *ExampleRequest `json:"exampleRequest,omitempty"`
// Assets - Contains user defined properties describing web service assets. Properties are expressed as Key/Value pairs.
Assets map[string]*AssetItem `json:"assets"`
// Parameters - The set of global parameters values defined for the web service, given as a global parameter name to default value map. If no default value is specified, the parameter is considered to be required.
Parameters map[string]*Parameter `json:"parameters"`
// PayloadsInBlobStorage - When set to true, indicates that the payload size is larger than 3 MB. Otherwise false. If the payload size exceed 3 MB, the payload is stored in a blob and the PayloadsLocation parameter contains the URI of the blob. Otherwise, this will be set to false and Assets, Input, Output, Package, Parameters, ExampleRequest are inline. The Payload sizes is determined by adding the size of the Assets, Input, Output, Package, Parameters, and the ExampleRequest.
PayloadsInBlobStorage *bool `json:"payloadsInBlobStorage,omitempty"`
// PayloadsLocation - The URI of the payload blob. This parameter contains a value only if the payloadsInBlobStorage parameter is set to true. Otherwise is set to null.
PayloadsLocation *BlobLocation `json:"payloadsLocation,omitempty"`
// PackageType - Possible values include: 'PackageTypeWebServiceProperties', 'PackageTypeGraph'
PackageType PackageType `json:"packageType,omitempty"`
}
func unmarshalBasicProperties(body []byte) (BasicProperties, error) {
var m map[string]interface{}
err := json.Unmarshal(body, &m)
if err != nil {
return nil, err
}
switch m["packageType"] {
case string(PackageTypeGraph):
var pfg PropertiesForGraph
err := json.Unmarshal(body, &pfg)
return pfg, err
default:
var p Properties
err := json.Unmarshal(body, &p)
return p, err
}
}
func unmarshalBasicPropertiesArray(body []byte) ([]BasicProperties, error) {
var rawMessages []*json.RawMessage
err := json.Unmarshal(body, &rawMessages)
if err != nil {
return nil, err
}
pArray := make([]BasicProperties, len(rawMessages))
for index, rawMessage := range rawMessages {
p, err := unmarshalBasicProperties(*rawMessage)
if err != nil {
return nil, err
}
pArray[index] = p
}
return pArray, nil
}
// MarshalJSON is the custom marshaler for Properties.
func (p Properties) MarshalJSON() ([]byte, error) {
p.PackageType = PackageTypeWebServiceProperties
objectMap := make(map[string]interface{})
if p.Title != nil {
objectMap["title"] = p.Title
}
if p.Description != nil {
objectMap["description"] = p.Description
}
if p.Keys != nil {
objectMap["keys"] = p.Keys
}
if p.ReadOnly != nil {
objectMap["readOnly"] = p.ReadOnly
}
if p.ExposeSampleData != nil {
objectMap["exposeSampleData"] = p.ExposeSampleData
}
if p.RealtimeConfiguration != nil {
objectMap["realtimeConfiguration"] = p.RealtimeConfiguration
}
if p.Diagnostics != nil {
objectMap["diagnostics"] = p.Diagnostics
}
if p.StorageAccount != nil {
objectMap["storageAccount"] = p.StorageAccount
}
if p.MachineLearningWorkspace != nil {
objectMap["machineLearningWorkspace"] = p.MachineLearningWorkspace
}
if p.CommitmentPlan != nil {
objectMap["commitmentPlan"] = p.CommitmentPlan
}
if p.Input != nil {
objectMap["input"] = p.Input
}
if p.Output != nil {
objectMap["output"] = p.Output
}
if p.ExampleRequest != nil {
objectMap["exampleRequest"] = p.ExampleRequest
}
if p.Assets != nil {
objectMap["assets"] = p.Assets
}
if p.Parameters != nil {
objectMap["parameters"] = p.Parameters
}
if p.PayloadsInBlobStorage != nil {
objectMap["payloadsInBlobStorage"] = p.PayloadsInBlobStorage
}
if p.PayloadsLocation != nil {
objectMap["payloadsLocation"] = p.PayloadsLocation
}
if p.PackageType != "" {
objectMap["packageType"] = p.PackageType
}
return json.Marshal(objectMap)
}
// AsPropertiesForGraph is the BasicProperties implementation for Properties.
func (p Properties) AsPropertiesForGraph() (*PropertiesForGraph, bool) {
return nil, false
}
// AsProperties is the BasicProperties implementation for Properties.
func (p Properties) AsProperties() (*Properties, bool) {
return &p, true
}
// AsBasicProperties is the BasicProperties implementation for Properties.
func (p Properties) AsBasicProperties() (BasicProperties, bool) {
return &p, true
}
// PropertiesForGraph properties specific to a Graph based web service.
type PropertiesForGraph struct {
// Package - The definition of the graph package making up this web service.
Package *GraphPackage `json:"package,omitempty"`
// Title - The title of the web service.
Title *string `json:"title,omitempty"`
// Description - The description of the web service.
Description *string `json:"description,omitempty"`
// CreatedOn - READ-ONLY; Read Only: The date and time when the web service was created.
CreatedOn *date.Time `json:"createdOn,omitempty"`
// ModifiedOn - READ-ONLY; Read Only: The date and time when the web service was last modified.
ModifiedOn *date.Time `json:"modifiedOn,omitempty"`
// ProvisioningState - READ-ONLY; Read Only: The provision state of the web service. Valid values are Unknown, Provisioning, Succeeded, and Failed. Possible values include: 'Unknown', 'Provisioning', 'Succeeded', 'Failed'
ProvisioningState ProvisioningState `json:"provisioningState,omitempty"`
// Keys - Contains the web service provisioning keys. If you do not specify provisioning keys, the Azure Machine Learning system generates them for you. Note: The keys are not returned from calls to GET operations.
Keys *Keys `json:"keys,omitempty"`
// ReadOnly - When set to true, indicates that the web service is read-only and can no longer be updated or patched, only removed. Default, is false. Note: Once set to true, you cannot change its value.
ReadOnly *bool `json:"readOnly,omitempty"`
// SwaggerLocation - READ-ONLY; Read Only: Contains the URI of the swagger spec associated with this web service.
SwaggerLocation *string `json:"swaggerLocation,omitempty"`
// ExposeSampleData - When set to true, sample data is included in the web service's swagger definition. The default value is true.
ExposeSampleData *bool `json:"exposeSampleData,omitempty"`
// RealtimeConfiguration - Contains the configuration settings for the web service endpoint.
RealtimeConfiguration *RealtimeConfiguration `json:"realtimeConfiguration,omitempty"`
// Diagnostics - Settings controlling the diagnostics traces collection for the web service.
Diagnostics *DiagnosticsConfiguration `json:"diagnostics,omitempty"`
// StorageAccount - Specifies the storage account that Azure Machine Learning uses to store information about the web service. Only the name of the storage account is returned from calls to GET operations. When updating the storage account information, you must ensure that all necessary assets are available in the new storage account or calls to your web service will fail.
StorageAccount *StorageAccount `json:"storageAccount,omitempty"`
// MachineLearningWorkspace - Specifies the Machine Learning workspace containing the experiment that is source for the web service.
MachineLearningWorkspace *MachineLearningWorkspace `json:"machineLearningWorkspace,omitempty"`
// CommitmentPlan - Contains the commitment plan associated with this web service. Set at creation time. Once set, this value cannot be changed. Note: The commitment plan is not returned from calls to GET operations.
CommitmentPlan *CommitmentPlan `json:"commitmentPlan,omitempty"`
// Input - Contains the Swagger 2.0 schema describing one or more of the web service's inputs. For more information, see the Swagger specification.
Input *ServiceInputOutputSpecification `json:"input,omitempty"`
// Output - Contains the Swagger 2.0 schema describing one or more of the web service's outputs. For more information, see the Swagger specification.
Output *ServiceInputOutputSpecification `json:"output,omitempty"`
// ExampleRequest - Defines sample input data for one or more of the service's inputs.
ExampleRequest *ExampleRequest `json:"exampleRequest,omitempty"`
// Assets - Contains user defined properties describing web service assets. Properties are expressed as Key/Value pairs.
Assets map[string]*AssetItem `json:"assets"`
// Parameters - The set of global parameters values defined for the web service, given as a global parameter name to default value map. If no default value is specified, the parameter is considered to be required.
Parameters map[string]*Parameter `json:"parameters"`
// PayloadsInBlobStorage - When set to true, indicates that the payload size is larger than 3 MB. Otherwise false. If the payload size exceed 3 MB, the payload is stored in a blob and the PayloadsLocation parameter contains the URI of the blob. Otherwise, this will be set to false and Assets, Input, Output, Package, Parameters, ExampleRequest are inline. The Payload sizes is determined by adding the size of the Assets, Input, Output, Package, Parameters, and the ExampleRequest.
PayloadsInBlobStorage *bool `json:"payloadsInBlobStorage,omitempty"`
// PayloadsLocation - The URI of the payload blob. This parameter contains a value only if the payloadsInBlobStorage parameter is set to true. Otherwise is set to null.
PayloadsLocation *BlobLocation `json:"payloadsLocation,omitempty"`
// PackageType - Possible values include: 'PackageTypeWebServiceProperties', 'PackageTypeGraph'
PackageType PackageType `json:"packageType,omitempty"`
}
// MarshalJSON is the custom marshaler for PropertiesForGraph.
func (pfg PropertiesForGraph) MarshalJSON() ([]byte, error) {
pfg.PackageType = PackageTypeGraph
objectMap := make(map[string]interface{})
if pfg.Package != nil {
objectMap["package"] = pfg.Package
}
if pfg.Title != nil {
objectMap["title"] = pfg.Title
}
if pfg.Description != nil {
objectMap["description"] = pfg.Description
}
if pfg.Keys != nil {
objectMap["keys"] = pfg.Keys
}
if pfg.ReadOnly != nil {
objectMap["readOnly"] = pfg.ReadOnly
}
if pfg.ExposeSampleData != nil {
objectMap["exposeSampleData"] = pfg.ExposeSampleData
}
if pfg.RealtimeConfiguration != nil {
objectMap["realtimeConfiguration"] = pfg.RealtimeConfiguration
}
if pfg.Diagnostics != nil {
objectMap["diagnostics"] = pfg.Diagnostics
}
if pfg.StorageAccount != nil {
objectMap["storageAccount"] = pfg.StorageAccount
}
if pfg.MachineLearningWorkspace != nil {
objectMap["machineLearningWorkspace"] = pfg.MachineLearningWorkspace
}
if pfg.CommitmentPlan != nil {
objectMap["commitmentPlan"] = pfg.CommitmentPlan
}
if pfg.Input != nil {
objectMap["input"] = pfg.Input
}
if pfg.Output != nil {
objectMap["output"] = pfg.Output
}
if pfg.ExampleRequest != nil {
objectMap["exampleRequest"] = pfg.ExampleRequest
}
if pfg.Assets != nil {
objectMap["assets"] = pfg.Assets
}
if pfg.Parameters != nil {
objectMap["parameters"] = pfg.Parameters
}
if pfg.PayloadsInBlobStorage != nil {
objectMap["payloadsInBlobStorage"] = pfg.PayloadsInBlobStorage
}
if pfg.PayloadsLocation != nil {
objectMap["payloadsLocation"] = pfg.PayloadsLocation
}
if pfg.PackageType != "" {
objectMap["packageType"] = pfg.PackageType
}
return json.Marshal(objectMap)
}
// AsPropertiesForGraph is the BasicProperties implementation for PropertiesForGraph.
func (pfg PropertiesForGraph) AsPropertiesForGraph() (*PropertiesForGraph, bool) {
return &pfg, true
}
// AsProperties is the BasicProperties implementation for PropertiesForGraph.
func (pfg PropertiesForGraph) AsProperties() (*Properties, bool) {
return nil, false
}
// AsBasicProperties is the BasicProperties implementation for PropertiesForGraph.
func (pfg PropertiesForGraph) AsBasicProperties() (BasicProperties, bool) {
return &pfg, true
}
// RealtimeConfiguration holds the available configuration options for an Azure ML web service endpoint.
type RealtimeConfiguration struct {
// MaxConcurrentCalls - Specifies the maximum concurrent calls that can be made to the web service. Minimum value: 4, Maximum value: 200.
MaxConcurrentCalls *int32 `json:"maxConcurrentCalls,omitempty"`
}
// RemoveFuture an abstraction for monitoring and retrieving the results of a long-running operation.
type RemoveFuture struct {
azure.FutureAPI
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
Result func(Client) (autorest.Response, error)
}
// UnmarshalJSON is the custom unmarshaller for CreateFuture.
func (future *RemoveFuture) UnmarshalJSON(body []byte) error {
var azFuture azure.Future
if err := json.Unmarshal(body, &azFuture); err != nil {
return err
}
future.FutureAPI = &azFuture
future.Result = future.result
return nil
}
// result is the default implementation for RemoveFuture.Result.
func (future *RemoveFuture) result(client Client) (ar autorest.Response, err error) {
var done bool
done, err = future.DoneWithContext(context.Background(), client)
if err != nil {
err = autorest.NewErrorWithError(err, "webservices.RemoveFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
ar.Response = future.Response()
err = azure.NewAsyncOpIncompleteError("webservices.RemoveFuture")
return
}
ar.Response = future.Response()
return
}
// Resource azure resource.
type Resource struct {
// ID - READ-ONLY; Specifies the resource ID.
ID *string `json:"id,omitempty"`
// Name - READ-ONLY; Specifies the name of the resource.
Name *string `json:"name,omitempty"`
// Location - Specifies the location of the resource.
Location *string `json:"location,omitempty"`
// Type - READ-ONLY; Specifies the type of the resource.
Type *string `json:"type,omitempty"`
// Tags - Contains resource tags defined as key/value pairs.
Tags map[string]*string `json:"tags"`
}
// MarshalJSON is the custom marshaler for Resource.
func (r Resource) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if r.Location != nil {
objectMap["location"] = r.Location
}
if r.Tags != nil {
objectMap["tags"] = r.Tags
}
return json.Marshal(objectMap)
}
// ServiceInputOutputSpecification the swagger 2.0 schema describing the service's inputs or outputs. See
// Swagger specification: http://swagger.io/specification/
type ServiceInputOutputSpecification struct {
// Title - The title of your Swagger schema.
Title *string `json:"title,omitempty"`
// Description - The description of the Swagger schema.
Description *string `json:"description,omitempty"`
// Type - The type of the entity described in swagger. Always 'object'.
Type *string `json:"type,omitempty"`
// Properties - Specifies a collection that contains the column schema for each input or output of the web service. For more information, see the Swagger specification.
Properties map[string]*TableSpecification `json:"properties"`
}
// MarshalJSON is the custom marshaler for ServiceInputOutputSpecification.
func (sios ServiceInputOutputSpecification) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if sios.Title != nil {
objectMap["title"] = sios.Title
}
if sios.Description != nil {
objectMap["description"] = sios.Description
}
if sios.Type != nil {
objectMap["type"] = sios.Type
}
if sios.Properties != nil {
objectMap["properties"] = sios.Properties
}
return json.Marshal(objectMap)
}
// StorageAccount access information for a storage account.
type StorageAccount struct {
// Name - Specifies the name of the storage account.
Name *string `json:"name,omitempty"`
// Key - Specifies the key used to access the storage account.
Key *string `json:"key,omitempty"`
}
// TableSpecification the swagger 2.0 schema describing a single service input or output. See Swagger
// specification: http://swagger.io/specification/
type TableSpecification struct {
// Title - Swagger schema title.
Title *string `json:"title,omitempty"`
// Description - Swagger schema description.
Description *string `json:"description,omitempty"`
// Type - The type of the entity described in swagger.
Type *string `json:"type,omitempty"`
// Format - The format, if 'type' is not 'object'
Format *string `json:"format,omitempty"`
// Properties - The set of columns within the data table.
Properties map[string]*ColumnSpecification `json:"properties"`
}
// MarshalJSON is the custom marshaler for TableSpecification.
func (ts TableSpecification) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if ts.Title != nil {
objectMap["title"] = ts.Title
}
if ts.Description != nil {
objectMap["description"] = ts.Description
}
if ts.Type != nil {
objectMap["type"] = ts.Type
}
if ts.Format != nil {
objectMap["format"] = ts.Format
}
if ts.Properties != nil {
objectMap["properties"] = ts.Properties
}
return json.Marshal(objectMap)
}
// WebService instance of an Azure ML web service resource.
type WebService struct {
autorest.Response `json:"-"`
// Properties - Contains the property payload that describes the web service.
Properties BasicProperties `json:"properties,omitempty"`
// ID - READ-ONLY; Specifies the resource ID.
ID *string `json:"id,omitempty"`
// Name - READ-ONLY; Specifies the name of the resource.
Name *string `json:"name,omitempty"`
// Location - Specifies the location of the resource.
Location *string `json:"location,omitempty"`
// Type - READ-ONLY; Specifies the type of the resource.
Type *string `json:"type,omitempty"`
// Tags - Contains resource tags defined as key/value pairs.
Tags map[string]*string `json:"tags"`
}
// MarshalJSON is the custom marshaler for WebService.
func (ws WebService) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
objectMap["properties"] = ws.Properties
if ws.Location != nil {
objectMap["location"] = ws.Location
}
if ws.Tags != nil {
objectMap["tags"] = ws.Tags
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for WebService struct.
func (ws *WebService) UnmarshalJSON(body []byte) error {
var m map[string]*json.RawMessage
err := json.Unmarshal(body, &m)
if err != nil {
return err
}
for k, v := range m {
switch k {
case "properties":
if v != nil {
properties, err := unmarshalBasicProperties(*v)
if err != nil {
return err
}
ws.Properties = properties
}
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
ws.ID = &ID
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
ws.Name = &name
}
case "location":
if v != nil {
var location string
err = json.Unmarshal(*v, &location)
if err != nil {
return err
}
ws.Location = &location
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
ws.Type = &typeVar
}
case "tags":
if v != nil {
var tags map[string]*string
err = json.Unmarshal(*v, &tags)
if err != nil {
return err
}
ws.Tags = tags
}
}
}
return nil
}
|