UpdateVpcAttachment VB.NET Example
' This example requires the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
Dim rest As New Chilkat.Rest
Dim success As Boolean
Dim authAws As New Chilkat.AuthAws
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",443,True,True)
If (success <> True) Then
Debug.WriteLine("ConnectFailReason: " & rest.ConnectFailReason)
Debug.WriteLine(rest.LastErrorText)
Exit Sub
End If
' 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
Dim json As New Chilkat.JsonObject
json.UpdateString("AddSubnetArns[0]","string")
json.UpdateInt("Options.Ipv6Support",123)
json.UpdateString("RemoveSubnetArns[0]","string")
' The JSON request body created by the above code:
' {
' "AddSubnetArns": [
' "string"
' ],
' "Options": {
' "Ipv6Support": boolean
' },
' "RemoveSubnetArns": [
' "string"
' ]
' }
rest.AddHeader("Content-Type","application/x-amz-json-1.1")
rest.AddHeader("X-Amz-Target","UpdateVpcAttachment")
Dim sbRequestBody As New Chilkat.StringBuilder
json.EmitSb(sbRequestBody)
Dim sbResponseBody As New Chilkat.StringBuilder
success = rest.FullRequestSb("PATCH","/vpc-attachments/{attachmentId}",sbRequestBody,sbResponseBody)
If (success <> True) Then
Debug.WriteLine(rest.LastErrorText)
Exit Sub
End If
Dim respStatusCode As Integer = rest.ResponseStatusCode
Debug.WriteLine("response status code = " & respStatusCode)
If (respStatusCode <> 200) Then
Debug.WriteLine("Response Header:")
Debug.WriteLine(rest.ResponseHeader)
Debug.WriteLine("Response Body:")
Debug.WriteLine(sbResponseBody.GetAsString())
Exit Sub
End If
Dim jResp As New Chilkat.JsonObject
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
Dim Key As String
Dim Value As String
Dim strVal As String
Dim AttachmentId As String = jResp.StringOf("VpcAttachment.Attachment.AttachmentId")
Dim AttachmentPolicyRuleNumber As Integer = jResp.IntOf("VpcAttachment.Attachment.AttachmentPolicyRuleNumber")
Dim AttachmentType As String = jResp.StringOf("VpcAttachment.Attachment.AttachmentType")
Dim CoreNetworkArn As String = jResp.StringOf("VpcAttachment.Attachment.CoreNetworkArn")
Dim CoreNetworkId As String = jResp.StringOf("VpcAttachment.Attachment.CoreNetworkId")
Dim CreatedAt As Integer = jResp.IntOf("VpcAttachment.Attachment.CreatedAt")
Dim EdgeLocation As String = jResp.StringOf("VpcAttachment.Attachment.EdgeLocation")
Dim OwnerAccountId As String = jResp.StringOf("VpcAttachment.Attachment.OwnerAccountId")
Dim ProposedSegmentChangeAttachmentPolicyRuleNumber As Integer = jResp.IntOf("VpcAttachment.Attachment.ProposedSegmentChange.AttachmentPolicyRuleNumber")
Dim SegmentName As String = jResp.StringOf("VpcAttachment.Attachment.ProposedSegmentChange.SegmentName")
Dim ResourceArn As String = jResp.StringOf("VpcAttachment.Attachment.ResourceArn")
Dim AttachmentSegmentName As String = jResp.StringOf("VpcAttachment.Attachment.SegmentName")
Dim State As String = jResp.StringOf("VpcAttachment.Attachment.State")
Dim UpdatedAt As Integer = jResp.IntOf("VpcAttachment.Attachment.UpdatedAt")
Dim Ipv6Support As Integer = jResp.IntOf("VpcAttachment.Options.Ipv6Support")
Dim i As Integer = 0
Dim count_i As Integer = jResp.SizeOfArray("VpcAttachment.Attachment.ProposedSegmentChange.Tags")
While i < count_i
jResp.I = i
Key = jResp.StringOf("VpcAttachment.Attachment.ProposedSegmentChange.Tags[i].Key")
Value = jResp.StringOf("VpcAttachment.Attachment.ProposedSegmentChange.Tags[i].Value")
i = i + 1
End While
i = 0
count_i = jResp.SizeOfArray("VpcAttachment.Attachment.Tags")
While i < count_i
jResp.I = i
Key = jResp.StringOf("VpcAttachment.Attachment.Tags[i].Key")
Value = jResp.StringOf("VpcAttachment.Attachment.Tags[i].Value")
i = i + 1
End While
i = 0
count_i = jResp.SizeOfArray("VpcAttachment.SubnetArns")
While i < count_i
jResp.I = i
strVal = jResp.StringOf("VpcAttachment.SubnetArns[i]")
i = i + 1
End While
' A sample JSON response body parsed by the above code:
' {
' "VpcAttachment": {
' "Attachment": {
' "AttachmentId": "string",
' "AttachmentPolicyRuleNumber": number,
' "AttachmentType": "string",
' "CoreNetworkArn": "string",
' "CoreNetworkId": "string",
' "CreatedAt": number,
' "EdgeLocation": "string",
' "OwnerAccountId": "string",
' "ProposedSegmentChange": {
' "AttachmentPolicyRuleNumber": number,
' "SegmentName": "string",
' "Tags": [
' {
' "Key": "string",
' "Value": "string"
' }
' ]
' },
' "ResourceArn": "string",
' "SegmentName": "string",
' "State": "string",
' "Tags": [
' {
' "Key": "string",
' "Value": "string"
' }
' ],
' "UpdatedAt": number
' },
' "Options": {
' "Ipv6Support": boolean
' },
' "SubnetArns": [
' "string"
' ]
' }
' }