@aws-sdk/client-route-53 3.121.0 → 3.130.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.
- package/CHANGELOG.md +24 -0
- package/dist-cjs/protocols/Aws_restXml.js +56 -56
- package/dist-es/protocols/Aws_restXml.js +56 -56
- package/package.json +28 -28
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,30 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.130.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.129.0...v3.130.0) (2022-07-14)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-route-53
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.128.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.127.0...v3.128.0) (2022-07-12)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-route-53
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [3.127.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.126.0...v3.127.0) (2022-07-11)
|
|
23
|
+
|
|
24
|
+
**Note:** Version bump only for package @aws-sdk/client-route-53
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
6
30
|
# [3.121.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.120.0...v3.121.0) (2022-06-30)
|
|
7
31
|
|
|
8
32
|
|
|
@@ -6670,11 +6670,11 @@ const deserializeAws_restXmlVPCAssociationNotFoundResponse = async (parsedOutput
|
|
|
6670
6670
|
};
|
|
6671
6671
|
const serializeAws_restXmlAlarmIdentifier = (input, context) => {
|
|
6672
6672
|
const bodyNode = new xml_builder_1.XmlNode("AlarmIdentifier");
|
|
6673
|
-
if (input.Region
|
|
6673
|
+
if (input.Region != null) {
|
|
6674
6674
|
const node = new xml_builder_1.XmlNode("CloudWatchRegion").addChildNode(new xml_builder_1.XmlText(input.Region)).withName("Region");
|
|
6675
6675
|
bodyNode.addChildNode(node);
|
|
6676
6676
|
}
|
|
6677
|
-
if (input.Name
|
|
6677
|
+
if (input.Name != null) {
|
|
6678
6678
|
const node = new xml_builder_1.XmlNode("AlarmName").addChildNode(new xml_builder_1.XmlText(input.Name)).withName("Name");
|
|
6679
6679
|
bodyNode.addChildNode(node);
|
|
6680
6680
|
}
|
|
@@ -6682,15 +6682,15 @@ const serializeAws_restXmlAlarmIdentifier = (input, context) => {
|
|
|
6682
6682
|
};
|
|
6683
6683
|
const serializeAws_restXmlAliasTarget = (input, context) => {
|
|
6684
6684
|
const bodyNode = new xml_builder_1.XmlNode("AliasTarget");
|
|
6685
|
-
if (input.HostedZoneId
|
|
6685
|
+
if (input.HostedZoneId != null) {
|
|
6686
6686
|
const node = new xml_builder_1.XmlNode("ResourceId").addChildNode(new xml_builder_1.XmlText(input.HostedZoneId)).withName("HostedZoneId");
|
|
6687
6687
|
bodyNode.addChildNode(node);
|
|
6688
6688
|
}
|
|
6689
|
-
if (input.DNSName
|
|
6689
|
+
if (input.DNSName != null) {
|
|
6690
6690
|
const node = new xml_builder_1.XmlNode("DNSName").addChildNode(new xml_builder_1.XmlText(input.DNSName)).withName("DNSName");
|
|
6691
6691
|
bodyNode.addChildNode(node);
|
|
6692
6692
|
}
|
|
6693
|
-
if (input.EvaluateTargetHealth
|
|
6693
|
+
if (input.EvaluateTargetHealth != null) {
|
|
6694
6694
|
const node = new xml_builder_1.XmlNode("AliasHealthEnabled")
|
|
6695
6695
|
.addChildNode(new xml_builder_1.XmlText(String(input.EvaluateTargetHealth)))
|
|
6696
6696
|
.withName("EvaluateTargetHealth");
|
|
@@ -6700,11 +6700,11 @@ const serializeAws_restXmlAliasTarget = (input, context) => {
|
|
|
6700
6700
|
};
|
|
6701
6701
|
const serializeAws_restXmlChange = (input, context) => {
|
|
6702
6702
|
const bodyNode = new xml_builder_1.XmlNode("Change");
|
|
6703
|
-
if (input.Action
|
|
6703
|
+
if (input.Action != null) {
|
|
6704
6704
|
const node = new xml_builder_1.XmlNode("ChangeAction").addChildNode(new xml_builder_1.XmlText(input.Action)).withName("Action");
|
|
6705
6705
|
bodyNode.addChildNode(node);
|
|
6706
6706
|
}
|
|
6707
|
-
if (input.ResourceRecordSet
|
|
6707
|
+
if (input.ResourceRecordSet != null) {
|
|
6708
6708
|
const node = serializeAws_restXmlResourceRecordSet(input.ResourceRecordSet, context).withName("ResourceRecordSet");
|
|
6709
6709
|
bodyNode.addChildNode(node);
|
|
6710
6710
|
}
|
|
@@ -6712,11 +6712,11 @@ const serializeAws_restXmlChange = (input, context) => {
|
|
|
6712
6712
|
};
|
|
6713
6713
|
const serializeAws_restXmlChangeBatch = (input, context) => {
|
|
6714
6714
|
const bodyNode = new xml_builder_1.XmlNode("ChangeBatch");
|
|
6715
|
-
if (input.Comment
|
|
6715
|
+
if (input.Comment != null) {
|
|
6716
6716
|
const node = new xml_builder_1.XmlNode("ResourceDescription").addChildNode(new xml_builder_1.XmlText(input.Comment)).withName("Comment");
|
|
6717
6717
|
bodyNode.addChildNode(node);
|
|
6718
6718
|
}
|
|
6719
|
-
if (input.Changes
|
|
6719
|
+
if (input.Changes != null) {
|
|
6720
6720
|
const nodes = serializeAws_restXmlChanges(input.Changes, context);
|
|
6721
6721
|
const containerNode = new xml_builder_1.XmlNode("Changes");
|
|
6722
6722
|
nodes.map((node) => {
|
|
@@ -6750,19 +6750,19 @@ const serializeAws_restXmlChildHealthCheckList = (input, context) => {
|
|
|
6750
6750
|
};
|
|
6751
6751
|
const serializeAws_restXmlCidrCollectionChange = (input, context) => {
|
|
6752
6752
|
const bodyNode = new xml_builder_1.XmlNode("CidrCollectionChange");
|
|
6753
|
-
if (input.LocationName
|
|
6753
|
+
if (input.LocationName != null) {
|
|
6754
6754
|
const node = new xml_builder_1.XmlNode("CidrLocationNameDefaultNotAllowed")
|
|
6755
6755
|
.addChildNode(new xml_builder_1.XmlText(input.LocationName))
|
|
6756
6756
|
.withName("LocationName");
|
|
6757
6757
|
bodyNode.addChildNode(node);
|
|
6758
6758
|
}
|
|
6759
|
-
if (input.Action
|
|
6759
|
+
if (input.Action != null) {
|
|
6760
6760
|
const node = new xml_builder_1.XmlNode("CidrCollectionChangeAction")
|
|
6761
6761
|
.addChildNode(new xml_builder_1.XmlText(input.Action))
|
|
6762
6762
|
.withName("Action");
|
|
6763
6763
|
bodyNode.addChildNode(node);
|
|
6764
6764
|
}
|
|
6765
|
-
if (input.CidrList
|
|
6765
|
+
if (input.CidrList != null) {
|
|
6766
6766
|
const nodes = serializeAws_restXmlCidrList(input.CidrList, context);
|
|
6767
6767
|
const containerNode = new xml_builder_1.XmlNode("CidrList");
|
|
6768
6768
|
nodes.map((node) => {
|
|
@@ -6796,11 +6796,11 @@ const serializeAws_restXmlCidrList = (input, context) => {
|
|
|
6796
6796
|
};
|
|
6797
6797
|
const serializeAws_restXmlCidrRoutingConfig = (input, context) => {
|
|
6798
6798
|
const bodyNode = new xml_builder_1.XmlNode("CidrRoutingConfig");
|
|
6799
|
-
if (input.CollectionId
|
|
6799
|
+
if (input.CollectionId != null) {
|
|
6800
6800
|
const node = new xml_builder_1.XmlNode("UUID").addChildNode(new xml_builder_1.XmlText(input.CollectionId)).withName("CollectionId");
|
|
6801
6801
|
bodyNode.addChildNode(node);
|
|
6802
6802
|
}
|
|
6803
|
-
if (input.LocationName
|
|
6803
|
+
if (input.LocationName != null) {
|
|
6804
6804
|
const node = new xml_builder_1.XmlNode("CidrLocationNameDefaultAllowed")
|
|
6805
6805
|
.addChildNode(new xml_builder_1.XmlText(input.LocationName))
|
|
6806
6806
|
.withName("LocationName");
|
|
@@ -6810,19 +6810,19 @@ const serializeAws_restXmlCidrRoutingConfig = (input, context) => {
|
|
|
6810
6810
|
};
|
|
6811
6811
|
const serializeAws_restXmlGeoLocation = (input, context) => {
|
|
6812
6812
|
const bodyNode = new xml_builder_1.XmlNode("GeoLocation");
|
|
6813
|
-
if (input.ContinentCode
|
|
6813
|
+
if (input.ContinentCode != null) {
|
|
6814
6814
|
const node = new xml_builder_1.XmlNode("GeoLocationContinentCode")
|
|
6815
6815
|
.addChildNode(new xml_builder_1.XmlText(input.ContinentCode))
|
|
6816
6816
|
.withName("ContinentCode");
|
|
6817
6817
|
bodyNode.addChildNode(node);
|
|
6818
6818
|
}
|
|
6819
|
-
if (input.CountryCode
|
|
6819
|
+
if (input.CountryCode != null) {
|
|
6820
6820
|
const node = new xml_builder_1.XmlNode("GeoLocationCountryCode")
|
|
6821
6821
|
.addChildNode(new xml_builder_1.XmlText(input.CountryCode))
|
|
6822
6822
|
.withName("CountryCode");
|
|
6823
6823
|
bodyNode.addChildNode(node);
|
|
6824
6824
|
}
|
|
6825
|
-
if (input.SubdivisionCode
|
|
6825
|
+
if (input.SubdivisionCode != null) {
|
|
6826
6826
|
const node = new xml_builder_1.XmlNode("GeoLocationSubdivisionCode")
|
|
6827
6827
|
.addChildNode(new xml_builder_1.XmlText(input.SubdivisionCode))
|
|
6828
6828
|
.withName("SubdivisionCode");
|
|
@@ -6832,65 +6832,65 @@ const serializeAws_restXmlGeoLocation = (input, context) => {
|
|
|
6832
6832
|
};
|
|
6833
6833
|
const serializeAws_restXmlHealthCheckConfig = (input, context) => {
|
|
6834
6834
|
const bodyNode = new xml_builder_1.XmlNode("HealthCheckConfig");
|
|
6835
|
-
if (input.IPAddress
|
|
6835
|
+
if (input.IPAddress != null) {
|
|
6836
6836
|
const node = new xml_builder_1.XmlNode("IPAddress").addChildNode(new xml_builder_1.XmlText(input.IPAddress)).withName("IPAddress");
|
|
6837
6837
|
bodyNode.addChildNode(node);
|
|
6838
6838
|
}
|
|
6839
|
-
if (input.Port
|
|
6839
|
+
if (input.Port != null) {
|
|
6840
6840
|
const node = new xml_builder_1.XmlNode("Port").addChildNode(new xml_builder_1.XmlText(String(input.Port))).withName("Port");
|
|
6841
6841
|
bodyNode.addChildNode(node);
|
|
6842
6842
|
}
|
|
6843
|
-
if (input.Type
|
|
6843
|
+
if (input.Type != null) {
|
|
6844
6844
|
const node = new xml_builder_1.XmlNode("HealthCheckType").addChildNode(new xml_builder_1.XmlText(input.Type)).withName("Type");
|
|
6845
6845
|
bodyNode.addChildNode(node);
|
|
6846
6846
|
}
|
|
6847
|
-
if (input.ResourcePath
|
|
6847
|
+
if (input.ResourcePath != null) {
|
|
6848
6848
|
const node = new xml_builder_1.XmlNode("ResourcePath").addChildNode(new xml_builder_1.XmlText(input.ResourcePath)).withName("ResourcePath");
|
|
6849
6849
|
bodyNode.addChildNode(node);
|
|
6850
6850
|
}
|
|
6851
|
-
if (input.FullyQualifiedDomainName
|
|
6851
|
+
if (input.FullyQualifiedDomainName != null) {
|
|
6852
6852
|
const node = new xml_builder_1.XmlNode("FullyQualifiedDomainName")
|
|
6853
6853
|
.addChildNode(new xml_builder_1.XmlText(input.FullyQualifiedDomainName))
|
|
6854
6854
|
.withName("FullyQualifiedDomainName");
|
|
6855
6855
|
bodyNode.addChildNode(node);
|
|
6856
6856
|
}
|
|
6857
|
-
if (input.SearchString
|
|
6857
|
+
if (input.SearchString != null) {
|
|
6858
6858
|
const node = new xml_builder_1.XmlNode("SearchString").addChildNode(new xml_builder_1.XmlText(input.SearchString)).withName("SearchString");
|
|
6859
6859
|
bodyNode.addChildNode(node);
|
|
6860
6860
|
}
|
|
6861
|
-
if (input.RequestInterval
|
|
6861
|
+
if (input.RequestInterval != null) {
|
|
6862
6862
|
const node = new xml_builder_1.XmlNode("RequestInterval")
|
|
6863
6863
|
.addChildNode(new xml_builder_1.XmlText(String(input.RequestInterval)))
|
|
6864
6864
|
.withName("RequestInterval");
|
|
6865
6865
|
bodyNode.addChildNode(node);
|
|
6866
6866
|
}
|
|
6867
|
-
if (input.FailureThreshold
|
|
6867
|
+
if (input.FailureThreshold != null) {
|
|
6868
6868
|
const node = new xml_builder_1.XmlNode("FailureThreshold")
|
|
6869
6869
|
.addChildNode(new xml_builder_1.XmlText(String(input.FailureThreshold)))
|
|
6870
6870
|
.withName("FailureThreshold");
|
|
6871
6871
|
bodyNode.addChildNode(node);
|
|
6872
6872
|
}
|
|
6873
|
-
if (input.MeasureLatency
|
|
6873
|
+
if (input.MeasureLatency != null) {
|
|
6874
6874
|
const node = new xml_builder_1.XmlNode("MeasureLatency")
|
|
6875
6875
|
.addChildNode(new xml_builder_1.XmlText(String(input.MeasureLatency)))
|
|
6876
6876
|
.withName("MeasureLatency");
|
|
6877
6877
|
bodyNode.addChildNode(node);
|
|
6878
6878
|
}
|
|
6879
|
-
if (input.Inverted
|
|
6879
|
+
if (input.Inverted != null) {
|
|
6880
6880
|
const node = new xml_builder_1.XmlNode("Inverted").addChildNode(new xml_builder_1.XmlText(String(input.Inverted))).withName("Inverted");
|
|
6881
6881
|
bodyNode.addChildNode(node);
|
|
6882
6882
|
}
|
|
6883
|
-
if (input.Disabled
|
|
6883
|
+
if (input.Disabled != null) {
|
|
6884
6884
|
const node = new xml_builder_1.XmlNode("Disabled").addChildNode(new xml_builder_1.XmlText(String(input.Disabled))).withName("Disabled");
|
|
6885
6885
|
bodyNode.addChildNode(node);
|
|
6886
6886
|
}
|
|
6887
|
-
if (input.HealthThreshold
|
|
6887
|
+
if (input.HealthThreshold != null) {
|
|
6888
6888
|
const node = new xml_builder_1.XmlNode("HealthThreshold")
|
|
6889
6889
|
.addChildNode(new xml_builder_1.XmlText(String(input.HealthThreshold)))
|
|
6890
6890
|
.withName("HealthThreshold");
|
|
6891
6891
|
bodyNode.addChildNode(node);
|
|
6892
6892
|
}
|
|
6893
|
-
if (input.ChildHealthChecks
|
|
6893
|
+
if (input.ChildHealthChecks != null) {
|
|
6894
6894
|
const nodes = serializeAws_restXmlChildHealthCheckList(input.ChildHealthChecks, context);
|
|
6895
6895
|
const containerNode = new xml_builder_1.XmlNode("ChildHealthChecks");
|
|
6896
6896
|
nodes.map((node) => {
|
|
@@ -6898,11 +6898,11 @@ const serializeAws_restXmlHealthCheckConfig = (input, context) => {
|
|
|
6898
6898
|
});
|
|
6899
6899
|
bodyNode.addChildNode(containerNode);
|
|
6900
6900
|
}
|
|
6901
|
-
if (input.EnableSNI
|
|
6901
|
+
if (input.EnableSNI != null) {
|
|
6902
6902
|
const node = new xml_builder_1.XmlNode("EnableSNI").addChildNode(new xml_builder_1.XmlText(String(input.EnableSNI))).withName("EnableSNI");
|
|
6903
6903
|
bodyNode.addChildNode(node);
|
|
6904
6904
|
}
|
|
6905
|
-
if (input.Regions
|
|
6905
|
+
if (input.Regions != null) {
|
|
6906
6906
|
const nodes = serializeAws_restXmlHealthCheckRegionList(input.Regions, context);
|
|
6907
6907
|
const containerNode = new xml_builder_1.XmlNode("Regions");
|
|
6908
6908
|
nodes.map((node) => {
|
|
@@ -6910,17 +6910,17 @@ const serializeAws_restXmlHealthCheckConfig = (input, context) => {
|
|
|
6910
6910
|
});
|
|
6911
6911
|
bodyNode.addChildNode(containerNode);
|
|
6912
6912
|
}
|
|
6913
|
-
if (input.AlarmIdentifier
|
|
6913
|
+
if (input.AlarmIdentifier != null) {
|
|
6914
6914
|
const node = serializeAws_restXmlAlarmIdentifier(input.AlarmIdentifier, context).withName("AlarmIdentifier");
|
|
6915
6915
|
bodyNode.addChildNode(node);
|
|
6916
6916
|
}
|
|
6917
|
-
if (input.InsufficientDataHealthStatus
|
|
6917
|
+
if (input.InsufficientDataHealthStatus != null) {
|
|
6918
6918
|
const node = new xml_builder_1.XmlNode("InsufficientDataHealthStatus")
|
|
6919
6919
|
.addChildNode(new xml_builder_1.XmlText(input.InsufficientDataHealthStatus))
|
|
6920
6920
|
.withName("InsufficientDataHealthStatus");
|
|
6921
6921
|
bodyNode.addChildNode(node);
|
|
6922
6922
|
}
|
|
6923
|
-
if (input.RoutingControlArn
|
|
6923
|
+
if (input.RoutingControlArn != null) {
|
|
6924
6924
|
const node = new xml_builder_1.XmlNode("RoutingControlArn")
|
|
6925
6925
|
.addChildNode(new xml_builder_1.XmlText(input.RoutingControlArn))
|
|
6926
6926
|
.withName("RoutingControlArn");
|
|
@@ -6941,11 +6941,11 @@ const serializeAws_restXmlHealthCheckRegionList = (input, context) => {
|
|
|
6941
6941
|
};
|
|
6942
6942
|
const serializeAws_restXmlHostedZoneConfig = (input, context) => {
|
|
6943
6943
|
const bodyNode = new xml_builder_1.XmlNode("HostedZoneConfig");
|
|
6944
|
-
if (input.Comment
|
|
6944
|
+
if (input.Comment != null) {
|
|
6945
6945
|
const node = new xml_builder_1.XmlNode("ResourceDescription").addChildNode(new xml_builder_1.XmlText(input.Comment)).withName("Comment");
|
|
6946
6946
|
bodyNode.addChildNode(node);
|
|
6947
6947
|
}
|
|
6948
|
-
if (input.PrivateZone
|
|
6948
|
+
if (input.PrivateZone != null) {
|
|
6949
6949
|
const node = new xml_builder_1.XmlNode("IsPrivateZone")
|
|
6950
6950
|
.addChildNode(new xml_builder_1.XmlText(String(input.PrivateZone)))
|
|
6951
6951
|
.withName("PrivateZone");
|
|
@@ -6966,7 +6966,7 @@ const serializeAws_restXmlResettableElementNameList = (input, context) => {
|
|
|
6966
6966
|
};
|
|
6967
6967
|
const serializeAws_restXmlResourceRecord = (input, context) => {
|
|
6968
6968
|
const bodyNode = new xml_builder_1.XmlNode("ResourceRecord");
|
|
6969
|
-
if (input.Value
|
|
6969
|
+
if (input.Value != null) {
|
|
6970
6970
|
const node = new xml_builder_1.XmlNode("RData").addChildNode(new xml_builder_1.XmlText(input.Value)).withName("Value");
|
|
6971
6971
|
bodyNode.addChildNode(node);
|
|
6972
6972
|
}
|
|
@@ -6985,51 +6985,51 @@ const serializeAws_restXmlResourceRecords = (input, context) => {
|
|
|
6985
6985
|
};
|
|
6986
6986
|
const serializeAws_restXmlResourceRecordSet = (input, context) => {
|
|
6987
6987
|
const bodyNode = new xml_builder_1.XmlNode("ResourceRecordSet");
|
|
6988
|
-
if (input.Name
|
|
6988
|
+
if (input.Name != null) {
|
|
6989
6989
|
const node = new xml_builder_1.XmlNode("DNSName").addChildNode(new xml_builder_1.XmlText(input.Name)).withName("Name");
|
|
6990
6990
|
bodyNode.addChildNode(node);
|
|
6991
6991
|
}
|
|
6992
|
-
if (input.Type
|
|
6992
|
+
if (input.Type != null) {
|
|
6993
6993
|
const node = new xml_builder_1.XmlNode("RRType").addChildNode(new xml_builder_1.XmlText(input.Type)).withName("Type");
|
|
6994
6994
|
bodyNode.addChildNode(node);
|
|
6995
6995
|
}
|
|
6996
|
-
if (input.SetIdentifier
|
|
6996
|
+
if (input.SetIdentifier != null) {
|
|
6997
6997
|
const node = new xml_builder_1.XmlNode("ResourceRecordSetIdentifier")
|
|
6998
6998
|
.addChildNode(new xml_builder_1.XmlText(input.SetIdentifier))
|
|
6999
6999
|
.withName("SetIdentifier");
|
|
7000
7000
|
bodyNode.addChildNode(node);
|
|
7001
7001
|
}
|
|
7002
|
-
if (input.Weight
|
|
7002
|
+
if (input.Weight != null) {
|
|
7003
7003
|
const node = new xml_builder_1.XmlNode("ResourceRecordSetWeight")
|
|
7004
7004
|
.addChildNode(new xml_builder_1.XmlText(String(input.Weight)))
|
|
7005
7005
|
.withName("Weight");
|
|
7006
7006
|
bodyNode.addChildNode(node);
|
|
7007
7007
|
}
|
|
7008
|
-
if (input.Region
|
|
7008
|
+
if (input.Region != null) {
|
|
7009
7009
|
const node = new xml_builder_1.XmlNode("ResourceRecordSetRegion").addChildNode(new xml_builder_1.XmlText(input.Region)).withName("Region");
|
|
7010
7010
|
bodyNode.addChildNode(node);
|
|
7011
7011
|
}
|
|
7012
|
-
if (input.GeoLocation
|
|
7012
|
+
if (input.GeoLocation != null) {
|
|
7013
7013
|
const node = serializeAws_restXmlGeoLocation(input.GeoLocation, context).withName("GeoLocation");
|
|
7014
7014
|
bodyNode.addChildNode(node);
|
|
7015
7015
|
}
|
|
7016
|
-
if (input.Failover
|
|
7016
|
+
if (input.Failover != null) {
|
|
7017
7017
|
const node = new xml_builder_1.XmlNode("ResourceRecordSetFailover")
|
|
7018
7018
|
.addChildNode(new xml_builder_1.XmlText(input.Failover))
|
|
7019
7019
|
.withName("Failover");
|
|
7020
7020
|
bodyNode.addChildNode(node);
|
|
7021
7021
|
}
|
|
7022
|
-
if (input.MultiValueAnswer
|
|
7022
|
+
if (input.MultiValueAnswer != null) {
|
|
7023
7023
|
const node = new xml_builder_1.XmlNode("ResourceRecordSetMultiValueAnswer")
|
|
7024
7024
|
.addChildNode(new xml_builder_1.XmlText(String(input.MultiValueAnswer)))
|
|
7025
7025
|
.withName("MultiValueAnswer");
|
|
7026
7026
|
bodyNode.addChildNode(node);
|
|
7027
7027
|
}
|
|
7028
|
-
if (input.TTL
|
|
7028
|
+
if (input.TTL != null) {
|
|
7029
7029
|
const node = new xml_builder_1.XmlNode("TTL").addChildNode(new xml_builder_1.XmlText(String(input.TTL))).withName("TTL");
|
|
7030
7030
|
bodyNode.addChildNode(node);
|
|
7031
7031
|
}
|
|
7032
|
-
if (input.ResourceRecords
|
|
7032
|
+
if (input.ResourceRecords != null) {
|
|
7033
7033
|
const nodes = serializeAws_restXmlResourceRecords(input.ResourceRecords, context);
|
|
7034
7034
|
const containerNode = new xml_builder_1.XmlNode("ResourceRecords");
|
|
7035
7035
|
nodes.map((node) => {
|
|
@@ -7037,23 +7037,23 @@ const serializeAws_restXmlResourceRecordSet = (input, context) => {
|
|
|
7037
7037
|
});
|
|
7038
7038
|
bodyNode.addChildNode(containerNode);
|
|
7039
7039
|
}
|
|
7040
|
-
if (input.AliasTarget
|
|
7040
|
+
if (input.AliasTarget != null) {
|
|
7041
7041
|
const node = serializeAws_restXmlAliasTarget(input.AliasTarget, context).withName("AliasTarget");
|
|
7042
7042
|
bodyNode.addChildNode(node);
|
|
7043
7043
|
}
|
|
7044
|
-
if (input.HealthCheckId
|
|
7044
|
+
if (input.HealthCheckId != null) {
|
|
7045
7045
|
const node = new xml_builder_1.XmlNode("HealthCheckId")
|
|
7046
7046
|
.addChildNode(new xml_builder_1.XmlText(input.HealthCheckId))
|
|
7047
7047
|
.withName("HealthCheckId");
|
|
7048
7048
|
bodyNode.addChildNode(node);
|
|
7049
7049
|
}
|
|
7050
|
-
if (input.TrafficPolicyInstanceId
|
|
7050
|
+
if (input.TrafficPolicyInstanceId != null) {
|
|
7051
7051
|
const node = new xml_builder_1.XmlNode("TrafficPolicyInstanceId")
|
|
7052
7052
|
.addChildNode(new xml_builder_1.XmlText(input.TrafficPolicyInstanceId))
|
|
7053
7053
|
.withName("TrafficPolicyInstanceId");
|
|
7054
7054
|
bodyNode.addChildNode(node);
|
|
7055
7055
|
}
|
|
7056
|
-
if (input.CidrRoutingConfig
|
|
7056
|
+
if (input.CidrRoutingConfig != null) {
|
|
7057
7057
|
const node = serializeAws_restXmlCidrRoutingConfig(input.CidrRoutingConfig, context).withName("CidrRoutingConfig");
|
|
7058
7058
|
bodyNode.addChildNode(node);
|
|
7059
7059
|
}
|
|
@@ -7061,11 +7061,11 @@ const serializeAws_restXmlResourceRecordSet = (input, context) => {
|
|
|
7061
7061
|
};
|
|
7062
7062
|
const serializeAws_restXmlTag = (input, context) => {
|
|
7063
7063
|
const bodyNode = new xml_builder_1.XmlNode("Tag");
|
|
7064
|
-
if (input.Key
|
|
7064
|
+
if (input.Key != null) {
|
|
7065
7065
|
const node = new xml_builder_1.XmlNode("TagKey").addChildNode(new xml_builder_1.XmlText(input.Key)).withName("Key");
|
|
7066
7066
|
bodyNode.addChildNode(node);
|
|
7067
7067
|
}
|
|
7068
|
-
if (input.Value
|
|
7068
|
+
if (input.Value != null) {
|
|
7069
7069
|
const node = new xml_builder_1.XmlNode("TagValue").addChildNode(new xml_builder_1.XmlText(input.Value)).withName("Value");
|
|
7070
7070
|
bodyNode.addChildNode(node);
|
|
7071
7071
|
}
|
|
@@ -7106,11 +7106,11 @@ const serializeAws_restXmlTagResourceIdList = (input, context) => {
|
|
|
7106
7106
|
};
|
|
7107
7107
|
const serializeAws_restXmlVPC = (input, context) => {
|
|
7108
7108
|
const bodyNode = new xml_builder_1.XmlNode("VPC");
|
|
7109
|
-
if (input.VPCRegion
|
|
7109
|
+
if (input.VPCRegion != null) {
|
|
7110
7110
|
const node = new xml_builder_1.XmlNode("VPCRegion").addChildNode(new xml_builder_1.XmlText(input.VPCRegion)).withName("VPCRegion");
|
|
7111
7111
|
bodyNode.addChildNode(node);
|
|
7112
7112
|
}
|
|
7113
|
-
if (input.VPCId
|
|
7113
|
+
if (input.VPCId != null) {
|
|
7114
7114
|
const node = new xml_builder_1.XmlNode("VPCId").addChildNode(new xml_builder_1.XmlText(input.VPCId)).withName("VPCId");
|
|
7115
7115
|
bodyNode.addChildNode(node);
|
|
7116
7116
|
}
|
|
@@ -8425,11 +8425,11 @@ var deserializeAws_restXmlVPCAssociationNotFoundResponse = function (parsedOutpu
|
|
|
8425
8425
|
}); };
|
|
8426
8426
|
var serializeAws_restXmlAlarmIdentifier = function (input, context) {
|
|
8427
8427
|
var bodyNode = new __XmlNode("AlarmIdentifier");
|
|
8428
|
-
if (input.Region
|
|
8428
|
+
if (input.Region != null) {
|
|
8429
8429
|
var node = new __XmlNode("CloudWatchRegion").addChildNode(new __XmlText(input.Region)).withName("Region");
|
|
8430
8430
|
bodyNode.addChildNode(node);
|
|
8431
8431
|
}
|
|
8432
|
-
if (input.Name
|
|
8432
|
+
if (input.Name != null) {
|
|
8433
8433
|
var node = new __XmlNode("AlarmName").addChildNode(new __XmlText(input.Name)).withName("Name");
|
|
8434
8434
|
bodyNode.addChildNode(node);
|
|
8435
8435
|
}
|
|
@@ -8437,15 +8437,15 @@ var serializeAws_restXmlAlarmIdentifier = function (input, context) {
|
|
|
8437
8437
|
};
|
|
8438
8438
|
var serializeAws_restXmlAliasTarget = function (input, context) {
|
|
8439
8439
|
var bodyNode = new __XmlNode("AliasTarget");
|
|
8440
|
-
if (input.HostedZoneId
|
|
8440
|
+
if (input.HostedZoneId != null) {
|
|
8441
8441
|
var node = new __XmlNode("ResourceId").addChildNode(new __XmlText(input.HostedZoneId)).withName("HostedZoneId");
|
|
8442
8442
|
bodyNode.addChildNode(node);
|
|
8443
8443
|
}
|
|
8444
|
-
if (input.DNSName
|
|
8444
|
+
if (input.DNSName != null) {
|
|
8445
8445
|
var node = new __XmlNode("DNSName").addChildNode(new __XmlText(input.DNSName)).withName("DNSName");
|
|
8446
8446
|
bodyNode.addChildNode(node);
|
|
8447
8447
|
}
|
|
8448
|
-
if (input.EvaluateTargetHealth
|
|
8448
|
+
if (input.EvaluateTargetHealth != null) {
|
|
8449
8449
|
var node = new __XmlNode("AliasHealthEnabled")
|
|
8450
8450
|
.addChildNode(new __XmlText(String(input.EvaluateTargetHealth)))
|
|
8451
8451
|
.withName("EvaluateTargetHealth");
|
|
@@ -8455,11 +8455,11 @@ var serializeAws_restXmlAliasTarget = function (input, context) {
|
|
|
8455
8455
|
};
|
|
8456
8456
|
var serializeAws_restXmlChange = function (input, context) {
|
|
8457
8457
|
var bodyNode = new __XmlNode("Change");
|
|
8458
|
-
if (input.Action
|
|
8458
|
+
if (input.Action != null) {
|
|
8459
8459
|
var node = new __XmlNode("ChangeAction").addChildNode(new __XmlText(input.Action)).withName("Action");
|
|
8460
8460
|
bodyNode.addChildNode(node);
|
|
8461
8461
|
}
|
|
8462
|
-
if (input.ResourceRecordSet
|
|
8462
|
+
if (input.ResourceRecordSet != null) {
|
|
8463
8463
|
var node = serializeAws_restXmlResourceRecordSet(input.ResourceRecordSet, context).withName("ResourceRecordSet");
|
|
8464
8464
|
bodyNode.addChildNode(node);
|
|
8465
8465
|
}
|
|
@@ -8467,11 +8467,11 @@ var serializeAws_restXmlChange = function (input, context) {
|
|
|
8467
8467
|
};
|
|
8468
8468
|
var serializeAws_restXmlChangeBatch = function (input, context) {
|
|
8469
8469
|
var bodyNode = new __XmlNode("ChangeBatch");
|
|
8470
|
-
if (input.Comment
|
|
8470
|
+
if (input.Comment != null) {
|
|
8471
8471
|
var node = new __XmlNode("ResourceDescription").addChildNode(new __XmlText(input.Comment)).withName("Comment");
|
|
8472
8472
|
bodyNode.addChildNode(node);
|
|
8473
8473
|
}
|
|
8474
|
-
if (input.Changes
|
|
8474
|
+
if (input.Changes != null) {
|
|
8475
8475
|
var nodes = serializeAws_restXmlChanges(input.Changes, context);
|
|
8476
8476
|
var containerNode_8 = new __XmlNode("Changes");
|
|
8477
8477
|
nodes.map(function (node) {
|
|
@@ -8505,19 +8505,19 @@ var serializeAws_restXmlChildHealthCheckList = function (input, context) {
|
|
|
8505
8505
|
};
|
|
8506
8506
|
var serializeAws_restXmlCidrCollectionChange = function (input, context) {
|
|
8507
8507
|
var bodyNode = new __XmlNode("CidrCollectionChange");
|
|
8508
|
-
if (input.LocationName
|
|
8508
|
+
if (input.LocationName != null) {
|
|
8509
8509
|
var node = new __XmlNode("CidrLocationNameDefaultNotAllowed")
|
|
8510
8510
|
.addChildNode(new __XmlText(input.LocationName))
|
|
8511
8511
|
.withName("LocationName");
|
|
8512
8512
|
bodyNode.addChildNode(node);
|
|
8513
8513
|
}
|
|
8514
|
-
if (input.Action
|
|
8514
|
+
if (input.Action != null) {
|
|
8515
8515
|
var node = new __XmlNode("CidrCollectionChangeAction")
|
|
8516
8516
|
.addChildNode(new __XmlText(input.Action))
|
|
8517
8517
|
.withName("Action");
|
|
8518
8518
|
bodyNode.addChildNode(node);
|
|
8519
8519
|
}
|
|
8520
|
-
if (input.CidrList
|
|
8520
|
+
if (input.CidrList != null) {
|
|
8521
8521
|
var nodes = serializeAws_restXmlCidrList(input.CidrList, context);
|
|
8522
8522
|
var containerNode_9 = new __XmlNode("CidrList");
|
|
8523
8523
|
nodes.map(function (node) {
|
|
@@ -8551,11 +8551,11 @@ var serializeAws_restXmlCidrList = function (input, context) {
|
|
|
8551
8551
|
};
|
|
8552
8552
|
var serializeAws_restXmlCidrRoutingConfig = function (input, context) {
|
|
8553
8553
|
var bodyNode = new __XmlNode("CidrRoutingConfig");
|
|
8554
|
-
if (input.CollectionId
|
|
8554
|
+
if (input.CollectionId != null) {
|
|
8555
8555
|
var node = new __XmlNode("UUID").addChildNode(new __XmlText(input.CollectionId)).withName("CollectionId");
|
|
8556
8556
|
bodyNode.addChildNode(node);
|
|
8557
8557
|
}
|
|
8558
|
-
if (input.LocationName
|
|
8558
|
+
if (input.LocationName != null) {
|
|
8559
8559
|
var node = new __XmlNode("CidrLocationNameDefaultAllowed")
|
|
8560
8560
|
.addChildNode(new __XmlText(input.LocationName))
|
|
8561
8561
|
.withName("LocationName");
|
|
@@ -8565,19 +8565,19 @@ var serializeAws_restXmlCidrRoutingConfig = function (input, context) {
|
|
|
8565
8565
|
};
|
|
8566
8566
|
var serializeAws_restXmlGeoLocation = function (input, context) {
|
|
8567
8567
|
var bodyNode = new __XmlNode("GeoLocation");
|
|
8568
|
-
if (input.ContinentCode
|
|
8568
|
+
if (input.ContinentCode != null) {
|
|
8569
8569
|
var node = new __XmlNode("GeoLocationContinentCode")
|
|
8570
8570
|
.addChildNode(new __XmlText(input.ContinentCode))
|
|
8571
8571
|
.withName("ContinentCode");
|
|
8572
8572
|
bodyNode.addChildNode(node);
|
|
8573
8573
|
}
|
|
8574
|
-
if (input.CountryCode
|
|
8574
|
+
if (input.CountryCode != null) {
|
|
8575
8575
|
var node = new __XmlNode("GeoLocationCountryCode")
|
|
8576
8576
|
.addChildNode(new __XmlText(input.CountryCode))
|
|
8577
8577
|
.withName("CountryCode");
|
|
8578
8578
|
bodyNode.addChildNode(node);
|
|
8579
8579
|
}
|
|
8580
|
-
if (input.SubdivisionCode
|
|
8580
|
+
if (input.SubdivisionCode != null) {
|
|
8581
8581
|
var node = new __XmlNode("GeoLocationSubdivisionCode")
|
|
8582
8582
|
.addChildNode(new __XmlText(input.SubdivisionCode))
|
|
8583
8583
|
.withName("SubdivisionCode");
|
|
@@ -8587,65 +8587,65 @@ var serializeAws_restXmlGeoLocation = function (input, context) {
|
|
|
8587
8587
|
};
|
|
8588
8588
|
var serializeAws_restXmlHealthCheckConfig = function (input, context) {
|
|
8589
8589
|
var bodyNode = new __XmlNode("HealthCheckConfig");
|
|
8590
|
-
if (input.IPAddress
|
|
8590
|
+
if (input.IPAddress != null) {
|
|
8591
8591
|
var node = new __XmlNode("IPAddress").addChildNode(new __XmlText(input.IPAddress)).withName("IPAddress");
|
|
8592
8592
|
bodyNode.addChildNode(node);
|
|
8593
8593
|
}
|
|
8594
|
-
if (input.Port
|
|
8594
|
+
if (input.Port != null) {
|
|
8595
8595
|
var node = new __XmlNode("Port").addChildNode(new __XmlText(String(input.Port))).withName("Port");
|
|
8596
8596
|
bodyNode.addChildNode(node);
|
|
8597
8597
|
}
|
|
8598
|
-
if (input.Type
|
|
8598
|
+
if (input.Type != null) {
|
|
8599
8599
|
var node = new __XmlNode("HealthCheckType").addChildNode(new __XmlText(input.Type)).withName("Type");
|
|
8600
8600
|
bodyNode.addChildNode(node);
|
|
8601
8601
|
}
|
|
8602
|
-
if (input.ResourcePath
|
|
8602
|
+
if (input.ResourcePath != null) {
|
|
8603
8603
|
var node = new __XmlNode("ResourcePath").addChildNode(new __XmlText(input.ResourcePath)).withName("ResourcePath");
|
|
8604
8604
|
bodyNode.addChildNode(node);
|
|
8605
8605
|
}
|
|
8606
|
-
if (input.FullyQualifiedDomainName
|
|
8606
|
+
if (input.FullyQualifiedDomainName != null) {
|
|
8607
8607
|
var node = new __XmlNode("FullyQualifiedDomainName")
|
|
8608
8608
|
.addChildNode(new __XmlText(input.FullyQualifiedDomainName))
|
|
8609
8609
|
.withName("FullyQualifiedDomainName");
|
|
8610
8610
|
bodyNode.addChildNode(node);
|
|
8611
8611
|
}
|
|
8612
|
-
if (input.SearchString
|
|
8612
|
+
if (input.SearchString != null) {
|
|
8613
8613
|
var node = new __XmlNode("SearchString").addChildNode(new __XmlText(input.SearchString)).withName("SearchString");
|
|
8614
8614
|
bodyNode.addChildNode(node);
|
|
8615
8615
|
}
|
|
8616
|
-
if (input.RequestInterval
|
|
8616
|
+
if (input.RequestInterval != null) {
|
|
8617
8617
|
var node = new __XmlNode("RequestInterval")
|
|
8618
8618
|
.addChildNode(new __XmlText(String(input.RequestInterval)))
|
|
8619
8619
|
.withName("RequestInterval");
|
|
8620
8620
|
bodyNode.addChildNode(node);
|
|
8621
8621
|
}
|
|
8622
|
-
if (input.FailureThreshold
|
|
8622
|
+
if (input.FailureThreshold != null) {
|
|
8623
8623
|
var node = new __XmlNode("FailureThreshold")
|
|
8624
8624
|
.addChildNode(new __XmlText(String(input.FailureThreshold)))
|
|
8625
8625
|
.withName("FailureThreshold");
|
|
8626
8626
|
bodyNode.addChildNode(node);
|
|
8627
8627
|
}
|
|
8628
|
-
if (input.MeasureLatency
|
|
8628
|
+
if (input.MeasureLatency != null) {
|
|
8629
8629
|
var node = new __XmlNode("MeasureLatency")
|
|
8630
8630
|
.addChildNode(new __XmlText(String(input.MeasureLatency)))
|
|
8631
8631
|
.withName("MeasureLatency");
|
|
8632
8632
|
bodyNode.addChildNode(node);
|
|
8633
8633
|
}
|
|
8634
|
-
if (input.Inverted
|
|
8634
|
+
if (input.Inverted != null) {
|
|
8635
8635
|
var node = new __XmlNode("Inverted").addChildNode(new __XmlText(String(input.Inverted))).withName("Inverted");
|
|
8636
8636
|
bodyNode.addChildNode(node);
|
|
8637
8637
|
}
|
|
8638
|
-
if (input.Disabled
|
|
8638
|
+
if (input.Disabled != null) {
|
|
8639
8639
|
var node = new __XmlNode("Disabled").addChildNode(new __XmlText(String(input.Disabled))).withName("Disabled");
|
|
8640
8640
|
bodyNode.addChildNode(node);
|
|
8641
8641
|
}
|
|
8642
|
-
if (input.HealthThreshold
|
|
8642
|
+
if (input.HealthThreshold != null) {
|
|
8643
8643
|
var node = new __XmlNode("HealthThreshold")
|
|
8644
8644
|
.addChildNode(new __XmlText(String(input.HealthThreshold)))
|
|
8645
8645
|
.withName("HealthThreshold");
|
|
8646
8646
|
bodyNode.addChildNode(node);
|
|
8647
8647
|
}
|
|
8648
|
-
if (input.ChildHealthChecks
|
|
8648
|
+
if (input.ChildHealthChecks != null) {
|
|
8649
8649
|
var nodes = serializeAws_restXmlChildHealthCheckList(input.ChildHealthChecks, context);
|
|
8650
8650
|
var containerNode_10 = new __XmlNode("ChildHealthChecks");
|
|
8651
8651
|
nodes.map(function (node) {
|
|
@@ -8653,11 +8653,11 @@ var serializeAws_restXmlHealthCheckConfig = function (input, context) {
|
|
|
8653
8653
|
});
|
|
8654
8654
|
bodyNode.addChildNode(containerNode_10);
|
|
8655
8655
|
}
|
|
8656
|
-
if (input.EnableSNI
|
|
8656
|
+
if (input.EnableSNI != null) {
|
|
8657
8657
|
var node = new __XmlNode("EnableSNI").addChildNode(new __XmlText(String(input.EnableSNI))).withName("EnableSNI");
|
|
8658
8658
|
bodyNode.addChildNode(node);
|
|
8659
8659
|
}
|
|
8660
|
-
if (input.Regions
|
|
8660
|
+
if (input.Regions != null) {
|
|
8661
8661
|
var nodes = serializeAws_restXmlHealthCheckRegionList(input.Regions, context);
|
|
8662
8662
|
var containerNode_11 = new __XmlNode("Regions");
|
|
8663
8663
|
nodes.map(function (node) {
|
|
@@ -8665,17 +8665,17 @@ var serializeAws_restXmlHealthCheckConfig = function (input, context) {
|
|
|
8665
8665
|
});
|
|
8666
8666
|
bodyNode.addChildNode(containerNode_11);
|
|
8667
8667
|
}
|
|
8668
|
-
if (input.AlarmIdentifier
|
|
8668
|
+
if (input.AlarmIdentifier != null) {
|
|
8669
8669
|
var node = serializeAws_restXmlAlarmIdentifier(input.AlarmIdentifier, context).withName("AlarmIdentifier");
|
|
8670
8670
|
bodyNode.addChildNode(node);
|
|
8671
8671
|
}
|
|
8672
|
-
if (input.InsufficientDataHealthStatus
|
|
8672
|
+
if (input.InsufficientDataHealthStatus != null) {
|
|
8673
8673
|
var node = new __XmlNode("InsufficientDataHealthStatus")
|
|
8674
8674
|
.addChildNode(new __XmlText(input.InsufficientDataHealthStatus))
|
|
8675
8675
|
.withName("InsufficientDataHealthStatus");
|
|
8676
8676
|
bodyNode.addChildNode(node);
|
|
8677
8677
|
}
|
|
8678
|
-
if (input.RoutingControlArn
|
|
8678
|
+
if (input.RoutingControlArn != null) {
|
|
8679
8679
|
var node = new __XmlNode("RoutingControlArn")
|
|
8680
8680
|
.addChildNode(new __XmlText(input.RoutingControlArn))
|
|
8681
8681
|
.withName("RoutingControlArn");
|
|
@@ -8696,11 +8696,11 @@ var serializeAws_restXmlHealthCheckRegionList = function (input, context) {
|
|
|
8696
8696
|
};
|
|
8697
8697
|
var serializeAws_restXmlHostedZoneConfig = function (input, context) {
|
|
8698
8698
|
var bodyNode = new __XmlNode("HostedZoneConfig");
|
|
8699
|
-
if (input.Comment
|
|
8699
|
+
if (input.Comment != null) {
|
|
8700
8700
|
var node = new __XmlNode("ResourceDescription").addChildNode(new __XmlText(input.Comment)).withName("Comment");
|
|
8701
8701
|
bodyNode.addChildNode(node);
|
|
8702
8702
|
}
|
|
8703
|
-
if (input.PrivateZone
|
|
8703
|
+
if (input.PrivateZone != null) {
|
|
8704
8704
|
var node = new __XmlNode("IsPrivateZone")
|
|
8705
8705
|
.addChildNode(new __XmlText(String(input.PrivateZone)))
|
|
8706
8706
|
.withName("PrivateZone");
|
|
@@ -8721,7 +8721,7 @@ var serializeAws_restXmlResettableElementNameList = function (input, context) {
|
|
|
8721
8721
|
};
|
|
8722
8722
|
var serializeAws_restXmlResourceRecord = function (input, context) {
|
|
8723
8723
|
var bodyNode = new __XmlNode("ResourceRecord");
|
|
8724
|
-
if (input.Value
|
|
8724
|
+
if (input.Value != null) {
|
|
8725
8725
|
var node = new __XmlNode("RData").addChildNode(new __XmlText(input.Value)).withName("Value");
|
|
8726
8726
|
bodyNode.addChildNode(node);
|
|
8727
8727
|
}
|
|
@@ -8740,51 +8740,51 @@ var serializeAws_restXmlResourceRecords = function (input, context) {
|
|
|
8740
8740
|
};
|
|
8741
8741
|
var serializeAws_restXmlResourceRecordSet = function (input, context) {
|
|
8742
8742
|
var bodyNode = new __XmlNode("ResourceRecordSet");
|
|
8743
|
-
if (input.Name
|
|
8743
|
+
if (input.Name != null) {
|
|
8744
8744
|
var node = new __XmlNode("DNSName").addChildNode(new __XmlText(input.Name)).withName("Name");
|
|
8745
8745
|
bodyNode.addChildNode(node);
|
|
8746
8746
|
}
|
|
8747
|
-
if (input.Type
|
|
8747
|
+
if (input.Type != null) {
|
|
8748
8748
|
var node = new __XmlNode("RRType").addChildNode(new __XmlText(input.Type)).withName("Type");
|
|
8749
8749
|
bodyNode.addChildNode(node);
|
|
8750
8750
|
}
|
|
8751
|
-
if (input.SetIdentifier
|
|
8751
|
+
if (input.SetIdentifier != null) {
|
|
8752
8752
|
var node = new __XmlNode("ResourceRecordSetIdentifier")
|
|
8753
8753
|
.addChildNode(new __XmlText(input.SetIdentifier))
|
|
8754
8754
|
.withName("SetIdentifier");
|
|
8755
8755
|
bodyNode.addChildNode(node);
|
|
8756
8756
|
}
|
|
8757
|
-
if (input.Weight
|
|
8757
|
+
if (input.Weight != null) {
|
|
8758
8758
|
var node = new __XmlNode("ResourceRecordSetWeight")
|
|
8759
8759
|
.addChildNode(new __XmlText(String(input.Weight)))
|
|
8760
8760
|
.withName("Weight");
|
|
8761
8761
|
bodyNode.addChildNode(node);
|
|
8762
8762
|
}
|
|
8763
|
-
if (input.Region
|
|
8763
|
+
if (input.Region != null) {
|
|
8764
8764
|
var node = new __XmlNode("ResourceRecordSetRegion").addChildNode(new __XmlText(input.Region)).withName("Region");
|
|
8765
8765
|
bodyNode.addChildNode(node);
|
|
8766
8766
|
}
|
|
8767
|
-
if (input.GeoLocation
|
|
8767
|
+
if (input.GeoLocation != null) {
|
|
8768
8768
|
var node = serializeAws_restXmlGeoLocation(input.GeoLocation, context).withName("GeoLocation");
|
|
8769
8769
|
bodyNode.addChildNode(node);
|
|
8770
8770
|
}
|
|
8771
|
-
if (input.Failover
|
|
8771
|
+
if (input.Failover != null) {
|
|
8772
8772
|
var node = new __XmlNode("ResourceRecordSetFailover")
|
|
8773
8773
|
.addChildNode(new __XmlText(input.Failover))
|
|
8774
8774
|
.withName("Failover");
|
|
8775
8775
|
bodyNode.addChildNode(node);
|
|
8776
8776
|
}
|
|
8777
|
-
if (input.MultiValueAnswer
|
|
8777
|
+
if (input.MultiValueAnswer != null) {
|
|
8778
8778
|
var node = new __XmlNode("ResourceRecordSetMultiValueAnswer")
|
|
8779
8779
|
.addChildNode(new __XmlText(String(input.MultiValueAnswer)))
|
|
8780
8780
|
.withName("MultiValueAnswer");
|
|
8781
8781
|
bodyNode.addChildNode(node);
|
|
8782
8782
|
}
|
|
8783
|
-
if (input.TTL
|
|
8783
|
+
if (input.TTL != null) {
|
|
8784
8784
|
var node = new __XmlNode("TTL").addChildNode(new __XmlText(String(input.TTL))).withName("TTL");
|
|
8785
8785
|
bodyNode.addChildNode(node);
|
|
8786
8786
|
}
|
|
8787
|
-
if (input.ResourceRecords
|
|
8787
|
+
if (input.ResourceRecords != null) {
|
|
8788
8788
|
var nodes = serializeAws_restXmlResourceRecords(input.ResourceRecords, context);
|
|
8789
8789
|
var containerNode_12 = new __XmlNode("ResourceRecords");
|
|
8790
8790
|
nodes.map(function (node) {
|
|
@@ -8792,23 +8792,23 @@ var serializeAws_restXmlResourceRecordSet = function (input, context) {
|
|
|
8792
8792
|
});
|
|
8793
8793
|
bodyNode.addChildNode(containerNode_12);
|
|
8794
8794
|
}
|
|
8795
|
-
if (input.AliasTarget
|
|
8795
|
+
if (input.AliasTarget != null) {
|
|
8796
8796
|
var node = serializeAws_restXmlAliasTarget(input.AliasTarget, context).withName("AliasTarget");
|
|
8797
8797
|
bodyNode.addChildNode(node);
|
|
8798
8798
|
}
|
|
8799
|
-
if (input.HealthCheckId
|
|
8799
|
+
if (input.HealthCheckId != null) {
|
|
8800
8800
|
var node = new __XmlNode("HealthCheckId")
|
|
8801
8801
|
.addChildNode(new __XmlText(input.HealthCheckId))
|
|
8802
8802
|
.withName("HealthCheckId");
|
|
8803
8803
|
bodyNode.addChildNode(node);
|
|
8804
8804
|
}
|
|
8805
|
-
if (input.TrafficPolicyInstanceId
|
|
8805
|
+
if (input.TrafficPolicyInstanceId != null) {
|
|
8806
8806
|
var node = new __XmlNode("TrafficPolicyInstanceId")
|
|
8807
8807
|
.addChildNode(new __XmlText(input.TrafficPolicyInstanceId))
|
|
8808
8808
|
.withName("TrafficPolicyInstanceId");
|
|
8809
8809
|
bodyNode.addChildNode(node);
|
|
8810
8810
|
}
|
|
8811
|
-
if (input.CidrRoutingConfig
|
|
8811
|
+
if (input.CidrRoutingConfig != null) {
|
|
8812
8812
|
var node = serializeAws_restXmlCidrRoutingConfig(input.CidrRoutingConfig, context).withName("CidrRoutingConfig");
|
|
8813
8813
|
bodyNode.addChildNode(node);
|
|
8814
8814
|
}
|
|
@@ -8816,11 +8816,11 @@ var serializeAws_restXmlResourceRecordSet = function (input, context) {
|
|
|
8816
8816
|
};
|
|
8817
8817
|
var serializeAws_restXmlTag = function (input, context) {
|
|
8818
8818
|
var bodyNode = new __XmlNode("Tag");
|
|
8819
|
-
if (input.Key
|
|
8819
|
+
if (input.Key != null) {
|
|
8820
8820
|
var node = new __XmlNode("TagKey").addChildNode(new __XmlText(input.Key)).withName("Key");
|
|
8821
8821
|
bodyNode.addChildNode(node);
|
|
8822
8822
|
}
|
|
8823
|
-
if (input.Value
|
|
8823
|
+
if (input.Value != null) {
|
|
8824
8824
|
var node = new __XmlNode("TagValue").addChildNode(new __XmlText(input.Value)).withName("Value");
|
|
8825
8825
|
bodyNode.addChildNode(node);
|
|
8826
8826
|
}
|
|
@@ -8861,11 +8861,11 @@ var serializeAws_restXmlTagResourceIdList = function (input, context) {
|
|
|
8861
8861
|
};
|
|
8862
8862
|
var serializeAws_restXmlVPC = function (input, context) {
|
|
8863
8863
|
var bodyNode = new __XmlNode("VPC");
|
|
8864
|
-
if (input.VPCRegion
|
|
8864
|
+
if (input.VPCRegion != null) {
|
|
8865
8865
|
var node = new __XmlNode("VPCRegion").addChildNode(new __XmlText(input.VPCRegion)).withName("VPCRegion");
|
|
8866
8866
|
bodyNode.addChildNode(node);
|
|
8867
8867
|
}
|
|
8868
|
-
if (input.VPCId
|
|
8868
|
+
if (input.VPCId != null) {
|
|
8869
8869
|
var node = new __XmlNode("VPCId").addChildNode(new __XmlText(input.VPCId)).withName("VPCId");
|
|
8870
8870
|
bodyNode.addChildNode(node);
|
|
8871
8871
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-route-53",
|
|
3
3
|
"description": "AWS SDK for JavaScript Route 53 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.130.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,39 +18,39 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
31
|
-
"@aws-sdk/middleware-retry": "3.
|
|
32
|
-
"@aws-sdk/middleware-sdk-route53": "3.
|
|
33
|
-
"@aws-sdk/middleware-serde": "3.
|
|
34
|
-
"@aws-sdk/middleware-signing": "3.
|
|
35
|
-
"@aws-sdk/middleware-stack": "3.
|
|
36
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
37
|
-
"@aws-sdk/node-config-provider": "3.
|
|
38
|
-
"@aws-sdk/node-http-handler": "3.
|
|
39
|
-
"@aws-sdk/protocol-http": "3.
|
|
40
|
-
"@aws-sdk/smithy-client": "3.
|
|
41
|
-
"@aws-sdk/types": "3.
|
|
42
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.130.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.130.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.130.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.127.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.127.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.127.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.127.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.127.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.127.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.127.0",
|
|
31
|
+
"@aws-sdk/middleware-retry": "3.127.0",
|
|
32
|
+
"@aws-sdk/middleware-sdk-route53": "3.127.0",
|
|
33
|
+
"@aws-sdk/middleware-serde": "3.127.0",
|
|
34
|
+
"@aws-sdk/middleware-signing": "3.130.0",
|
|
35
|
+
"@aws-sdk/middleware-stack": "3.127.0",
|
|
36
|
+
"@aws-sdk/middleware-user-agent": "3.127.0",
|
|
37
|
+
"@aws-sdk/node-config-provider": "3.127.0",
|
|
38
|
+
"@aws-sdk/node-http-handler": "3.127.0",
|
|
39
|
+
"@aws-sdk/protocol-http": "3.127.0",
|
|
40
|
+
"@aws-sdk/smithy-client": "3.127.0",
|
|
41
|
+
"@aws-sdk/types": "3.127.0",
|
|
42
|
+
"@aws-sdk/url-parser": "3.127.0",
|
|
43
43
|
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
44
44
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
46
46
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
47
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
50
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
47
|
+
"@aws-sdk/util-defaults-mode-browser": "3.127.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-node": "3.130.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-browser": "3.127.0",
|
|
50
|
+
"@aws-sdk/util-user-agent-node": "3.127.0",
|
|
51
51
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|
|
52
52
|
"@aws-sdk/util-utf8-node": "3.109.0",
|
|
53
|
-
"@aws-sdk/util-waiter": "3.
|
|
53
|
+
"@aws-sdk/util-waiter": "3.127.0",
|
|
54
54
|
"@aws-sdk/xml-builder": "3.109.0",
|
|
55
55
|
"entities": "2.2.0",
|
|
56
56
|
"fast-xml-parser": "3.19.0",
|