@alicloud/ecd20200930 4.6.2 → 4.6.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/dist/client.d.ts CHANGED
@@ -9588,6 +9588,8 @@ export declare class DescribeOfficeSitesResponseBodyOfficeSites extends $dara.Mo
9588
9588
  * An array of File Storage NAS (NAS) file system IDs.
9589
9589
  */
9590
9590
  fileSystemIds?: string[];
9591
+ isLdap?: boolean;
9592
+ ldapUrl?: string;
9591
9593
  /**
9592
9594
  * @remarks
9593
9595
  * Details about registration logs.
@@ -12098,6 +12100,8 @@ export declare class DescribeSnapshotsResponseBodySnapshots extends $dara.Model
12098
12100
  * Running
12099
12101
  */
12100
12102
  desktopStatus?: string;
12103
+ diskStatus?: string;
12104
+ osType?: string;
12101
12105
  /**
12102
12106
  * @remarks
12103
12107
  * The progress of creating the snapshot. Unit: %.
@@ -33674,6 +33678,7 @@ export declare class DescribeSnapshotsRequest extends $dara.Model {
33674
33678
  * 8051af8d01b5479bec9f5ddf02e4a8fbd0ab6e7e43f8****
33675
33679
  */
33676
33680
  nextToken?: string;
33681
+ osType?: string;
33677
33682
  /**
33678
33683
  * @remarks
33679
33684
  * The region ID. You can call the [DescribeRegions](~~DescribeRegions~~) operation to query the list of regions where Elastic Desktop Service (EDS) Enterprise is available.
package/dist/client.js CHANGED
@@ -4128,6 +4128,8 @@ class DescribeOfficeSitesResponseBodyOfficeSites extends $dara.Model {
4128
4128
  enableInternetAccess: 'EnableInternetAccess',
4129
4129
  enableServiceRoute: 'EnableServiceRoute',
4130
4130
  fileSystemIds: 'FileSystemIds',
4131
+ isLdap: 'IsLdap',
4132
+ ldapUrl: 'LdapUrl',
4131
4133
  logs: 'Logs',
4132
4134
  mfaEnabled: 'MfaEnabled',
4133
4135
  name: 'Name',
@@ -4188,6 +4190,8 @@ class DescribeOfficeSitesResponseBodyOfficeSites extends $dara.Model {
4188
4190
  enableInternetAccess: 'boolean',
4189
4191
  enableServiceRoute: 'boolean',
4190
4192
  fileSystemIds: { 'type': 'array', 'itemType': 'string' },
4193
+ isLdap: 'boolean',
4194
+ ldapUrl: 'string',
4191
4195
  logs: { 'type': 'array', 'itemType': DescribeOfficeSitesResponseBodyOfficeSitesLogs },
4192
4196
  mfaEnabled: 'boolean',
4193
4197
  name: 'string',
@@ -5191,6 +5195,8 @@ class DescribeSnapshotsResponseBodySnapshots extends $dara.Model {
5191
5195
  desktopId: 'DesktopId',
5192
5196
  desktopName: 'DesktopName',
5193
5197
  desktopStatus: 'DesktopStatus',
5198
+ diskStatus: 'DiskStatus',
5199
+ osType: 'OsType',
5194
5200
  progress: 'Progress',
5195
5201
  protocolType: 'ProtocolType',
5196
5202
  remainTime: 'RemainTime',
@@ -5215,6 +5221,8 @@ class DescribeSnapshotsResponseBodySnapshots extends $dara.Model {
5215
5221
  desktopId: 'string',
5216
5222
  desktopName: 'string',
5217
5223
  desktopStatus: 'string',
5224
+ diskStatus: 'string',
5225
+ osType: 'string',
5218
5226
  progress: 'string',
5219
5227
  protocolType: 'string',
5220
5228
  remainTime: 'number',
@@ -17864,6 +17872,7 @@ class DescribeSnapshotsRequest extends $dara.Model {
17864
17872
  endTime: 'EndTime',
17865
17873
  maxResults: 'MaxResults',
17866
17874
  nextToken: 'NextToken',
17875
+ osType: 'OsType',
17867
17876
  regionId: 'RegionId',
17868
17877
  snapshotId: 'SnapshotId',
17869
17878
  snapshotName: 'SnapshotName',
@@ -17880,6 +17889,7 @@ class DescribeSnapshotsRequest extends $dara.Model {
17880
17889
  endTime: 'string',
17881
17890
  maxResults: 'number',
17882
17891
  nextToken: 'string',
17892
+ osType: 'string',
17883
17893
  regionId: 'string',
17884
17894
  snapshotId: 'string',
17885
17895
  snapshotName: 'string',
@@ -35218,6 +35228,9 @@ class Client extends openapi_core_1.default {
35218
35228
  if (!$dara.isNull(request.nextToken)) {
35219
35229
  query["NextToken"] = request.nextToken;
35220
35230
  }
35231
+ if (!$dara.isNull(request.osType)) {
35232
+ query["OsType"] = request.osType;
35233
+ }
35221
35234
  if (!$dara.isNull(request.regionId)) {
35222
35235
  query["RegionId"] = request.regionId;
35223
35236
  }