gd-sprest-def 1.9.0 → 1.9.2

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.
@@ -64,7 +64,7 @@ export interface onDemandExecutionOnly {
64
64
  **********************************************/
65
65
  export interface parameter {
66
66
  name: string;
67
- values: Array<string>[];
67
+ values: Array<string>;
68
68
  valueType: EnumTypes.valueType;
69
69
  }
70
70
  /*********************************************
@@ -285,7 +285,7 @@ export interface addIn {
285
285
  **********************************************/
286
286
  export interface apiApplication {
287
287
  acceptMappedClaims: boolean;
288
- knownClientApplications: Array<any>[];
288
+ knownClientApplications: Array<any>;
289
289
  oauth2PermissionScopes: permissionScope[];
290
290
  preAuthorizedApplications: preAuthorizedApplication[];
291
291
  requestedAccessTokenVersion: number;
@@ -294,7 +294,7 @@ export interface apiApplication {
294
294
  * appRole
295
295
  **********************************************/
296
296
  export interface appRole {
297
- allowedMemberTypes: Array<string>[];
297
+ allowedMemberTypes: Array<string>;
298
298
  description: string;
299
299
  displayName: string;
300
300
  id: any;
@@ -347,7 +347,7 @@ export interface optionalClaims {
347
347
  * parentalControlSettings
348
348
  **********************************************/
349
349
  export interface parentalControlSettings {
350
- countriesBlockedForMinors: Array<string>[];
350
+ countriesBlockedForMinors: Array<string>;
351
351
  legalAgeGroupRule: string;
352
352
  }
353
353
  /*********************************************
@@ -366,7 +366,7 @@ export interface passwordCredential {
366
366
  * publicClientApplication
367
367
  **********************************************/
368
368
  export interface publicClientApplication {
369
- redirectUris: Array<string>[];
369
+ redirectUris: Array<string>;
370
370
  }
371
371
  /*********************************************
372
372
  * requestSignatureVerification
@@ -396,7 +396,7 @@ export interface servicePrincipalLockConfiguration {
396
396
  * spaApplication
397
397
  **********************************************/
398
398
  export interface spaApplication {
399
- redirectUris: Array<string>[];
399
+ redirectUris: Array<string>;
400
400
  }
401
401
  /*********************************************
402
402
  * verifiedPublisher
@@ -413,7 +413,7 @@ export interface webApplication {
413
413
  homePageUrl: string;
414
414
  implicitGrantSettings: implicitGrantSettings;
415
415
  logoutUrl: string;
416
- redirectUris: Array<string>[];
416
+ redirectUris: Array<string>;
417
417
  redirectUriSettings: redirectUriSettings[];
418
418
  }
419
419
  /*********************************************
@@ -427,7 +427,7 @@ export interface assignedLabel {
427
427
  * assignedLicense
428
428
  **********************************************/
429
429
  export interface assignedLicense {
430
- disabledPlans: Array<any>[];
430
+ disabledPlans: Array<any>;
431
431
  skuId: any;
432
432
  }
433
433
  /*********************************************
@@ -477,7 +477,7 @@ export interface assignedPlan {
477
477
  * authorizationInfo
478
478
  **********************************************/
479
479
  export interface authorizationInfo {
480
- certificateUserIds: Array<string>[];
480
+ certificateUserIds: Array<string>;
481
481
  }
482
482
  /*********************************************
483
483
  * customSecurityAttributeValue
@@ -505,7 +505,7 @@ export interface objectIdentity {
505
505
  **********************************************/
506
506
  export interface licenseAssignmentState {
507
507
  assignedByGroup: string;
508
- disabledPlans: Array<any>[];
508
+ disabledPlans: Array<any>;
509
509
  error: string;
510
510
  lastUpdatedDateTime: any;
511
511
  skuId: any;
@@ -581,8 +581,8 @@ export interface appIdentity {
581
581
  **********************************************/
582
582
  export interface appliedConditionalAccessPolicy {
583
583
  displayName: string;
584
- enforcedGrantControls: Array<string>[];
585
- enforcedSessionControls: Array<string>[];
584
+ enforcedGrantControls: Array<string>;
585
+ enforcedSessionControls: Array<string>;
586
586
  id: string;
587
587
  result: EnumTypes.appliedConditionalAccessPolicyResult;
588
588
  }
@@ -852,7 +852,7 @@ export interface authenticationMethodsRegistrationCampaignIncludeTarget {
852
852
  * fido2KeyRestrictions
853
853
  **********************************************/
854
854
  export interface fido2KeyRestrictions {
855
- aaGuids: Array<string>[];
855
+ aaGuids: Array<string>;
856
856
  enforcementType: EnumTypes.fido2RestrictionEnforcementType;
857
857
  isEnforced: boolean;
858
858
  }
@@ -874,7 +874,7 @@ export interface registrationEnforcement {
874
874
  **********************************************/
875
875
  export interface updateAllowedCombinationsResult {
876
876
  additionalInformation: string;
877
- conditionalAccessReferences: Array<string>[];
877
+ conditionalAccessReferences: Array<string>;
878
878
  currentCombinations: EnumTypes.authenticationMethodModes[];
879
879
  previousCombinations: EnumTypes.authenticationMethodModes[];
880
880
  }
@@ -947,11 +947,11 @@ export interface bookingCustomerInformation {
947
947
  export interface bookingQuestionAnswer {
948
948
  answer: string;
949
949
  answerInputType: EnumTypes.answerInputType;
950
- answerOptions: Array<string>[];
950
+ answerOptions: Array<string>;
951
951
  isRequired: boolean;
952
952
  question: string;
953
953
  questionId: string;
954
- selectedOptions: Array<string>[];
954
+ selectedOptions: Array<string>;
955
955
  }
956
956
  /*********************************************
957
957
  * location
@@ -1092,7 +1092,7 @@ export interface cloudPcAuditActor {
1092
1092
  remoteUserId: string;
1093
1093
  servicePrincipalName: string;
1094
1094
  userId: string;
1095
- userPermissions: Array<string>[];
1095
+ userPermissions: Array<string>;
1096
1096
  userPrincipalName: string;
1097
1097
  userRoleScopeTags: cloudPcUserRoleScopeTagInfo[];
1098
1098
  }
@@ -1345,13 +1345,13 @@ export interface subjectRightsRequestDetail {
1345
1345
  * subjectRightsRequestEnumeratedMailboxLocation
1346
1346
  **********************************************/
1347
1347
  export interface subjectRightsRequestEnumeratedMailboxLocation {
1348
- userPrincipalNames: Array<string>[];
1348
+ userPrincipalNames: Array<string>;
1349
1349
  }
1350
1350
  /*********************************************
1351
1351
  * subjectRightsRequestEnumeratedSiteLocation
1352
1352
  **********************************************/
1353
1353
  export interface subjectRightsRequestEnumeratedSiteLocation {
1354
- urls: Array<string>[];
1354
+ urls: Array<string>;
1355
1355
  }
1356
1356
  /*********************************************
1357
1357
  * subjectRightsRequestHistory
@@ -1461,7 +1461,7 @@ export interface apiAuthenticationConfigurationBase {
1461
1461
  * assignmentOrder
1462
1462
  **********************************************/
1463
1463
  export interface assignmentOrder {
1464
- order: Array<string>[];
1464
+ order: Array<string>;
1465
1465
  }
1466
1466
  /*********************************************
1467
1467
  * authenticationAttributeCollectionInputConfiguration
@@ -1711,8 +1711,8 @@ export interface azureADRegistrationPolicy {
1711
1711
  * enumeratedDeviceRegistrationMembership
1712
1712
  **********************************************/
1713
1713
  export interface enumeratedDeviceRegistrationMembership {
1714
- groups: Array<string>[];
1715
- users: Array<string>[];
1714
+ groups: Array<string>;
1715
+ users: Array<string>;
1716
1716
  }
1717
1717
  /*********************************************
1718
1718
  * localAdminPasswordSettings
@@ -1739,7 +1739,7 @@ export interface alternativeSecurityId {
1739
1739
  **********************************************/
1740
1740
  export interface preAuthorizedApplication {
1741
1741
  appId: string;
1742
- delegatedPermissionIds: Array<string>[];
1742
+ delegatedPermissionIds: Array<string>;
1743
1743
  }
1744
1744
  /*********************************************
1745
1745
  * appManagementConfiguration
@@ -1880,7 +1880,7 @@ export interface defaultUserRolePermissions {
1880
1880
  allowedToCreateTenants: boolean;
1881
1881
  allowedToReadBitlockerKeysForOwnedDevice: boolean;
1882
1882
  allowedToReadOtherUsers: boolean;
1883
- permissionGrantPoliciesAssigned: Array<string>[];
1883
+ permissionGrantPoliciesAssigned: Array<string>;
1884
1884
  }
1885
1885
  /*********************************************
1886
1886
  * domainState
@@ -2004,7 +2004,7 @@ export interface onPremisesDirectorySynchronizationFeature {
2004
2004
  * optionalClaim
2005
2005
  **********************************************/
2006
2006
  export interface optionalClaim {
2007
- additionalProperties: Array<string>[];
2007
+ additionalProperties: Array<string>;
2008
2008
  essential: boolean;
2009
2009
  name: string;
2010
2010
  source: string;
@@ -2106,9 +2106,9 @@ export interface tenantInformation {
2106
2106
  * unifiedRolePermission
2107
2107
  **********************************************/
2108
2108
  export interface unifiedRolePermission {
2109
- allowedResourceActions: Array<string>[];
2109
+ allowedResourceActions: Array<string>;
2110
2110
  condition: string;
2111
- excludedResourceActions: Array<string>[];
2111
+ excludedResourceActions: Array<string>;
2112
2112
  }
2113
2113
  /*********************************************
2114
2114
  * verifiedDomain
@@ -2180,7 +2180,7 @@ export interface educationAssignmentGroupRecipient {
2180
2180
  * educationAssignmentIndividualRecipient
2181
2181
  **********************************************/
2182
2182
  export interface educationAssignmentIndividualRecipient {
2183
- recipients: Array<string>[];
2183
+ recipients: Array<string>;
2184
2184
  }
2185
2185
  /*********************************************
2186
2186
  * educationAssignmentPointsGrade
@@ -2397,7 +2397,7 @@ export interface artifactQuery {
2397
2397
  * restorePointSearchResponse
2398
2398
  **********************************************/
2399
2399
  export interface restorePointSearchResponse {
2400
- noResultProtectionUnitIds: Array<string>[];
2400
+ noResultProtectionUnitIds: Array<string>;
2401
2401
  searchResponseId: string;
2402
2402
  searchResults: restorePointSearchResult[];
2403
2403
  }
@@ -2914,7 +2914,7 @@ export interface mailTipsError {
2914
2914
  * messageRuleActions
2915
2915
  **********************************************/
2916
2916
  export interface messageRuleActions {
2917
- assignCategories: Array<string>[];
2917
+ assignCategories: Array<string>;
2918
2918
  copyToFolder: string;
2919
2919
  delete: boolean;
2920
2920
  forwardAsAttachmentTo: recipient[];
@@ -2930,12 +2930,12 @@ export interface messageRuleActions {
2930
2930
  * messageRulePredicates
2931
2931
  **********************************************/
2932
2932
  export interface messageRulePredicates {
2933
- bodyContains: Array<string>[];
2934
- bodyOrSubjectContains: Array<string>[];
2935
- categories: Array<string>[];
2933
+ bodyContains: Array<string>;
2934
+ bodyOrSubjectContains: Array<string>;
2935
+ categories: Array<string>;
2936
2936
  fromAddresses: recipient[];
2937
2937
  hasAttachments: boolean;
2938
- headerContains: Array<string>[];
2938
+ headerContains: Array<string>;
2939
2939
  importance: EnumTypes.importance;
2940
2940
  isApprovalRequest: boolean;
2941
2941
  isAutomaticForward: boolean;
@@ -2950,15 +2950,15 @@ export interface messageRulePredicates {
2950
2950
  isVoicemail: boolean;
2951
2951
  messageActionFlag: EnumTypes.messageActionFlag;
2952
2952
  notSentToMe: boolean;
2953
- recipientContains: Array<string>[];
2954
- senderContains: Array<string>[];
2953
+ recipientContains: Array<string>;
2954
+ senderContains: Array<string>;
2955
2955
  sensitivity: EnumTypes.sensitivity;
2956
2956
  sentCcMe: boolean;
2957
2957
  sentOnlyToMe: boolean;
2958
2958
  sentToAddresses: recipient[];
2959
2959
  sentToMe: boolean;
2960
2960
  sentToOrCcMe: boolean;
2961
- subjectContains: Array<string>[];
2961
+ subjectContains: Array<string>;
2962
2962
  withinSizeRange: sizeRange;
2963
2963
  }
2964
2964
  /*********************************************
@@ -2976,7 +2976,7 @@ export interface onlineMeetingInfo {
2976
2976
  joinUrl: string;
2977
2977
  phones: phone[];
2978
2978
  quickDial: string;
2979
- tollFreeNumbers: Array<string>[];
2979
+ tollFreeNumbers: Array<string>;
2980
2980
  tollNumber: string;
2981
2981
  }
2982
2982
  /*********************************************
@@ -3070,7 +3070,7 @@ export interface timeZoneInformation {
3070
3070
  **********************************************/
3071
3071
  export interface uploadSession {
3072
3072
  expirationDateTime: any;
3073
- nextExpectedRanges: Array<string>[];
3073
+ nextExpectedRanges: Array<string>;
3074
3074
  uploadUrl: string;
3075
3075
  }
3076
3076
  /*********************************************
@@ -3153,7 +3153,7 @@ export interface calculatedColumn {
3153
3153
  **********************************************/
3154
3154
  export interface choiceColumn {
3155
3155
  allowTextEntry: boolean;
3156
- choices: Array<string>[];
3156
+ choices: Array<string>;
3157
3157
  displayAs: string;
3158
3158
  }
3159
3159
  /*********************************************
@@ -3711,7 +3711,7 @@ export interface stringKeyAttributeMappingSourceValuePair {
3711
3711
  * containerFilter
3712
3712
  **********************************************/
3713
3713
  export interface containerFilter {
3714
- includedContainers: Array<string>[];
3714
+ includedContainers: Array<string>;
3715
3715
  }
3716
3716
  /*********************************************
3717
3717
  * expressionInputObject
@@ -3727,7 +3727,7 @@ export interface objectDefinition {
3727
3727
  attributes: attributeDefinition[];
3728
3728
  metadata: objectDefinitionMetadataEntry[];
3729
3729
  name: string;
3730
- supportedApis: Array<string>[];
3730
+ supportedApis: Array<string>;
3731
3731
  }
3732
3732
  /*********************************************
3733
3733
  * stringKeyObjectValuePair
@@ -3762,13 +3762,13 @@ export interface filterClause {
3762
3762
  * filterOperand
3763
3763
  **********************************************/
3764
3764
  export interface filterOperand {
3765
- values: Array<string>[];
3765
+ values: Array<string>;
3766
3766
  }
3767
3767
  /*********************************************
3768
3768
  * groupFilter
3769
3769
  **********************************************/
3770
3770
  export interface groupFilter {
3771
- includedGroups: Array<string>[];
3771
+ includedGroups: Array<string>;
3772
3772
  }
3773
3773
  /*********************************************
3774
3774
  * objectDefinitionMetadataEntry
@@ -3802,7 +3802,7 @@ export interface objectMappingMetadataEntry {
3802
3802
  **********************************************/
3803
3803
  export interface parseExpressionResponse {
3804
3804
  error: publicError;
3805
- evaluationResult: Array<string>[];
3805
+ evaluationResult: Array<string>;
3806
3806
  evaluationSucceeded: boolean;
3807
3807
  parsedExpression: attributeMappingSource;
3808
3808
  parsingSucceeded: boolean;
@@ -4080,8 +4080,8 @@ export interface accessReviewScheduleSettings {
4080
4080
  * accessReviewStageSettings
4081
4081
  **********************************************/
4082
4082
  export interface accessReviewStageSettings {
4083
- decisionsThatWillMoveToNextStage: Array<string>[];
4084
- dependsOn: Array<string>[];
4083
+ decisionsThatWillMoveToNextStage: Array<string>;
4084
+ dependsOn: Array<string>;
4085
4085
  durationInDays: number;
4086
4086
  fallbackReviewers: accessReviewReviewerScope[];
4087
4087
  recommendationInsightSettings: accessReviewRecommendationInsightSetting[];
@@ -4187,10 +4187,10 @@ export interface conditionalAccessAllExternalTenants {
4187
4187
  **********************************************/
4188
4188
  export interface conditionalAccessApplications {
4189
4189
  applicationFilter: conditionalAccessFilter;
4190
- excludeApplications: Array<string>[];
4191
- includeApplications: Array<string>[];
4192
- includeAuthenticationContextClassReferences: Array<string>[];
4193
- includeUserActions: Array<string>[];
4190
+ excludeApplications: Array<string>;
4191
+ includeApplications: Array<string>;
4192
+ includeAuthenticationContextClassReferences: Array<string>;
4193
+ includeUserActions: Array<string>;
4194
4194
  }
4195
4195
  /*********************************************
4196
4196
  * conditionalAccessFilter
@@ -4209,8 +4209,8 @@ export interface conditionalAccessAuthenticationFlows {
4209
4209
  * conditionalAccessClientApplications
4210
4210
  **********************************************/
4211
4211
  export interface conditionalAccessClientApplications {
4212
- excludeServicePrincipals: Array<string>[];
4213
- includeServicePrincipals: Array<string>[];
4212
+ excludeServicePrincipals: Array<string>;
4213
+ includeServicePrincipals: Array<string>;
4214
4214
  servicePrincipalFilter: conditionalAccessFilter;
4215
4215
  }
4216
4216
  /*********************************************
@@ -4240,8 +4240,8 @@ export interface conditionalAccessDevices {
4240
4240
  * conditionalAccessLocations
4241
4241
  **********************************************/
4242
4242
  export interface conditionalAccessLocations {
4243
- excludeLocations: Array<string>[];
4244
- includeLocations: Array<string>[];
4243
+ excludeLocations: Array<string>;
4244
+ includeLocations: Array<string>;
4245
4245
  }
4246
4246
  /*********************************************
4247
4247
  * conditionalAccessPlatforms
@@ -4254,29 +4254,29 @@ export interface conditionalAccessPlatforms {
4254
4254
  * conditionalAccessUsers
4255
4255
  **********************************************/
4256
4256
  export interface conditionalAccessUsers {
4257
- excludeGroups: Array<string>[];
4257
+ excludeGroups: Array<string>;
4258
4258
  excludeGuestsOrExternalUsers: conditionalAccessGuestsOrExternalUsers;
4259
- excludeRoles: Array<string>[];
4260
- excludeUsers: Array<string>[];
4261
- includeGroups: Array<string>[];
4259
+ excludeRoles: Array<string>;
4260
+ excludeUsers: Array<string>;
4261
+ includeGroups: Array<string>;
4262
4262
  includeGuestsOrExternalUsers: conditionalAccessGuestsOrExternalUsers;
4263
- includeRoles: Array<string>[];
4264
- includeUsers: Array<string>[];
4263
+ includeRoles: Array<string>;
4264
+ includeUsers: Array<string>;
4265
4265
  }
4266
4266
  /*********************************************
4267
4267
  * conditionalAccessEnumeratedExternalTenants
4268
4268
  **********************************************/
4269
4269
  export interface conditionalAccessEnumeratedExternalTenants {
4270
- members: Array<string>[];
4270
+ members: Array<string>;
4271
4271
  }
4272
4272
  /*********************************************
4273
4273
  * conditionalAccessGrantControls
4274
4274
  **********************************************/
4275
4275
  export interface conditionalAccessGrantControls {
4276
4276
  builtInControls: EnumTypes.conditionalAccessGrantControl[];
4277
- customAuthenticationFactors: Array<string>[];
4277
+ customAuthenticationFactors: Array<string>;
4278
4278
  operator: string;
4279
- termsOfUse: Array<string>[];
4279
+ termsOfUse: Array<string>;
4280
4280
  }
4281
4281
  /*********************************************
4282
4282
  * conditionalAccessGuestsOrExternalUsers
@@ -4341,14 +4341,14 @@ export interface iPv6CidrRange {
4341
4341
  **********************************************/
4342
4342
  export interface riskServicePrincipalActivity {
4343
4343
  detail: EnumTypes.riskDetail;
4344
- riskEventTypes: Array<string>[];
4344
+ riskEventTypes: Array<string>;
4345
4345
  }
4346
4346
  /*********************************************
4347
4347
  * riskUserActivity
4348
4348
  **********************************************/
4349
4349
  export interface riskUserActivity {
4350
4350
  detail: EnumTypes.riskDetail;
4351
- riskEventTypes: Array<string>[];
4351
+ riskEventTypes: Array<string>;
4352
4352
  }
4353
4353
  /*********************************************
4354
4354
  * accessPackageAnswer
@@ -4954,7 +4954,7 @@ export interface auditActor {
4954
4954
  ipAddress: string;
4955
4955
  servicePrincipalName: string;
4956
4956
  userId: string;
4957
- userPermissions: Array<string>[];
4957
+ userPermissions: Array<string>;
4958
4958
  userPrincipalName: string;
4959
4959
  }
4960
4960
  /*********************************************
@@ -5249,7 +5249,7 @@ export interface sharedPCAccountManagerPolicy {
5249
5249
  **********************************************/
5250
5250
  export interface windows10NetworkProxyServer {
5251
5251
  address: string;
5252
- exceptions: Array<string>[];
5252
+ exceptions: Array<string>;
5253
5253
  useForLocalAddresses: boolean;
5254
5254
  }
5255
5255
  /*********************************************
@@ -5744,7 +5744,7 @@ export interface windowsInformationProtectionProxiedDomainCollection {
5744
5744
  **********************************************/
5745
5745
  export interface windowsInformationProtectionResourceCollection {
5746
5746
  displayName: string;
5747
- resources: Array<string>[];
5747
+ resources: Array<string>;
5748
5748
  }
5749
5749
  /*********************************************
5750
5750
  * windowsInformationProtectionStoreApp
@@ -5756,8 +5756,8 @@ export interface windowsInformationProtectionStoreApp {
5756
5756
  * resourceAction
5757
5757
  **********************************************/
5758
5758
  export interface resourceAction {
5759
- allowedResourceActions: Array<string>[];
5760
- notAllowedResourceActions: Array<string>[];
5759
+ allowedResourceActions: Array<string>;
5760
+ notAllowedResourceActions: Array<string>;
5761
5761
  }
5762
5762
  /*********************************************
5763
5763
  * rolePermission
@@ -5850,7 +5850,7 @@ export interface bucketAggregationRange {
5850
5850
  * collapseProperty
5851
5851
  **********************************************/
5852
5852
  export interface collapseProperty {
5853
- fields: Array<string>[];
5853
+ fields: Array<string>;
5854
5854
  limit: number;
5855
5855
  }
5856
5856
  /*********************************************
@@ -5925,13 +5925,13 @@ export interface searchQuery {
5925
5925
  * searchRequest
5926
5926
  **********************************************/
5927
5927
  export interface searchRequest {
5928
- aggregationFilters: Array<string>[];
5928
+ aggregationFilters: Array<string>;
5929
5929
  aggregations: aggregationOption[];
5930
5930
  collapseProperties: collapseProperty[];
5931
- contentSources: Array<string>[];
5931
+ contentSources: Array<string>;
5932
5932
  enableTopResults: boolean;
5933
5933
  entityTypes: EnumTypes.entityType[];
5934
- fields: Array<string>[];
5934
+ fields: Array<string>;
5935
5935
  from: number;
5936
5936
  query: searchQuery;
5937
5937
  queryAlterationOptions: searchAlterationOptions;
@@ -5961,7 +5961,7 @@ export interface searchResponse {
5961
5961
  hitsContainers: searchHitsContainer[];
5962
5962
  queryAlterationResponse: alterationResponse;
5963
5963
  resultTemplates: resultTemplateDictionary;
5964
- searchTerms: Array<string>[];
5964
+ searchTerms: Array<string>;
5965
5965
  }
5966
5966
  /*********************************************
5967
5967
  * plannerAppliedCategories
@@ -6291,8 +6291,8 @@ export interface ticketInfo {
6291
6291
  **********************************************/
6292
6292
  export interface unifiedRoleManagementPolicyRuleTarget {
6293
6293
  caller: string;
6294
- enforcedSettings: Array<string>[];
6295
- inheritableSettings: Array<string>[];
6294
+ enforcedSettings: Array<string>;
6295
+ inheritableSettings: Array<string>;
6296
6296
  level: string;
6297
6297
  operations: EnumTypes.unifiedRoleManagementPolicyRuleTargetOperations[];
6298
6298
  }
@@ -6337,31 +6337,31 @@ export interface printDocumentUploadProperties {
6337
6337
  * printerCapabilities
6338
6338
  **********************************************/
6339
6339
  export interface printerCapabilities {
6340
- bottomMargins: Array<number>[];
6340
+ bottomMargins: Array<number>;
6341
6341
  collation: boolean;
6342
6342
  colorModes: EnumTypes.printColorMode[];
6343
- contentTypes: Array<string>[];
6343
+ contentTypes: Array<string>;
6344
6344
  copiesPerJob: integerRange;
6345
- dpis: Array<number>[];
6345
+ dpis: Array<number>;
6346
6346
  duplexModes: EnumTypes.printDuplexMode[];
6347
6347
  feedOrientations: EnumTypes.printerFeedOrientation[];
6348
6348
  finishings: EnumTypes.printFinishing[];
6349
- inputBins: Array<string>[];
6349
+ inputBins: Array<string>;
6350
6350
  isColorPrintingSupported: boolean;
6351
6351
  isPageRangeSupported: boolean;
6352
- leftMargins: Array<number>[];
6353
- mediaColors: Array<string>[];
6354
- mediaSizes: Array<string>[];
6355
- mediaTypes: Array<string>[];
6352
+ leftMargins: Array<number>;
6353
+ mediaColors: Array<string>;
6354
+ mediaSizes: Array<string>;
6355
+ mediaTypes: Array<string>;
6356
6356
  multipageLayouts: EnumTypes.printMultipageLayout[];
6357
6357
  orientations: EnumTypes.printOrientation[];
6358
- outputBins: Array<string>[];
6359
- pagesPerSheet: Array<number>[];
6358
+ outputBins: Array<string>;
6359
+ pagesPerSheet: Array<number>;
6360
6360
  qualities: EnumTypes.printQuality[];
6361
- rightMargins: Array<number>[];
6361
+ rightMargins: Array<number>;
6362
6362
  scalings: EnumTypes.printScaling[];
6363
6363
  supportsFitPdfToPage: boolean;
6364
- topMargins: Array<number>[];
6364
+ topMargins: Array<number>;
6365
6365
  }
6366
6366
  /*********************************************
6367
6367
  * printerDefaults
@@ -6397,15 +6397,15 @@ export interface printerLocation {
6397
6397
  floorDescription: string;
6398
6398
  latitude: number;
6399
6399
  longitude: number;
6400
- organization: Array<string>[];
6400
+ organization: Array<string>;
6401
6401
  postalCode: string;
6402
6402
  roomDescription: string;
6403
6403
  roomName: string;
6404
6404
  site: string;
6405
6405
  stateOrProvince: string;
6406
6406
  streetAddress: string;
6407
- subdivision: Array<string>[];
6408
- subunit: Array<string>[];
6407
+ subdivision: Array<string>;
6408
+ subunit: Array<string>;
6409
6409
  }
6410
6410
  /*********************************************
6411
6411
  * printerShareViewpoint
@@ -6512,7 +6512,7 @@ export interface accountTargetContent {
6512
6512
  * addressBookAccountTargetContent
6513
6513
  **********************************************/
6514
6514
  export interface addressBookAccountTargetContent {
6515
- accountTargetEmails: Array<string>[];
6515
+ accountTargetEmails: Array<string>;
6516
6516
  }
6517
6517
  /*********************************************
6518
6518
  * assignedTrainingInfo
@@ -6811,7 +6811,7 @@ export interface alertDetection {
6811
6811
  export interface alertHistoryState {
6812
6812
  appId: string;
6813
6813
  assignedTo: string;
6814
- comments: Array<string>[];
6814
+ comments: Array<string>;
6815
6815
  feedback: EnumTypes.alertFeedback;
6816
6816
  status: EnumTypes.alertStatus;
6817
6817
  updatedDateTime: any;
@@ -7084,9 +7084,9 @@ export interface audioConferencing {
7084
7084
  conferenceId: string;
7085
7085
  dialinUrl: string;
7086
7086
  tollFreeNumber: string;
7087
- tollFreeNumbers: Array<string>[];
7087
+ tollFreeNumbers: Array<string>;
7088
7088
  tollNumber: string;
7089
- tollNumbers: Array<string>[];
7089
+ tollNumbers: Array<string>;
7090
7090
  }
7091
7091
  /*********************************************
7092
7092
  * azureCommunicationServicesUserIdentity
@@ -7100,7 +7100,7 @@ export interface azureCommunicationServicesUserIdentity {
7100
7100
  export interface broadcastMeetingCaptionSettings {
7101
7101
  isCaptionEnabled: boolean;
7102
7102
  spokenLanguage: string;
7103
- translationLanguages: Array<string>[];
7103
+ translationLanguages: Array<string>;
7104
7104
  }
7105
7105
  /*********************************************
7106
7106
  * callMediaState
@@ -7466,7 +7466,7 @@ export interface virtualEventPresenterInfo {
7466
7466
  export interface virtualEventRegistrationQuestionAnswer {
7467
7467
  booleanValue: boolean;
7468
7468
  displayName: string;
7469
- multiChoiceValues: Array<string>[];
7469
+ multiChoiceValues: Array<string>;
7470
7470
  questionId: string;
7471
7471
  value: string;
7472
7472
  }
@@ -7517,7 +7517,7 @@ export interface resourceData {
7517
7517
  * changeNotificationCollection
7518
7518
  **********************************************/
7519
7519
  export interface changeNotificationCollection {
7520
- validationTokens: Array<string>[];
7520
+ validationTokens: Array<string>;
7521
7521
  value: changeNotification[];
7522
7522
  }
7523
7523
  /*********************************************
@@ -7741,7 +7741,7 @@ export interface chatMessagePolicyViolation {
7741
7741
  export interface chatMessagePolicyViolationPolicyTip {
7742
7742
  complianceUrl: string;
7743
7743
  generalText: string;
7744
- matchedConditionDescriptions: Array<string>[];
7744
+ matchedConditionDescriptions: Array<string>;
7745
7745
  }
7746
7746
  /*********************************************
7747
7747
  * chatMessageReactionIdentitySet
@@ -7768,7 +7768,7 @@ export interface chatViewpoint {
7768
7768
  * conversationMemberRoleUpdatedEventMessageDetail
7769
7769
  **********************************************/
7770
7770
  export interface conversationMemberRoleUpdatedEventMessageDetail {
7771
- conversationMemberRoles: Array<string>[];
7771
+ conversationMemberRoles: Array<string>;
7772
7772
  conversationMemberUser: teamworkUserIdentity;
7773
7773
  initiator: identitySet;
7774
7774
  }
@@ -8129,7 +8129,7 @@ export interface sensorDeploymentPackage {
8129
8129
  **********************************************/
8130
8130
  export interface sensorSettings {
8131
8131
  description: string;
8132
- domainControllerDnsNames: Array<string>[];
8132
+ domainControllerDnsNames: Array<string>;
8133
8133
  isDelayedDeploymentEnabled: boolean;
8134
8134
  }
8135
8135
  /*********************************************
@@ -8145,11 +8145,11 @@ export interface alertComment {
8145
8145
  **********************************************/
8146
8146
  export interface alertEvidence {
8147
8147
  createdDateTime: any;
8148
- detailedRoles: Array<string>[];
8148
+ detailedRoles: Array<string>;
8149
8149
  remediationStatus: EnumTypes.evidenceRemediationStatus;
8150
8150
  remediationStatusDetails: string;
8151
8151
  roles: EnumTypes.evidenceRole[];
8152
- tags: Array<string>[];
8152
+ tags: Array<string>;
8153
8153
  verdict: EnumTypes.evidenceVerdict;
8154
8154
  }
8155
8155
  /*********************************************
@@ -8178,10 +8178,10 @@ export interface analyzedMessageEvidence {
8178
8178
  recipientEmailAddress: string;
8179
8179
  senderIp: string;
8180
8180
  subject: string;
8181
- threatDetectionMethods: Array<string>[];
8182
- threats: Array<string>[];
8181
+ threatDetectionMethods: Array<string>;
8182
+ threats: Array<string>;
8183
8183
  urlCount: number;
8184
- urls: Array<string>[];
8184
+ urls: Array<string>;
8185
8185
  urn: string;
8186
8186
  }
8187
8187
  /*********************************************
@@ -8266,8 +8266,8 @@ export interface userEvidence {
8266
8266
  * containerEvidence
8267
8267
  **********************************************/
8268
8268
  export interface containerEvidence {
8269
- args: Array<string>[];
8270
- command: Array<string>[];
8269
+ args: Array<string>;
8270
+ command: Array<string>;
8271
8271
  containerId: string;
8272
8272
  image: containerImageEvidence;
8273
8273
  isPrivileged: boolean;
@@ -8313,7 +8313,7 @@ export interface deviceEvidence {
8313
8313
  firstSeenDateTime: any;
8314
8314
  healthStatus: EnumTypes.deviceHealthStatus;
8315
8315
  hostName: string;
8316
- ipInterfaces: Array<string>[];
8316
+ ipInterfaces: Array<string>;
8317
8317
  lastExternalIpAddress: string;
8318
8318
  lastIpAddress: string;
8319
8319
  loggedOnUsers: loggedOnUser[];
@@ -8506,8 +8506,8 @@ export interface ioTDeviceEvidence {
8506
8506
  model: string;
8507
8507
  nics: nicEvidence[];
8508
8508
  operatingSystem: string;
8509
- owners: Array<string>[];
8510
- protocols: Array<string>[];
8509
+ owners: Array<string>;
8510
+ protocols: Array<string>;
8511
8511
  purdueLayer: string;
8512
8512
  sensor: string;
8513
8513
  serialNumber: string;
@@ -8522,7 +8522,7 @@ export interface ioTDeviceEvidence {
8522
8522
  export interface nicEvidence {
8523
8523
  ipAddress: ipEvidence;
8524
8524
  macAddress: string;
8525
- vlans: Array<string>[];
8525
+ vlans: Array<string>;
8526
8526
  }
8527
8527
  /*********************************************
8528
8528
  * urlEvidence
@@ -8633,7 +8633,7 @@ export interface mailClusterEvidence {
8633
8633
  clusterBy: string;
8634
8634
  clusterByValue: string;
8635
8635
  emailCount: number;
8636
- networkMessageIds: Array<string>[];
8636
+ networkMessageIds: Array<string>;
8637
8637
  query: string;
8638
8638
  urn: string;
8639
8639
  }
@@ -8703,10 +8703,10 @@ export interface registryValueEvidence {
8703
8703
  **********************************************/
8704
8704
  export interface sasTokenEvidence {
8705
8705
  allowedIpAddresses: string;
8706
- allowedResourceTypes: Array<string>[];
8707
- allowedServices: Array<string>[];
8706
+ allowedResourceTypes: Array<string>;
8707
+ allowedServices: Array<string>;
8708
8708
  expiryDateTime: any;
8709
- permissions: Array<string>[];
8709
+ permissions: Array<string>;
8710
8710
  protocol: string;
8711
8711
  signatureHash: string;
8712
8712
  signedWith: string;
@@ -8907,7 +8907,7 @@ export interface intelligenceProfileCountryOrRegionOfOrigin {
8907
8907
  **********************************************/
8908
8908
  export interface sslCertificateEntity {
8909
8909
  address: physicalAddress;
8910
- alternateNames: Array<string>[];
8910
+ alternateNames: Array<string>;
8911
8911
  commonName: string;
8912
8912
  email: string;
8913
8913
  givenName: string;
@@ -9170,9 +9170,9 @@ export interface blob {
9170
9170
  * answerKeyword
9171
9171
  **********************************************/
9172
9172
  export interface answerKeyword {
9173
- keywords: Array<string>[];
9173
+ keywords: Array<string>;
9174
9174
  matchSimilarKeywords: boolean;
9175
- reservedKeywords: Array<string>[];
9175
+ reservedKeywords: Array<string>;
9176
9176
  }
9177
9177
  /*********************************************
9178
9178
  * answerVariant
@@ -9208,7 +9208,7 @@ export interface urlToItemResolverBase {
9208
9208
  * configuration
9209
9209
  **********************************************/
9210
9210
  export interface configuration {
9211
- authorizedAppIds: Array<string>[];
9211
+ authorizedAppIds: Array<string>;
9212
9212
  }
9213
9213
  /*********************************************
9214
9214
  * displayTemplate
@@ -9225,7 +9225,7 @@ export interface displayTemplate {
9225
9225
  export interface propertyRule {
9226
9226
  operation: EnumTypes.ruleOperation;
9227
9227
  property: string;
9228
- values: Array<string>[];
9228
+ values: Array<string>;
9229
9229
  valuesJoinedBy: EnumTypes.binaryOperator;
9230
9230
  }
9231
9231
  /*********************************************
@@ -9246,7 +9246,7 @@ export interface itemIdResolver {
9246
9246
  * urlMatchInfo
9247
9247
  **********************************************/
9248
9248
  export interface urlMatchInfo {
9249
- baseUrls: Array<string>[];
9249
+ baseUrls: Array<string>;
9250
9250
  urlPattern: string;
9251
9251
  }
9252
9252
  /*********************************************
@@ -9259,7 +9259,7 @@ export interface properties {
9259
9259
  * property
9260
9260
  **********************************************/
9261
9261
  export interface property {
9262
- aliases: Array<string>[];
9262
+ aliases: Array<string>;
9263
9263
  isQueryable: boolean;
9264
9264
  isRefinable: boolean;
9265
9265
  isRetrievable: boolean;