UpdateReplicationConfiguration Objective-C Example
#import <CkoRest.h>
#import <CkoAuthAws.h>
#import <CkoJsonObject.h>
#import <CkoStringBuilder.h>
#import <NSString.h>
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkoRest *rest = [[CkoRest alloc] init];
BOOL success;
CkoAuthAws *authAws = [[CkoAuthAws alloc] init];
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 = @"drs";
// SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
[rest SetAuthAws: authAws];
// URL: https://drs.us-west-2.amazonaws.com/
// Use the same region as specified above.
success = [rest Connect: @"drs.us-west-2.amazonaws.com" port: [NSNumber numberWithInt: 443] tls: YES autoReconnect: YES];
if (success != YES) {
NSLog(@"%@%d",@"ConnectFailReason: ",[rest.ConnectFailReason intValue]);
NSLog(@"%@",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
CkoJsonObject *json = [[CkoJsonObject alloc] init];
[json UpdateInt: @"associateDefaultSecurityGroup" value: [NSNumber numberWithInt: 123]];
[json UpdateInt: @"bandwidthThrottling" value: [NSNumber numberWithInt: 123]];
[json UpdateInt: @"createPublicIP" value: [NSNumber numberWithInt: 123]];
[json UpdateString: @"dataPlaneRouting" value: @"string"];
[json UpdateString: @"defaultLargeStagingDiskType" value: @"string"];
[json UpdateString: @"ebsEncryption" value: @"string"];
[json UpdateString: @"ebsEncryptionKeyArn" value: @"string"];
[json UpdateString: @"name" value: @"string"];
[json UpdateInt: @"pitPolicy[0].enabled" value: [NSNumber numberWithInt: 123]];
[json UpdateInt: @"pitPolicy[0].interval" value: [NSNumber numberWithInt: 123]];
[json UpdateInt: @"pitPolicy[0].retentionDuration" value: [NSNumber numberWithInt: 123]];
[json UpdateInt: @"pitPolicy[0].ruleID" value: [NSNumber numberWithInt: 123]];
[json UpdateString: @"pitPolicy[0].units" value: @"string"];
[json UpdateString: @"replicatedDisks[0].deviceName" value: @"string"];
[json UpdateInt: @"replicatedDisks[0].iops" value: [NSNumber numberWithInt: 123]];
[json UpdateInt: @"replicatedDisks[0].isBootDisk" value: [NSNumber numberWithInt: 123]];
[json UpdateString: @"replicatedDisks[0].stagingDiskType" value: @"string"];
[json UpdateInt: @"replicatedDisks[0].throughput" value: [NSNumber numberWithInt: 123]];
[json UpdateString: @"replicationServerInstanceType" value: @"string"];
[json UpdateString: @"replicationServersSecurityGroupsIDs[0]" value: @"string"];
[json UpdateString: @"sourceServerID" value: @"string"];
[json UpdateString: @"stagingAreaSubnetId" value: @"string"];
[json UpdateString: @"stagingAreaTags.string" value: @"string"];
[json UpdateInt: @"useDedicatedReplicationServer" value: [NSNumber numberWithInt: 123]];
// The JSON request body created by the above code:
// {
// "associateDefaultSecurityGroup": boolean,
// "bandwidthThrottling": number,
// "createPublicIP": boolean,
// "dataPlaneRouting": "string",
// "defaultLargeStagingDiskType": "string",
// "ebsEncryption": "string",
// "ebsEncryptionKeyArn": "string",
// "name": "string",
// "pitPolicy": [
// {
// "enabled": boolean,
// "interval": number,
// "retentionDuration": number,
// "ruleID": number,
// "units": "string"
// }
// ],
// "replicatedDisks": [
// {
// "deviceName": "string",
// "iops": number,
// "isBootDisk": boolean,
// "stagingDiskType": "string",
// "throughput": number
// }
// ],
// "replicationServerInstanceType": "string",
// "replicationServersSecurityGroupsIDs": [
// "string"
// ],
// "sourceServerID": "string",
// "stagingAreaSubnetId": "string",
// "stagingAreaTags": {
// "string": "string"
// },
// "useDedicatedReplicationServer": boolean
// }
[rest AddHeader: @"Content-Type" value: @"application/x-amz-json-1.1"];
[rest AddHeader: @"X-Amz-Target" value: @"UpdateReplicationConfiguration"];
CkoStringBuilder *sbRequestBody = [[CkoStringBuilder alloc] init];
[json EmitSb: sbRequestBody];
CkoStringBuilder *sbResponseBody = [[CkoStringBuilder alloc] init];
success = [rest FullRequestSb: @"POST" uriPath: @"/UpdateReplicationConfiguration" requestBody: sbRequestBody responseBody: sbResponseBody];
if (success != YES) {
NSLog(@"%@",rest.LastErrorText);
return;
}
int respStatusCode = [rest.ResponseStatusCode intValue];
NSLog(@"%@%d",@"response status code = ",respStatusCode);
if (respStatusCode != 200) {
NSLog(@"%@",@"Response Header:");
NSLog(@"%@",rest.ResponseHeader);
NSLog(@"%@",@"Response Body:");
NSLog(@"%@",[sbResponseBody GetAsString]);
return;
}
CkoJsonObject *jResp = [[CkoJsonObject alloc] init];
[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
int enabled;
int interval;
int retentionDuration;
int ruleID;
NSString *units = 0;
NSString *deviceName = 0;
int iops;
int isBootDisk;
NSString *stagingDiskType = 0;
int throughput;
NSString *strVal = 0;
int associateDefaultSecurityGroup = [[jResp IntOf: @"associateDefaultSecurityGroup"] intValue];
int bandwidthThrottling = [[jResp IntOf: @"bandwidthThrottling"] intValue];
int createPublicIP = [[jResp IntOf: @"createPublicIP"] intValue];
NSString *dataPlaneRouting = [jResp StringOf: @"dataPlaneRouting"];
NSString *defaultLargeStagingDiskType = [jResp StringOf: @"defaultLargeStagingDiskType"];
NSString *ebsEncryption = [jResp StringOf: @"ebsEncryption"];
NSString *ebsEncryptionKeyArn = [jResp StringOf: @"ebsEncryptionKeyArn"];
NSString *name = [jResp StringOf: @"name"];
NSString *replicationServerInstanceType = [jResp StringOf: @"replicationServerInstanceType"];
NSString *sourceServerID = [jResp StringOf: @"sourceServerID"];
NSString *stagingAreaSubnetId = [jResp StringOf: @"stagingAreaSubnetId"];
NSString *v_String = [jResp StringOf: @"stagingAreaTags.string"];
int useDedicatedReplicationServer = [[jResp IntOf: @"useDedicatedReplicationServer"] intValue];
int i = 0;
int count_i = [[jResp SizeOfArray: @"pitPolicy"] intValue];
while (i < count_i) {
jResp.I = [NSNumber numberWithInt: i];
enabled = [[jResp IntOf: @"pitPolicy[i].enabled"] intValue];
interval = [[jResp IntOf: @"pitPolicy[i].interval"] intValue];
retentionDuration = [[jResp IntOf: @"pitPolicy[i].retentionDuration"] intValue];
ruleID = [[jResp IntOf: @"pitPolicy[i].ruleID"] intValue];
units = [jResp StringOf: @"pitPolicy[i].units"];
i = i + 1;
}
i = 0;
count_i = [[jResp SizeOfArray: @"replicatedDisks"] intValue];
while (i < count_i) {
jResp.I = [NSNumber numberWithInt: i];
deviceName = [jResp StringOf: @"replicatedDisks[i].deviceName"];
iops = [[jResp IntOf: @"replicatedDisks[i].iops"] intValue];
isBootDisk = [[jResp IntOf: @"replicatedDisks[i].isBootDisk"] intValue];
stagingDiskType = [jResp StringOf: @"replicatedDisks[i].stagingDiskType"];
throughput = [[jResp IntOf: @"replicatedDisks[i].throughput"] intValue];
i = i + 1;
}
i = 0;
count_i = [[jResp SizeOfArray: @"replicationServersSecurityGroupsIDs"] intValue];
while (i < count_i) {
jResp.I = [NSNumber numberWithInt: i];
strVal = [jResp StringOf: @"replicationServersSecurityGroupsIDs[i]"];
i = i + 1;
}
// A sample JSON response body parsed by the above code:
// {
// "associateDefaultSecurityGroup": boolean,
// "bandwidthThrottling": number,
// "createPublicIP": boolean,
// "dataPlaneRouting": "string",
// "defaultLargeStagingDiskType": "string",
// "ebsEncryption": "string",
// "ebsEncryptionKeyArn": "string",
// "name": "string",
// "pitPolicy": [
// {
// "enabled": boolean,
// "interval": number,
// "retentionDuration": number,
// "ruleID": number,
// "units": "string"
// }
// ],
// "replicatedDisks": [
// {
// "deviceName": "string",
// "iops": number,
// "isBootDisk": boolean,
// "stagingDiskType": "string",
// "throughput": number
// }
// ],
// "replicationServerInstanceType": "string",
// "replicationServersSecurityGroupsIDs": [
// "string"
// ],
// "sourceServerID": "string",
// "stagingAreaSubnetId": "string",
// "stagingAreaTags": {
// "string": "string"
// },
// "useDedicatedReplicationServer": boolean
// }