CreateCustomActionType 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 = "codepipeline"
// SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
rest.setAuthAws(authAws)
// URL: https://codepipeline.us-west-2.amazonaws.com/
// Use the same region as specified above.
success = rest.connect("codepipeline.us-west-2.amazonaws.com", port: 443, tls: true, autoReconnect: true)
if success != true {
print("ConnectFailReason: \(rest.connectFailReason.intValue)")
print("\(rest.lastErrorText!)")
return
}
// The following code creates the JSON request body.
// The JSON created by this code is shown below.
// Use this online tool to generate code from sample JSON:
// Generate Code to Create JSON
let json = CkoJsonObject()!
json.update("category", value: "string")
json.update("configurationProperties[0].description", value: "string")
json.updateInt("configurationProperties[0].key", value: 123)
json.update("configurationProperties[0].name", value: "string")
json.updateInt("configurationProperties[0].queryable", value: 123)
json.updateInt("configurationProperties[0].required", value: 123)
json.updateInt("configurationProperties[0].secret", value: 123)
json.update("configurationProperties[0].type", value: "string")
json.updateInt("inputArtifactDetails.maximumCount", value: 123)
json.updateInt("inputArtifactDetails.minimumCount", value: 123)
json.updateInt("outputArtifactDetails.maximumCount", value: 123)
json.updateInt("outputArtifactDetails.minimumCount", value: 123)
json.update("provider", value: "string")
json.update("settings.entityUrlTemplate", value: "string")
json.update("settings.executionUrlTemplate", value: "string")
json.update("settings.revisionUrlTemplate", value: "string")
json.update("settings.thirdPartyConfigurationUrl", value: "string")
json.update("tags[0].key", value: "string")
json.update("tags[0].value", value: "string")
json.update("version", value: "string")
// The JSON request body created by the above code:
// {
// "category": "string",
// "configurationProperties": [
// {
// "description": "string",
// "key": boolean,
// "name": "string",
// "queryable": boolean,
// "required": boolean,
// "secret": boolean,
// "type": "string"
// }
// ],
// "inputArtifactDetails": {
// "maximumCount": number,
// "minimumCount": number
// },
// "outputArtifactDetails": {
// "maximumCount": number,
// "minimumCount": number
// },
// "provider": "string",
// "settings": {
// "entityUrlTemplate": "string",
// "executionUrlTemplate": "string",
// "revisionUrlTemplate": "string",
// "thirdPartyConfigurationUrl": "string"
// },
// "tags": [
// {
// "key": "string",
// "value": "string"
// }
// ],
// "version": "string"
// }
rest.addHeader("Content-Type", value: "application/x-amz-json-1.1")
rest.addHeader("X-Amz-Target", value: "CodePipeline_20150709.CreateCustomActionType")
let sbRequestBody = CkoStringBuilder()!
json.emitSb(sbRequestBody)
let sbResponseBody = CkoStringBuilder()!
success = rest.fullRequestSb("POST", uriPath: "/", requestBody: sbRequestBody, responseBody: 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 description: String?
var key: Int
var name: String?
var queryable: Int
var required: Int
var secret: Int
var v_type: String?
var key_str: String?
var value: String?
var Category: String? = jResp.string(of: "actionType.id.category")
var Owner: String? = jResp.string(of: "actionType.id.owner")
var Provider: String? = jResp.string(of: "actionType.id.provider")
var Version: String? = jResp.string(of: "actionType.id.version")
var MaximumCount: Int = jResp.int(of: "actionType.inputArtifactDetails.maximumCount").intValue
var MinimumCount: Int = jResp.int(of: "actionType.inputArtifactDetails.minimumCount").intValue
var OutputArtifactDetailsMaximumCount: Int = jResp.int(of: "actionType.outputArtifactDetails.maximumCount").intValue
var OutputArtifactDetailsMinimumCount: Int = jResp.int(of: "actionType.outputArtifactDetails.minimumCount").intValue
var EntityUrlTemplate: String? = jResp.string(of: "actionType.settings.entityUrlTemplate")
var ExecutionUrlTemplate: String? = jResp.string(of: "actionType.settings.executionUrlTemplate")
var RevisionUrlTemplate: String? = jResp.string(of: "actionType.settings.revisionUrlTemplate")
var ThirdPartyConfigurationUrl: String? = jResp.string(of: "actionType.settings.thirdPartyConfigurationUrl")
var i: Int = 0
var count_i: Int = jResp.size(ofArray: "actionType.actionConfigurationProperties").intValue
while i < count_i {
jResp.i = i
description = jResp.string(of: "actionType.actionConfigurationProperties[i].description")
key = jResp.int(of: "actionType.actionConfigurationProperties[i].key").intValue
name = jResp.string(of: "actionType.actionConfigurationProperties[i].name")
queryable = jResp.int(of: "actionType.actionConfigurationProperties[i].queryable").intValue
required = jResp.int(of: "actionType.actionConfigurationProperties[i].required").intValue
secret = jResp.int(of: "actionType.actionConfigurationProperties[i].secret").intValue
v_type = jResp.string(of: "actionType.actionConfigurationProperties[i].type")
i = i + 1
}
i = 0
count_i = jResp.size(ofArray: "tags").intValue
while i < count_i {
jResp.i = i
key_str = jResp.string(of: "tags[i].key")
value = jResp.string(of: "tags[i].value")
i = i + 1
}
// A sample JSON response body parsed by the above code:
// {
// "actionType": {
// "actionConfigurationProperties": [
// {
// "description": "string",
// "key": boolean,
// "name": "string",
// "queryable": boolean,
// "required": boolean,
// "secret": boolean,
// "type": "string"
// }
// ],
// "id": {
// "category": "string",
// "owner": "string",
// "provider": "string",
// "version": "string"
// },
// "inputArtifactDetails": {
// "maximumCount": number,
// "minimumCount": number
// },
// "outputArtifactDetails": {
// "maximumCount": number,
// "minimumCount": number
// },
// "settings": {
// "entityUrlTemplate": "string",
// "executionUrlTemplate": "string",
// "revisionUrlTemplate": "string",
// "thirdPartyConfigurationUrl": "string"
// }
// },
// "tags": [
// {
// "key": "string",
// "value": "string"
// }
// ]
// }
}