@azure/arm-sqlvirtualmachine 5.0.0-alpha.20220208.1 → 5.0.0-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +3 -13
- package/LICENSE +1 -1
- package/README.md +11 -0
- package/dist/index.js +529 -19
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist-esm/src/models/index.d.ts +233 -2
- package/dist-esm/src/models/index.d.ts.map +1 -1
- package/dist-esm/src/models/index.js +45 -0
- package/dist-esm/src/models/index.js.map +1 -1
- package/dist-esm/src/models/mappers.d.ts +7 -0
- package/dist-esm/src/models/mappers.d.ts.map +1 -1
- package/dist-esm/src/models/mappers.js +333 -3
- package/dist-esm/src/models/mappers.js.map +1 -1
- package/dist-esm/src/models/parameters.d.ts +1 -1
- package/dist-esm/src/models/parameters.d.ts.map +1 -1
- package/dist-esm/src/models/parameters.js +10 -10
- package/dist-esm/src/models/parameters.js.map +1 -1
- package/dist-esm/src/operations/availabilityGroupListeners.js +1 -1
- package/dist-esm/src/operations/availabilityGroupListeners.js.map +1 -1
- package/dist-esm/src/operations/operations.d.ts +2 -2
- package/dist-esm/src/operations/operations.js +2 -2
- package/dist-esm/src/operations/sqlVirtualMachines.d.ts +33 -1
- package/dist-esm/src/operations/sqlVirtualMachines.d.ts.map +1 -1
- package/dist-esm/src/operations/sqlVirtualMachines.js +129 -1
- package/dist-esm/src/operations/sqlVirtualMachines.js.map +1 -1
- package/dist-esm/src/operationsInterfaces/operations.d.ts +1 -1
- package/dist-esm/src/operationsInterfaces/sqlVirtualMachines.d.ts +33 -1
- package/dist-esm/src/operationsInterfaces/sqlVirtualMachines.d.ts.map +1 -1
- package/dist-esm/src/sqlVirtualMachineManagementClient.js +2 -2
- package/package.json +14 -6
- package/review/arm-sqlvirtualmachine.api.md +171 -1
- package/rollup.config.js +6 -72
- package/src/models/index.ts +258 -3
- package/src/models/mappers.ts +343 -1
- package/src/models/parameters.ts +11 -11
- package/src/operations/availabilityGroupListeners.ts +1 -1
- package/src/operations/operations.ts +2 -2
- package/src/operations/sqlVirtualMachines.ts +195 -1
- package/src/operationsInterfaces/operations.ts +1 -1
- package/src/operationsInterfaces/sqlVirtualMachines.ts +51 -1
- package/src/sqlVirtualMachineManagementClient.ts +2 -2
- package/tsconfig.json +12 -4
- package/types/arm-sqlvirtualmachine.d.ts +287 -3
package/src/models/mappers.ts
CHANGED
|
@@ -74,6 +74,112 @@ export const PrivateIPAddress: coreClient.CompositeMapper = {
|
|
|
74
74
|
}
|
|
75
75
|
};
|
|
76
76
|
|
|
77
|
+
export const AgConfiguration: coreClient.CompositeMapper = {
|
|
78
|
+
type: {
|
|
79
|
+
name: "Composite",
|
|
80
|
+
className: "AgConfiguration",
|
|
81
|
+
modelProperties: {
|
|
82
|
+
replicas: {
|
|
83
|
+
serializedName: "replicas",
|
|
84
|
+
readOnly: true,
|
|
85
|
+
type: {
|
|
86
|
+
name: "Sequence",
|
|
87
|
+
element: {
|
|
88
|
+
type: {
|
|
89
|
+
name: "Composite",
|
|
90
|
+
className: "AgReplica"
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
};
|
|
98
|
+
|
|
99
|
+
export const AgReplica: coreClient.CompositeMapper = {
|
|
100
|
+
type: {
|
|
101
|
+
name: "Composite",
|
|
102
|
+
className: "AgReplica",
|
|
103
|
+
modelProperties: {
|
|
104
|
+
sqlVirtualMachineInstanceId: {
|
|
105
|
+
serializedName: "sqlVirtualMachineInstanceId",
|
|
106
|
+
type: {
|
|
107
|
+
name: "String"
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
role: {
|
|
111
|
+
serializedName: "role",
|
|
112
|
+
type: {
|
|
113
|
+
name: "String"
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
commit: {
|
|
117
|
+
serializedName: "commit",
|
|
118
|
+
type: {
|
|
119
|
+
name: "String"
|
|
120
|
+
}
|
|
121
|
+
},
|
|
122
|
+
failover: {
|
|
123
|
+
serializedName: "failover",
|
|
124
|
+
type: {
|
|
125
|
+
name: "String"
|
|
126
|
+
}
|
|
127
|
+
},
|
|
128
|
+
readableSecondary: {
|
|
129
|
+
serializedName: "readableSecondary",
|
|
130
|
+
type: {
|
|
131
|
+
name: "String"
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
};
|
|
137
|
+
|
|
138
|
+
export const SystemData: coreClient.CompositeMapper = {
|
|
139
|
+
type: {
|
|
140
|
+
name: "Composite",
|
|
141
|
+
className: "SystemData",
|
|
142
|
+
modelProperties: {
|
|
143
|
+
createdBy: {
|
|
144
|
+
serializedName: "createdBy",
|
|
145
|
+
type: {
|
|
146
|
+
name: "String"
|
|
147
|
+
}
|
|
148
|
+
},
|
|
149
|
+
createdByType: {
|
|
150
|
+
serializedName: "createdByType",
|
|
151
|
+
type: {
|
|
152
|
+
name: "String"
|
|
153
|
+
}
|
|
154
|
+
},
|
|
155
|
+
createdAt: {
|
|
156
|
+
serializedName: "createdAt",
|
|
157
|
+
type: {
|
|
158
|
+
name: "DateTime"
|
|
159
|
+
}
|
|
160
|
+
},
|
|
161
|
+
lastModifiedBy: {
|
|
162
|
+
serializedName: "lastModifiedBy",
|
|
163
|
+
type: {
|
|
164
|
+
name: "String"
|
|
165
|
+
}
|
|
166
|
+
},
|
|
167
|
+
lastModifiedByType: {
|
|
168
|
+
serializedName: "lastModifiedByType",
|
|
169
|
+
type: {
|
|
170
|
+
name: "String"
|
|
171
|
+
}
|
|
172
|
+
},
|
|
173
|
+
lastModifiedAt: {
|
|
174
|
+
serializedName: "lastModifiedAt",
|
|
175
|
+
type: {
|
|
176
|
+
name: "DateTime"
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
};
|
|
182
|
+
|
|
77
183
|
export const Resource: coreClient.CompositeMapper = {
|
|
78
184
|
type: {
|
|
79
185
|
name: "Composite",
|
|
@@ -497,6 +603,12 @@ export const AutoBackupSettings: coreClient.CompositeMapper = {
|
|
|
497
603
|
name: "String"
|
|
498
604
|
}
|
|
499
605
|
},
|
|
606
|
+
storageContainerName: {
|
|
607
|
+
serializedName: "storageContainerName",
|
|
608
|
+
type: {
|
|
609
|
+
name: "String"
|
|
610
|
+
}
|
|
611
|
+
},
|
|
500
612
|
storageAccessKey: {
|
|
501
613
|
serializedName: "storageAccessKey",
|
|
502
614
|
type: {
|
|
@@ -527,6 +639,17 @@ export const AutoBackupSettings: coreClient.CompositeMapper = {
|
|
|
527
639
|
name: "String"
|
|
528
640
|
}
|
|
529
641
|
},
|
|
642
|
+
daysOfWeek: {
|
|
643
|
+
serializedName: "daysOfWeek",
|
|
644
|
+
type: {
|
|
645
|
+
name: "Sequence",
|
|
646
|
+
element: {
|
|
647
|
+
type: {
|
|
648
|
+
name: "String"
|
|
649
|
+
}
|
|
650
|
+
}
|
|
651
|
+
}
|
|
652
|
+
},
|
|
530
653
|
fullBackupStartTime: {
|
|
531
654
|
serializedName: "fullBackupStartTime",
|
|
532
655
|
type: {
|
|
@@ -620,6 +743,13 @@ export const ServerConfigurationsManagementSettings: coreClient.CompositeMapper
|
|
|
620
743
|
name: "Composite",
|
|
621
744
|
className: "AdditionalFeaturesServerConfigurations"
|
|
622
745
|
}
|
|
746
|
+
},
|
|
747
|
+
sqlInstanceSettings: {
|
|
748
|
+
serializedName: "sqlInstanceSettings",
|
|
749
|
+
type: {
|
|
750
|
+
name: "Composite",
|
|
751
|
+
className: "SQLInstanceSettings"
|
|
752
|
+
}
|
|
623
753
|
}
|
|
624
754
|
}
|
|
625
755
|
}
|
|
@@ -715,6 +845,45 @@ export const AdditionalFeaturesServerConfigurations: coreClient.CompositeMapper
|
|
|
715
845
|
}
|
|
716
846
|
};
|
|
717
847
|
|
|
848
|
+
export const SQLInstanceSettings: coreClient.CompositeMapper = {
|
|
849
|
+
type: {
|
|
850
|
+
name: "Composite",
|
|
851
|
+
className: "SQLInstanceSettings",
|
|
852
|
+
modelProperties: {
|
|
853
|
+
collation: {
|
|
854
|
+
serializedName: "collation",
|
|
855
|
+
type: {
|
|
856
|
+
name: "String"
|
|
857
|
+
}
|
|
858
|
+
},
|
|
859
|
+
maxDop: {
|
|
860
|
+
serializedName: "maxDop",
|
|
861
|
+
type: {
|
|
862
|
+
name: "Number"
|
|
863
|
+
}
|
|
864
|
+
},
|
|
865
|
+
isOptimizeForAdHocWorkloadsEnabled: {
|
|
866
|
+
serializedName: "isOptimizeForAdHocWorkloadsEnabled",
|
|
867
|
+
type: {
|
|
868
|
+
name: "Boolean"
|
|
869
|
+
}
|
|
870
|
+
},
|
|
871
|
+
minServerMemoryMB: {
|
|
872
|
+
serializedName: "minServerMemoryMB",
|
|
873
|
+
type: {
|
|
874
|
+
name: "Number"
|
|
875
|
+
}
|
|
876
|
+
},
|
|
877
|
+
maxServerMemoryMB: {
|
|
878
|
+
serializedName: "maxServerMemoryMB",
|
|
879
|
+
type: {
|
|
880
|
+
name: "Number"
|
|
881
|
+
}
|
|
882
|
+
}
|
|
883
|
+
}
|
|
884
|
+
}
|
|
885
|
+
};
|
|
886
|
+
|
|
718
887
|
export const StorageConfigurationSettings: coreClient.CompositeMapper = {
|
|
719
888
|
type: {
|
|
720
889
|
name: "Composite",
|
|
@@ -738,7 +907,13 @@ export const StorageConfigurationSettings: coreClient.CompositeMapper = {
|
|
|
738
907
|
serializedName: "sqlTempDbSettings",
|
|
739
908
|
type: {
|
|
740
909
|
name: "Composite",
|
|
741
|
-
className: "
|
|
910
|
+
className: "SQLTempDbSettings"
|
|
911
|
+
}
|
|
912
|
+
},
|
|
913
|
+
sqlSystemDbOnDataDisk: {
|
|
914
|
+
serializedName: "sqlSystemDbOnDataDisk",
|
|
915
|
+
type: {
|
|
916
|
+
name: "Boolean"
|
|
742
917
|
}
|
|
743
918
|
},
|
|
744
919
|
diskConfigurationType: {
|
|
@@ -783,6 +958,138 @@ export const SQLStorageSettings: coreClient.CompositeMapper = {
|
|
|
783
958
|
}
|
|
784
959
|
};
|
|
785
960
|
|
|
961
|
+
export const SQLTempDbSettings: coreClient.CompositeMapper = {
|
|
962
|
+
type: {
|
|
963
|
+
name: "Composite",
|
|
964
|
+
className: "SQLTempDbSettings",
|
|
965
|
+
modelProperties: {
|
|
966
|
+
dataFileSize: {
|
|
967
|
+
serializedName: "dataFileSize",
|
|
968
|
+
type: {
|
|
969
|
+
name: "Number"
|
|
970
|
+
}
|
|
971
|
+
},
|
|
972
|
+
dataGrowth: {
|
|
973
|
+
serializedName: "dataGrowth",
|
|
974
|
+
type: {
|
|
975
|
+
name: "Number"
|
|
976
|
+
}
|
|
977
|
+
},
|
|
978
|
+
logFileSize: {
|
|
979
|
+
serializedName: "logFileSize",
|
|
980
|
+
type: {
|
|
981
|
+
name: "Number"
|
|
982
|
+
}
|
|
983
|
+
},
|
|
984
|
+
logGrowth: {
|
|
985
|
+
serializedName: "logGrowth",
|
|
986
|
+
type: {
|
|
987
|
+
name: "Number"
|
|
988
|
+
}
|
|
989
|
+
},
|
|
990
|
+
dataFileCount: {
|
|
991
|
+
serializedName: "dataFileCount",
|
|
992
|
+
type: {
|
|
993
|
+
name: "Number"
|
|
994
|
+
}
|
|
995
|
+
},
|
|
996
|
+
luns: {
|
|
997
|
+
serializedName: "luns",
|
|
998
|
+
type: {
|
|
999
|
+
name: "Sequence",
|
|
1000
|
+
element: {
|
|
1001
|
+
type: {
|
|
1002
|
+
name: "Number"
|
|
1003
|
+
}
|
|
1004
|
+
}
|
|
1005
|
+
}
|
|
1006
|
+
},
|
|
1007
|
+
defaultFilePath: {
|
|
1008
|
+
serializedName: "defaultFilePath",
|
|
1009
|
+
type: {
|
|
1010
|
+
name: "String"
|
|
1011
|
+
}
|
|
1012
|
+
}
|
|
1013
|
+
}
|
|
1014
|
+
}
|
|
1015
|
+
};
|
|
1016
|
+
|
|
1017
|
+
export const AssessmentSettings: coreClient.CompositeMapper = {
|
|
1018
|
+
type: {
|
|
1019
|
+
name: "Composite",
|
|
1020
|
+
className: "AssessmentSettings",
|
|
1021
|
+
modelProperties: {
|
|
1022
|
+
enable: {
|
|
1023
|
+
serializedName: "enable",
|
|
1024
|
+
type: {
|
|
1025
|
+
name: "Boolean"
|
|
1026
|
+
}
|
|
1027
|
+
},
|
|
1028
|
+
runImmediately: {
|
|
1029
|
+
serializedName: "runImmediately",
|
|
1030
|
+
type: {
|
|
1031
|
+
name: "Boolean"
|
|
1032
|
+
}
|
|
1033
|
+
},
|
|
1034
|
+
schedule: {
|
|
1035
|
+
serializedName: "schedule",
|
|
1036
|
+
type: {
|
|
1037
|
+
name: "Composite",
|
|
1038
|
+
className: "Schedule"
|
|
1039
|
+
}
|
|
1040
|
+
}
|
|
1041
|
+
}
|
|
1042
|
+
}
|
|
1043
|
+
};
|
|
1044
|
+
|
|
1045
|
+
export const Schedule: coreClient.CompositeMapper = {
|
|
1046
|
+
type: {
|
|
1047
|
+
name: "Composite",
|
|
1048
|
+
className: "Schedule",
|
|
1049
|
+
modelProperties: {
|
|
1050
|
+
enable: {
|
|
1051
|
+
serializedName: "enable",
|
|
1052
|
+
type: {
|
|
1053
|
+
name: "Boolean"
|
|
1054
|
+
}
|
|
1055
|
+
},
|
|
1056
|
+
weeklyInterval: {
|
|
1057
|
+
serializedName: "weeklyInterval",
|
|
1058
|
+
type: {
|
|
1059
|
+
name: "Number"
|
|
1060
|
+
}
|
|
1061
|
+
},
|
|
1062
|
+
monthlyOccurrence: {
|
|
1063
|
+
serializedName: "monthlyOccurrence",
|
|
1064
|
+
type: {
|
|
1065
|
+
name: "Number"
|
|
1066
|
+
}
|
|
1067
|
+
},
|
|
1068
|
+
dayOfWeek: {
|
|
1069
|
+
serializedName: "dayOfWeek",
|
|
1070
|
+
type: {
|
|
1071
|
+
name: "Enum",
|
|
1072
|
+
allowedValues: [
|
|
1073
|
+
"Monday",
|
|
1074
|
+
"Tuesday",
|
|
1075
|
+
"Wednesday",
|
|
1076
|
+
"Thursday",
|
|
1077
|
+
"Friday",
|
|
1078
|
+
"Saturday",
|
|
1079
|
+
"Sunday"
|
|
1080
|
+
]
|
|
1081
|
+
}
|
|
1082
|
+
},
|
|
1083
|
+
startTime: {
|
|
1084
|
+
serializedName: "startTime",
|
|
1085
|
+
type: {
|
|
1086
|
+
name: "String"
|
|
1087
|
+
}
|
|
1088
|
+
}
|
|
1089
|
+
}
|
|
1090
|
+
}
|
|
1091
|
+
};
|
|
1092
|
+
|
|
786
1093
|
export const SqlVirtualMachineUpdate: coreClient.CompositeMapper = {
|
|
787
1094
|
type: {
|
|
788
1095
|
name: "Composite",
|
|
@@ -839,6 +1146,13 @@ export const AvailabilityGroupListener: coreClient.CompositeMapper = {
|
|
|
839
1146
|
className: "AvailabilityGroupListener",
|
|
840
1147
|
modelProperties: {
|
|
841
1148
|
...ProxyResource.type.modelProperties,
|
|
1149
|
+
systemData: {
|
|
1150
|
+
serializedName: "systemData",
|
|
1151
|
+
type: {
|
|
1152
|
+
name: "Composite",
|
|
1153
|
+
className: "SystemData"
|
|
1154
|
+
}
|
|
1155
|
+
},
|
|
842
1156
|
provisioningState: {
|
|
843
1157
|
serializedName: "properties.provisioningState",
|
|
844
1158
|
readOnly: true,
|
|
@@ -875,6 +1189,13 @@ export const AvailabilityGroupListener: coreClient.CompositeMapper = {
|
|
|
875
1189
|
type: {
|
|
876
1190
|
name: "Number"
|
|
877
1191
|
}
|
|
1192
|
+
},
|
|
1193
|
+
availabilityGroupConfiguration: {
|
|
1194
|
+
serializedName: "properties.availabilityGroupConfiguration",
|
|
1195
|
+
type: {
|
|
1196
|
+
name: "Composite",
|
|
1197
|
+
className: "AgConfiguration"
|
|
1198
|
+
}
|
|
878
1199
|
}
|
|
879
1200
|
}
|
|
880
1201
|
}
|
|
@@ -886,6 +1207,13 @@ export const SqlVirtualMachineGroup: coreClient.CompositeMapper = {
|
|
|
886
1207
|
className: "SqlVirtualMachineGroup",
|
|
887
1208
|
modelProperties: {
|
|
888
1209
|
...TrackedResource.type.modelProperties,
|
|
1210
|
+
systemData: {
|
|
1211
|
+
serializedName: "systemData",
|
|
1212
|
+
type: {
|
|
1213
|
+
name: "Composite",
|
|
1214
|
+
className: "SystemData"
|
|
1215
|
+
}
|
|
1216
|
+
},
|
|
889
1217
|
provisioningState: {
|
|
890
1218
|
serializedName: "properties.provisioningState",
|
|
891
1219
|
readOnly: true,
|
|
@@ -950,6 +1278,13 @@ export const SqlVirtualMachine: coreClient.CompositeMapper = {
|
|
|
950
1278
|
className: "ResourceIdentity"
|
|
951
1279
|
}
|
|
952
1280
|
},
|
|
1281
|
+
systemData: {
|
|
1282
|
+
serializedName: "systemData",
|
|
1283
|
+
type: {
|
|
1284
|
+
name: "Composite",
|
|
1285
|
+
className: "SystemData"
|
|
1286
|
+
}
|
|
1287
|
+
},
|
|
953
1288
|
virtualMachineResourceId: {
|
|
954
1289
|
serializedName: "properties.virtualMachineResourceId",
|
|
955
1290
|
type: {
|
|
@@ -1034,6 +1369,13 @@ export const SqlVirtualMachine: coreClient.CompositeMapper = {
|
|
|
1034
1369
|
name: "Composite",
|
|
1035
1370
|
className: "StorageConfigurationSettings"
|
|
1036
1371
|
}
|
|
1372
|
+
},
|
|
1373
|
+
assessmentSettings: {
|
|
1374
|
+
serializedName: "properties.assessmentSettings",
|
|
1375
|
+
type: {
|
|
1376
|
+
name: "Composite",
|
|
1377
|
+
className: "AssessmentSettings"
|
|
1378
|
+
}
|
|
1037
1379
|
}
|
|
1038
1380
|
}
|
|
1039
1381
|
}
|
package/src/models/parameters.ts
CHANGED
|
@@ -76,6 +76,16 @@ export const availabilityGroupListenerName: OperationURLParameter = {
|
|
|
76
76
|
}
|
|
77
77
|
};
|
|
78
78
|
|
|
79
|
+
export const expand: OperationQueryParameter = {
|
|
80
|
+
parameterPath: ["options", "expand"],
|
|
81
|
+
mapper: {
|
|
82
|
+
serializedName: "$expand",
|
|
83
|
+
type: {
|
|
84
|
+
name: "String"
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
};
|
|
88
|
+
|
|
79
89
|
export const subscriptionId: OperationURLParameter = {
|
|
80
90
|
parameterPath: "subscriptionId",
|
|
81
91
|
mapper: {
|
|
@@ -90,7 +100,7 @@ export const subscriptionId: OperationURLParameter = {
|
|
|
90
100
|
export const apiVersion: OperationQueryParameter = {
|
|
91
101
|
parameterPath: "apiVersion",
|
|
92
102
|
mapper: {
|
|
93
|
-
defaultValue: "
|
|
103
|
+
defaultValue: "2021-11-01-preview",
|
|
94
104
|
isConstant: true,
|
|
95
105
|
serializedName: "api-version",
|
|
96
106
|
type: {
|
|
@@ -149,16 +159,6 @@ export const sqlVirtualMachineName: OperationURLParameter = {
|
|
|
149
159
|
}
|
|
150
160
|
};
|
|
151
161
|
|
|
152
|
-
export const expand: OperationQueryParameter = {
|
|
153
|
-
parameterPath: ["options", "expand"],
|
|
154
|
-
mapper: {
|
|
155
|
-
serializedName: "$expand",
|
|
156
|
-
type: {
|
|
157
|
-
name: "String"
|
|
158
|
-
}
|
|
159
|
-
}
|
|
160
|
-
};
|
|
161
|
-
|
|
162
162
|
export const parameters3: OperationParameter = {
|
|
163
163
|
parameterPath: "parameters",
|
|
164
164
|
mapper: SqlVirtualMachineMapper
|
|
@@ -384,7 +384,7 @@ const getOperationSpec: coreClient.OperationSpec = {
|
|
|
384
384
|
},
|
|
385
385
|
default: {}
|
|
386
386
|
},
|
|
387
|
-
queryParameters: [Parameters.apiVersion],
|
|
387
|
+
queryParameters: [Parameters.expand, Parameters.apiVersion],
|
|
388
388
|
urlParameters: [
|
|
389
389
|
Parameters.$host,
|
|
390
390
|
Parameters.resourceGroupName,
|
|
@@ -34,7 +34,7 @@ export class OperationsImpl implements Operations {
|
|
|
34
34
|
}
|
|
35
35
|
|
|
36
36
|
/**
|
|
37
|
-
* Lists all of the available SQL Rest API operations.
|
|
37
|
+
* Lists all of the available SQL Virtual Machine Rest API operations.
|
|
38
38
|
* @param options The options parameters.
|
|
39
39
|
*/
|
|
40
40
|
public list(
|
|
@@ -76,7 +76,7 @@ export class OperationsImpl implements Operations {
|
|
|
76
76
|
}
|
|
77
77
|
|
|
78
78
|
/**
|
|
79
|
-
* Lists all of the available SQL Rest API operations.
|
|
79
|
+
* Lists all of the available SQL Virtual Machine Rest API operations.
|
|
80
80
|
* @param options The options parameters.
|
|
81
81
|
*/
|
|
82
82
|
private _list(
|