@aws-sdk/client-route53resolver 3.301.0 → 3.303.0

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.
@@ -15,19 +15,29 @@ export declare class AccessDeniedException extends __BaseException {
15
15
  }
16
16
  /**
17
17
  * @public
18
+ * @enum
18
19
  */
19
- export declare enum Action {
20
- ALERT = "ALERT",
21
- ALLOW = "ALLOW",
22
- BLOCK = "BLOCK"
23
- }
20
+ export declare const Action: {
21
+ readonly ALERT: "ALERT";
22
+ readonly ALLOW: "ALLOW";
23
+ readonly BLOCK: "BLOCK";
24
+ };
24
25
  /**
25
26
  * @public
26
27
  */
27
- export declare enum MutationProtectionStatus {
28
- DISABLED = "DISABLED",
29
- ENABLED = "ENABLED"
30
- }
28
+ export type Action = (typeof Action)[keyof typeof Action];
29
+ /**
30
+ * @public
31
+ * @enum
32
+ */
33
+ export declare const MutationProtectionStatus: {
34
+ readonly DISABLED: "DISABLED";
35
+ readonly ENABLED: "ENABLED";
36
+ };
37
+ /**
38
+ * @public
39
+ */
40
+ export type MutationProtectionStatus = (typeof MutationProtectionStatus)[keyof typeof MutationProtectionStatus];
31
41
  /**
32
42
  * @public
33
43
  * <p>One tag that you want to add to the specified resource. A tag consists of a <code>Key</code> (a name for the tag) and a <code>Value</code>.</p>
@@ -88,12 +98,17 @@ export interface AssociateFirewallRuleGroupRequest {
88
98
  }
89
99
  /**
90
100
  * @public
101
+ * @enum
91
102
  */
92
- export declare enum FirewallRuleGroupAssociationStatus {
93
- COMPLETE = "COMPLETE",
94
- DELETING = "DELETING",
95
- UPDATING = "UPDATING"
96
- }
103
+ export declare const FirewallRuleGroupAssociationStatus: {
104
+ readonly COMPLETE: "COMPLETE";
105
+ readonly DELETING: "DELETING";
106
+ readonly UPDATING: "UPDATING";
107
+ };
108
+ /**
109
+ * @public
110
+ */
111
+ export type FirewallRuleGroupAssociationStatus = (typeof FirewallRuleGroupAssociationStatus)[keyof typeof FirewallRuleGroupAssociationStatus];
97
112
  /**
98
113
  * @public
99
114
  * <p>An association between a firewall rule group and a VPC, which enables DNS filtering for
@@ -302,30 +317,45 @@ export interface AssociateResolverEndpointIpAddressRequest {
302
317
  }
303
318
  /**
304
319
  * @public
320
+ * @enum
305
321
  */
306
- export declare enum ResolverEndpointDirection {
307
- Inbound = "INBOUND",
308
- Outbound = "OUTBOUND"
309
- }
322
+ export declare const ResolverEndpointDirection: {
323
+ readonly Inbound: "INBOUND";
324
+ readonly Outbound: "OUTBOUND";
325
+ };
310
326
  /**
311
327
  * @public
312
328
  */
313
- export declare enum ResolverEndpointType {
314
- DUALSTACK = "DUALSTACK",
315
- IPV4 = "IPV4",
316
- IPV6 = "IPV6"
317
- }
329
+ export type ResolverEndpointDirection = (typeof ResolverEndpointDirection)[keyof typeof ResolverEndpointDirection];
318
330
  /**
319
331
  * @public
332
+ * @enum
320
333
  */
321
- export declare enum ResolverEndpointStatus {
322
- ActionNeeded = "ACTION_NEEDED",
323
- AutoRecovering = "AUTO_RECOVERING",
324
- Creating = "CREATING",
325
- Deleting = "DELETING",
326
- Operational = "OPERATIONAL",
327
- Updating = "UPDATING"
328
- }
334
+ export declare const ResolverEndpointType: {
335
+ readonly DUALSTACK: "DUALSTACK";
336
+ readonly IPV4: "IPV4";
337
+ readonly IPV6: "IPV6";
338
+ };
339
+ /**
340
+ * @public
341
+ */
342
+ export type ResolverEndpointType = (typeof ResolverEndpointType)[keyof typeof ResolverEndpointType];
343
+ /**
344
+ * @public
345
+ * @enum
346
+ */
347
+ export declare const ResolverEndpointStatus: {
348
+ readonly ActionNeeded: "ACTION_NEEDED";
349
+ readonly AutoRecovering: "AUTO_RECOVERING";
350
+ readonly Creating: "CREATING";
351
+ readonly Deleting: "DELETING";
352
+ readonly Operational: "OPERATIONAL";
353
+ readonly Updating: "UPDATING";
354
+ };
355
+ /**
356
+ * @public
357
+ */
358
+ export type ResolverEndpointStatus = (typeof ResolverEndpointStatus)[keyof typeof ResolverEndpointStatus];
329
359
  /**
330
360
  * @public
331
361
  * <p>In the response to a
@@ -526,23 +556,33 @@ export interface AssociateResolverQueryLogConfigRequest {
526
556
  }
527
557
  /**
528
558
  * @public
559
+ * @enum
529
560
  */
530
- export declare enum ResolverQueryLogConfigAssociationError {
531
- AccessDenied = "ACCESS_DENIED",
532
- DestinationNotFound = "DESTINATION_NOT_FOUND",
533
- InternalServiceError = "INTERNAL_SERVICE_ERROR",
534
- None = "NONE"
535
- }
561
+ export declare const ResolverQueryLogConfigAssociationError: {
562
+ readonly AccessDenied: "ACCESS_DENIED";
563
+ readonly DestinationNotFound: "DESTINATION_NOT_FOUND";
564
+ readonly InternalServiceError: "INTERNAL_SERVICE_ERROR";
565
+ readonly None: "NONE";
566
+ };
536
567
  /**
537
568
  * @public
538
569
  */
539
- export declare enum ResolverQueryLogConfigAssociationStatus {
540
- ActionNeeded = "ACTION_NEEDED",
541
- Active = "ACTIVE",
542
- Creating = "CREATING",
543
- Deleting = "DELETING",
544
- Failed = "FAILED"
545
- }
570
+ export type ResolverQueryLogConfigAssociationError = (typeof ResolverQueryLogConfigAssociationError)[keyof typeof ResolverQueryLogConfigAssociationError];
571
+ /**
572
+ * @public
573
+ * @enum
574
+ */
575
+ export declare const ResolverQueryLogConfigAssociationStatus: {
576
+ readonly ActionNeeded: "ACTION_NEEDED";
577
+ readonly Active: "ACTIVE";
578
+ readonly Creating: "CREATING";
579
+ readonly Deleting: "DELETING";
580
+ readonly Failed: "FAILED";
581
+ };
582
+ /**
583
+ * @public
584
+ */
585
+ export type ResolverQueryLogConfigAssociationStatus = (typeof ResolverQueryLogConfigAssociationStatus)[keyof typeof ResolverQueryLogConfigAssociationStatus];
546
586
  /**
547
587
  * @public
548
588
  * <p>In the response to an
@@ -642,14 +682,19 @@ export interface AssociateResolverRuleRequest {
642
682
  }
643
683
  /**
644
684
  * @public
685
+ * @enum
645
686
  */
646
- export declare enum ResolverRuleAssociationStatus {
647
- Complete = "COMPLETE",
648
- Creating = "CREATING",
649
- Deleting = "DELETING",
650
- Failed = "FAILED",
651
- Overridden = "OVERRIDDEN"
652
- }
687
+ export declare const ResolverRuleAssociationStatus: {
688
+ readonly Complete: "COMPLETE";
689
+ readonly Creating: "CREATING";
690
+ readonly Deleting: "DELETING";
691
+ readonly Failed: "FAILED";
692
+ readonly Overridden: "OVERRIDDEN";
693
+ };
694
+ /**
695
+ * @public
696
+ */
697
+ export type ResolverRuleAssociationStatus = (typeof ResolverRuleAssociationStatus)[keyof typeof ResolverRuleAssociationStatus];
653
698
  /**
654
699
  * @public
655
700
  * <p>In the response to an
@@ -716,26 +761,41 @@ export declare class ResourceUnavailableException extends __BaseException {
716
761
  }
717
762
  /**
718
763
  * @public
764
+ * @enum
719
765
  */
720
- export declare enum AutodefinedReverseFlag {
721
- DISABLE = "DISABLE",
722
- ENABLE = "ENABLE",
723
- USE_LOCAL_RESOURCE_SETTING = "USE_LOCAL_RESOURCE_SETTING"
724
- }
766
+ export declare const AutodefinedReverseFlag: {
767
+ readonly DISABLE: "DISABLE";
768
+ readonly ENABLE: "ENABLE";
769
+ readonly USE_LOCAL_RESOURCE_SETTING: "USE_LOCAL_RESOURCE_SETTING";
770
+ };
725
771
  /**
726
772
  * @public
727
773
  */
728
- export declare enum BlockOverrideDnsType {
729
- CNAME = "CNAME"
730
- }
774
+ export type AutodefinedReverseFlag = (typeof AutodefinedReverseFlag)[keyof typeof AutodefinedReverseFlag];
731
775
  /**
732
776
  * @public
777
+ * @enum
733
778
  */
734
- export declare enum BlockResponse {
735
- NODATA = "NODATA",
736
- NXDOMAIN = "NXDOMAIN",
737
- OVERRIDE = "OVERRIDE"
738
- }
779
+ export declare const BlockOverrideDnsType: {
780
+ readonly CNAME: "CNAME";
781
+ };
782
+ /**
783
+ * @public
784
+ */
785
+ export type BlockOverrideDnsType = (typeof BlockOverrideDnsType)[keyof typeof BlockOverrideDnsType];
786
+ /**
787
+ * @public
788
+ * @enum
789
+ */
790
+ export declare const BlockResponse: {
791
+ readonly NODATA: "NODATA";
792
+ readonly NXDOMAIN: "NXDOMAIN";
793
+ readonly OVERRIDE: "OVERRIDE";
794
+ };
795
+ /**
796
+ * @public
797
+ */
798
+ export type BlockResponse = (typeof BlockResponse)[keyof typeof BlockResponse];
739
799
  /**
740
800
  * @public
741
801
  */
@@ -757,14 +817,19 @@ export interface CreateFirewallDomainListRequest {
757
817
  }
758
818
  /**
759
819
  * @public
820
+ * @enum
760
821
  */
761
- export declare enum FirewallDomainListStatus {
762
- COMPLETE = "COMPLETE",
763
- COMPLETE_IMPORT_FAILED = "COMPLETE_IMPORT_FAILED",
764
- DELETING = "DELETING",
765
- IMPORTING = "IMPORTING",
766
- UPDATING = "UPDATING"
767
- }
822
+ export declare const FirewallDomainListStatus: {
823
+ readonly COMPLETE: "COMPLETE";
824
+ readonly COMPLETE_IMPORT_FAILED: "COMPLETE_IMPORT_FAILED";
825
+ readonly DELETING: "DELETING";
826
+ readonly IMPORTING: "IMPORTING";
827
+ readonly UPDATING: "UPDATING";
828
+ };
829
+ /**
830
+ * @public
831
+ */
832
+ export type FirewallDomainListStatus = (typeof FirewallDomainListStatus)[keyof typeof FirewallDomainListStatus];
768
833
  /**
769
834
  * @public
770
835
  * <p>High-level information about a list of firewall domains for use in a <a>FirewallRule</a>. This is returned by <a>GetFirewallDomainList</a>.</p>
@@ -1022,20 +1087,30 @@ export interface CreateFirewallRuleGroupRequest {
1022
1087
  }
1023
1088
  /**
1024
1089
  * @public
1090
+ * @enum
1025
1091
  */
1026
- export declare enum ShareStatus {
1027
- NotShared = "NOT_SHARED",
1028
- SharedByMe = "SHARED_BY_ME",
1029
- SharedWithMe = "SHARED_WITH_ME"
1030
- }
1092
+ export declare const ShareStatus: {
1093
+ readonly NotShared: "NOT_SHARED";
1094
+ readonly SharedByMe: "SHARED_BY_ME";
1095
+ readonly SharedWithMe: "SHARED_WITH_ME";
1096
+ };
1031
1097
  /**
1032
1098
  * @public
1033
1099
  */
1034
- export declare enum FirewallRuleGroupStatus {
1035
- COMPLETE = "COMPLETE",
1036
- DELETING = "DELETING",
1037
- UPDATING = "UPDATING"
1038
- }
1100
+ export type ShareStatus = (typeof ShareStatus)[keyof typeof ShareStatus];
1101
+ /**
1102
+ * @public
1103
+ * @enum
1104
+ */
1105
+ export declare const FirewallRuleGroupStatus: {
1106
+ readonly COMPLETE: "COMPLETE";
1107
+ readonly DELETING: "DELETING";
1108
+ readonly UPDATING: "UPDATING";
1109
+ };
1110
+ /**
1111
+ * @public
1112
+ */
1113
+ export type FirewallRuleGroupStatus = (typeof FirewallRuleGroupStatus)[keyof typeof FirewallRuleGroupStatus];
1039
1114
  /**
1040
1115
  * @public
1041
1116
  * <p>High-level information for a firewall rule group. A firewall rule group is a collection of rules that DNS Firewall uses to filter DNS network traffic for a VPC. To retrieve the rules for the rule group, call <a>ListFirewallRules</a>.</p>
@@ -1237,13 +1312,18 @@ export interface CreateResolverQueryLogConfigRequest {
1237
1312
  }
1238
1313
  /**
1239
1314
  * @public
1315
+ * @enum
1240
1316
  */
1241
- export declare enum ResolverQueryLogConfigStatus {
1242
- Created = "CREATED",
1243
- Creating = "CREATING",
1244
- Deleting = "DELETING",
1245
- Failed = "FAILED"
1246
- }
1317
+ export declare const ResolverQueryLogConfigStatus: {
1318
+ readonly Created: "CREATED";
1319
+ readonly Creating: "CREATING";
1320
+ readonly Deleting: "DELETING";
1321
+ readonly Failed: "FAILED";
1322
+ };
1323
+ /**
1324
+ * @public
1325
+ */
1326
+ export type ResolverQueryLogConfigStatus = (typeof ResolverQueryLogConfigStatus)[keyof typeof ResolverQueryLogConfigStatus];
1247
1327
  /**
1248
1328
  * @public
1249
1329
  * <p>In the response to a
@@ -1339,12 +1419,17 @@ export interface CreateResolverQueryLogConfigResponse {
1339
1419
  }
1340
1420
  /**
1341
1421
  * @public
1422
+ * @enum
1342
1423
  */
1343
- export declare enum RuleTypeOption {
1344
- Forward = "FORWARD",
1345
- Recursive = "RECURSIVE",
1346
- System = "SYSTEM"
1347
- }
1424
+ export declare const RuleTypeOption: {
1425
+ readonly Forward: "FORWARD";
1426
+ readonly Recursive: "RECURSIVE";
1427
+ readonly System: "SYSTEM";
1428
+ };
1429
+ /**
1430
+ * @public
1431
+ */
1432
+ export type RuleTypeOption = (typeof RuleTypeOption)[keyof typeof RuleTypeOption];
1348
1433
  /**
1349
1434
  * @public
1350
1435
  * <p>In a
@@ -1415,13 +1500,18 @@ export interface CreateResolverRuleRequest {
1415
1500
  }
1416
1501
  /**
1417
1502
  * @public
1503
+ * @enum
1418
1504
  */
1419
- export declare enum ResolverRuleStatus {
1420
- Complete = "COMPLETE",
1421
- Deleting = "DELETING",
1422
- Failed = "FAILED",
1423
- Updating = "UPDATING"
1424
- }
1505
+ export declare const ResolverRuleStatus: {
1506
+ readonly Complete: "COMPLETE";
1507
+ readonly Deleting: "DELETING";
1508
+ readonly Failed: "FAILED";
1509
+ readonly Updating: "UPDATING";
1510
+ };
1511
+ /**
1512
+ * @public
1513
+ */
1514
+ export type ResolverRuleStatus = (typeof ResolverRuleStatus)[keyof typeof ResolverRuleStatus];
1425
1515
  /**
1426
1516
  * @public
1427
1517
  * <p>For queries that originate in your VPC, detailed information about a Resolver rule, which specifies how to route DNS queries
@@ -1986,12 +2076,17 @@ export interface Filter {
1986
2076
  }
1987
2077
  /**
1988
2078
  * @public
2079
+ * @enum
1989
2080
  */
1990
- export declare enum FirewallFailOpenStatus {
1991
- DISABLED = "DISABLED",
1992
- ENABLED = "ENABLED",
1993
- USE_LOCAL_RESOURCE_SETTING = "USE_LOCAL_RESOURCE_SETTING"
1994
- }
2081
+ export declare const FirewallFailOpenStatus: {
2082
+ readonly DISABLED: "DISABLED";
2083
+ readonly ENABLED: "ENABLED";
2084
+ readonly USE_LOCAL_RESOURCE_SETTING: "USE_LOCAL_RESOURCE_SETTING";
2085
+ };
2086
+ /**
2087
+ * @public
2088
+ */
2089
+ export type FirewallFailOpenStatus = (typeof FirewallFailOpenStatus)[keyof typeof FirewallFailOpenStatus];
1995
2090
  /**
1996
2091
  * @public
1997
2092
  * <p>Configuration of the firewall behavior provided by DNS Firewall for a single VPC from
@@ -2028,10 +2123,15 @@ export interface FirewallConfig {
2028
2123
  }
2029
2124
  /**
2030
2125
  * @public
2126
+ * @enum
2031
2127
  */
2032
- export declare enum FirewallDomainImportOperation {
2033
- REPLACE = "REPLACE"
2034
- }
2128
+ export declare const FirewallDomainImportOperation: {
2129
+ readonly REPLACE: "REPLACE";
2130
+ };
2131
+ /**
2132
+ * @public
2133
+ */
2134
+ export type FirewallDomainImportOperation = (typeof FirewallDomainImportOperation)[keyof typeof FirewallDomainImportOperation];
2035
2135
  /**
2036
2136
  * @public
2037
2137
  * <p>Minimal high-level information for a firewall domain list. The action <a>ListFirewallDomainLists</a> returns an array of these objects. </p>
@@ -2063,12 +2163,17 @@ export interface FirewallDomainListMetadata {
2063
2163
  }
2064
2164
  /**
2065
2165
  * @public
2166
+ * @enum
2066
2167
  */
2067
- export declare enum FirewallDomainUpdateOperation {
2068
- ADD = "ADD",
2069
- REMOVE = "REMOVE",
2070
- REPLACE = "REPLACE"
2071
- }
2168
+ export declare const FirewallDomainUpdateOperation: {
2169
+ readonly ADD: "ADD";
2170
+ readonly REMOVE: "REMOVE";
2171
+ readonly REPLACE: "REPLACE";
2172
+ };
2173
+ /**
2174
+ * @public
2175
+ */
2176
+ export type FirewallDomainUpdateOperation = (typeof FirewallDomainUpdateOperation)[keyof typeof FirewallDomainUpdateOperation];
2072
2177
  /**
2073
2178
  * @public
2074
2179
  * <p>Minimal high-level information for a firewall rule group. The action <a>ListFirewallRuleGroups</a> returns an array of these objects. </p>
@@ -2208,15 +2313,20 @@ export interface GetResolverConfigRequest {
2208
2313
  }
2209
2314
  /**
2210
2315
  * @public
2316
+ * @enum
2211
2317
  */
2212
- export declare enum ResolverAutodefinedReverseStatus {
2213
- Disabled = "DISABLED",
2214
- Disabling = "DISABLING",
2215
- Enabled = "ENABLED",
2216
- Enabling = "ENABLING",
2217
- UpdatingToUseLocalResourceSetting = "UPDATING_TO_USE_LOCAL_RESOURCE_SETTING",
2218
- UseLocalResourceSetting = "USE_LOCAL_RESOURCE_SETTING"
2219
- }
2318
+ export declare const ResolverAutodefinedReverseStatus: {
2319
+ readonly Disabled: "DISABLED";
2320
+ readonly Disabling: "DISABLING";
2321
+ readonly Enabled: "ENABLED";
2322
+ readonly Enabling: "ENABLING";
2323
+ readonly UpdatingToUseLocalResourceSetting: "UPDATING_TO_USE_LOCAL_RESOURCE_SETTING";
2324
+ readonly UseLocalResourceSetting: "USE_LOCAL_RESOURCE_SETTING";
2325
+ };
2326
+ /**
2327
+ * @public
2328
+ */
2329
+ export type ResolverAutodefinedReverseStatus = (typeof ResolverAutodefinedReverseStatus)[keyof typeof ResolverAutodefinedReverseStatus];
2220
2330
  /**
2221
2331
  * @public
2222
2332
  * <p>A complex type that contains information about a Resolver configuration for a VPC.</p>
@@ -2283,15 +2393,20 @@ export interface GetResolverDnssecConfigRequest {
2283
2393
  }
2284
2394
  /**
2285
2395
  * @public
2396
+ * @enum
2286
2397
  */
2287
- export declare enum ResolverDNSSECValidationStatus {
2288
- Disabled = "DISABLED",
2289
- Disabling = "DISABLING",
2290
- Enabled = "ENABLED",
2291
- Enabling = "ENABLING",
2292
- UpdateToUseLocalResourceSetting = "UPDATING_TO_USE_LOCAL_RESOURCE_SETTING",
2293
- UseLocalResourceSetting = "USE_LOCAL_RESOURCE_SETTING"
2294
- }
2398
+ export declare const ResolverDNSSECValidationStatus: {
2399
+ readonly Disabled: "DISABLED";
2400
+ readonly Disabling: "DISABLING";
2401
+ readonly Enabled: "ENABLED";
2402
+ readonly Enabling: "ENABLING";
2403
+ readonly UpdateToUseLocalResourceSetting: "UPDATING_TO_USE_LOCAL_RESOURCE_SETTING";
2404
+ readonly UseLocalResourceSetting: "USE_LOCAL_RESOURCE_SETTING";
2405
+ };
2406
+ /**
2407
+ * @public
2408
+ */
2409
+ export type ResolverDNSSECValidationStatus = (typeof ResolverDNSSECValidationStatus)[keyof typeof ResolverDNSSECValidationStatus];
2295
2410
  /**
2296
2411
  * @public
2297
2412
  * <p>A complex type that contains information about a configuration for DNSSEC validation.</p>
@@ -2563,20 +2678,25 @@ export declare class InvalidTagException extends __BaseException {
2563
2678
  }
2564
2679
  /**
2565
2680
  * @public
2681
+ * @enum
2566
2682
  */
2567
- export declare enum IpAddressStatus {
2568
- Attached = "ATTACHED",
2569
- Attaching = "ATTACHING",
2570
- Creating = "CREATING",
2571
- DeleteFailedFasExpired = "DELETE_FAILED_FAS_EXPIRED",
2572
- Deleting = "DELETING",
2573
- Detaching = "DETACHING",
2574
- FailedCreation = "FAILED_CREATION",
2575
- FailedResourceGone = "FAILED_RESOURCE_GONE",
2576
- RemapAttaching = "REMAP_ATTACHING",
2577
- RemapDetaching = "REMAP_DETACHING",
2578
- Updating = "UPDATING"
2579
- }
2683
+ export declare const IpAddressStatus: {
2684
+ readonly Attached: "ATTACHED";
2685
+ readonly Attaching: "ATTACHING";
2686
+ readonly Creating: "CREATING";
2687
+ readonly DeleteFailedFasExpired: "DELETE_FAILED_FAS_EXPIRED";
2688
+ readonly Deleting: "DELETING";
2689
+ readonly Detaching: "DETACHING";
2690
+ readonly FailedCreation: "FAILED_CREATION";
2691
+ readonly FailedResourceGone: "FAILED_RESOURCE_GONE";
2692
+ readonly RemapAttaching: "REMAP_ATTACHING";
2693
+ readonly RemapDetaching: "REMAP_DETACHING";
2694
+ readonly Updating: "UPDATING";
2695
+ };
2696
+ /**
2697
+ * @public
2698
+ */
2699
+ export type IpAddressStatus = (typeof IpAddressStatus)[keyof typeof IpAddressStatus];
2580
2700
  /**
2581
2701
  * @public
2582
2702
  * <p>In the response to a
@@ -3051,11 +3171,16 @@ export interface ListResolverEndpointsResponse {
3051
3171
  }
3052
3172
  /**
3053
3173
  * @public
3174
+ * @enum
3054
3175
  */
3055
- export declare enum SortOrder {
3056
- Ascending = "ASCENDING",
3057
- Descending = "DESCENDING"
3058
- }
3176
+ export declare const SortOrder: {
3177
+ readonly Ascending: "ASCENDING";
3178
+ readonly Descending: "DESCENDING";
3179
+ };
3180
+ /**
3181
+ * @public
3182
+ */
3183
+ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
3059
3184
  /**
3060
3185
  * @public
3061
3186
  */
@@ -3957,12 +4082,17 @@ export interface UpdateResolverConfigResponse {
3957
4082
  }
3958
4083
  /**
3959
4084
  * @public
4085
+ * @enum
3960
4086
  */
3961
- export declare enum Validation {
3962
- DISABLE = "DISABLE",
3963
- ENABLE = "ENABLE",
3964
- USE_LOCAL_RESOURCE_SETTING = "USE_LOCAL_RESOURCE_SETTING"
3965
- }
4087
+ export declare const Validation: {
4088
+ readonly DISABLE: "DISABLE";
4089
+ readonly ENABLE: "ENABLE";
4090
+ readonly USE_LOCAL_RESOURCE_SETTING: "USE_LOCAL_RESOURCE_SETTING";
4091
+ };
4092
+ /**
4093
+ * @public
4094
+ */
4095
+ export type Validation = (typeof Validation)[keyof typeof Validation];
3966
4096
  /**
3967
4097
  * @public
3968
4098
  */