DeleteConnectPeer Swift3 Example
func chilkatTest() {
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let rest = CkoRest()!
var success: Bool
let authAws = CkoAuthAws()!
authAws.accessKey = "AWS_ACCESS_KEY"
authAws.secretKey = "AWS_SECRET_KEY"
// Don't forget to change the region to your particular region. (Also make the same change in the call to Connect below.)
authAws.region = "us-west-2"
authAws.serviceName = "networkmanager"
// SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
rest.setAuthAws(authAws)
// URL: https://networkmanager.us-west-2.amazonaws.com/
// Use the same region as specified above.
success = rest.connect("networkmanager.us-west-2.amazonaws.com", port: 443, tls: true, autoReconnect: true)
if success != true {
print("ConnectFailReason: \(rest.connectFailReason.intValue)")
print("\(rest.lastErrorText!)")
return
}
rest.addHeader("Content-Type", value: "application/x-amz-json-1.1")
rest.addHeader("X-Amz-Target", value: "DeleteConnectPeer")
let sbResponseBody = CkoStringBuilder()!
success = rest.fullRequestNoBodySb("DELETE", uriPath: "/connect-peers/{connectPeerId}", sb: sbResponseBody)
if success != true {
print("\(rest.lastErrorText!)")
return
}
var respStatusCode: Int = rest.responseStatusCode.intValue
print("response status code = \(respStatusCode)")
if respStatusCode != 200 {
print("Response Header:")
print("\(rest.responseHeader!)")
print("Response Body:")
print("\(sbResponseBody.getAsString()!)")
return
}
let jResp = CkoJsonObject()!
jResp.loadSb(sbResponseBody)
// The following code parses the JSON response.
// A sample JSON response is shown below the sample code.
// Use this online tool to generate parsing code from sample JSON:
// Generate Parsing Code from JSON
var CoreNetworkAsn: Int
var PeerAsn: Int
var strVal: String?
var Key: String?
var Value: String?
var CoreNetworkAddress: String? = jResp.string(of: "ConnectPeer.Configuration.CoreNetworkAddress")
var PeerAddress: String? = jResp.string(of: "ConnectPeer.Configuration.PeerAddress")
var Protocol: String? = jResp.string(of: "ConnectPeer.Configuration.Protocol")
var ConnectAttachmentId: String? = jResp.string(of: "ConnectPeer.ConnectAttachmentId")
var ConnectPeerId: String? = jResp.string(of: "ConnectPeer.ConnectPeerId")
var CoreNetworkId: String? = jResp.string(of: "ConnectPeer.CoreNetworkId")
var CreatedAt: Int = jResp.int(of: "ConnectPeer.CreatedAt").intValue
var EdgeLocation: String? = jResp.string(of: "ConnectPeer.EdgeLocation")
var State: String? = jResp.string(of: "ConnectPeer.State")
var i: Int = 0
var count_i: Int = jResp.size(ofArray: "ConnectPeer.Configuration.BgpConfigurations").intValue
while i < count_i {
jResp.i = i
CoreNetworkAddress = jResp.string(of: "ConnectPeer.Configuration.BgpConfigurations[i].CoreNetworkAddress")
CoreNetworkAsn = jResp.int(of: "ConnectPeer.Configuration.BgpConfigurations[i].CoreNetworkAsn").intValue
PeerAddress = jResp.string(of: "ConnectPeer.Configuration.BgpConfigurations[i].PeerAddress")
PeerAsn = jResp.int(of: "ConnectPeer.Configuration.BgpConfigurations[i].PeerAsn").intValue
i = i + 1
}
i = 0
count_i = jResp.size(ofArray: "ConnectPeer.Configuration.InsideCidrBlocks").intValue
while i < count_i {
jResp.i = i
strVal = jResp.string(of: "ConnectPeer.Configuration.InsideCidrBlocks[i]")
i = i + 1
}
i = 0
count_i = jResp.size(ofArray: "ConnectPeer.Tags").intValue
while i < count_i {
jResp.i = i
Key = jResp.string(of: "ConnectPeer.Tags[i].Key")
Value = jResp.string(of: "ConnectPeer.Tags[i].Value")
i = i + 1
}
// A sample JSON response body parsed by the above code:
// {
// "ConnectPeer": {
// "Configuration": {
// "BgpConfigurations": [
// {
// "CoreNetworkAddress": "string",
// "CoreNetworkAsn": number,
// "PeerAddress": "string",
// "PeerAsn": number
// }
// ],
// "CoreNetworkAddress": "string",
// "InsideCidrBlocks": [
// "string"
// ],
// "PeerAddress": "string",
// "Protocol": "string"
// },
// "ConnectAttachmentId": "string",
// "ConnectPeerId": "string",
// "CoreNetworkId": "string",
// "CreatedAt": number,
// "EdgeLocation": "string",
// "State": "string",
// "Tags": [
// {
// "Key": "string",
// "Value": "string"
// }
// ]
// }
// }
}