Chilkat Online Tools

DescribeNFSFileShares autoit Example

AWS Storage Gateway

; This example requires the Chilkat API to have been previously unlocked.
; See Global Unlock Sample for sample code.

$oRest = ObjCreate("Chilkat_9_5_0.Rest")
Local $bSuccess

$oAuthAws = ObjCreate("Chilkat_9_5_0.AuthAws")
$oAuthAws.AccessKey = "AWS_ACCESS_KEY"
$oAuthAws.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.)
$oAuthAws.Region = "us-west-2"
$oAuthAws.ServiceName = "storagegateway"
; SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
$oRest.SetAuthAws($oAuthAws)

; URL: https://storagegateway.us-west-2.amazonaws.com/
; Use the same region as specified above.
$bSuccess = $oRest.Connect("storagegateway.us-west-2.amazonaws.com",443,True,True)
If ($bSuccess <> True) Then
    ConsoleWrite("ConnectFailReason: " & $oRest.ConnectFailReason & @CRLF)
    ConsoleWrite($oRest.LastErrorText & @CRLF)
    Exit
EndIf

; 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

$oJson = ObjCreate("Chilkat_9_5_0.JsonObject")
$oJson.UpdateString("FileShareARNList[0]","string")

; The JSON request body created by the above code:

; {
;   "FileShareARNList": [
;     "string"
;   ]
; }

$oRest.AddHeader("Content-Type","application/x-amz-json-1.1")
$oRest.AddHeader("X-Amz-Target","StorageGateway_20130630.DescribeNFSFileShares")

$oSbRequestBody = ObjCreate("Chilkat_9_5_0.StringBuilder")
$oJson.EmitSb($oSbRequestBody)
$oSbResponseBody = ObjCreate("Chilkat_9_5_0.StringBuilder")
$bSuccess = $oRest.FullRequestSb("POST","/",$oSbRequestBody,$oSbResponseBody)
If ($bSuccess <> True) Then
    ConsoleWrite($oRest.LastErrorText & @CRLF)
    Exit
EndIf

Local $iRespStatusCode = $oRest.ResponseStatusCode
ConsoleWrite("response status code = " & $iRespStatusCode & @CRLF)
If ($iRespStatusCode <> 200) Then
    ConsoleWrite("Response Header:" & @CRLF)
    ConsoleWrite($oRest.ResponseHeader & @CRLF)
    ConsoleWrite("Response Body:" & @CRLF)
    ConsoleWrite($oSbResponseBody.GetAsString() & @CRLF)
    Exit
EndIf

$oJResp = ObjCreate("Chilkat_9_5_0.JsonObject")
$oJResp.LoadSb($oSbResponseBody)

; 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

Local $sAuditDestinationARN
Local $sBucketRegion
Local $iCacheStaleTimeoutInSeconds
Local $sDefaultStorageClass
Local $sFileShareARN
Local $sFileShareId
Local $sFileShareName
Local $sFileShareStatus
Local $sGatewayARN
Local $iGuessMIMETypeEnabled
Local $iKMSEncrypted
Local $sKMSKey
Local $sLocationARN
Local $sDirectoryMode
Local $sFileMode
Local $iGroupId
Local $iOwnerId
Local $sNotificationPolicy
Local $sObjectACL
Local $sPath
Local $iReadOnly
Local $iRequesterPays
Local $sRole
Local $sSquash
Local $sVPCEndpointDNSName
Local $iJ
Local $iCount_j
Local $strVal
Local $sKey
Local $sValue

Local $i = 0
Local $iCount_i = $oJResp.SizeOfArray("NFSFileShareInfoList")
While $i < $iCount_i
    $oJResp.I = $i
    $sAuditDestinationARN = $oJResp.StringOf("NFSFileShareInfoList[i].AuditDestinationARN")
    $sBucketRegion = $oJResp.StringOf("NFSFileShareInfoList[i].BucketRegion")
    $iCacheStaleTimeoutInSeconds = $oJResp.IntOf("NFSFileShareInfoList[i].CacheAttributes.CacheStaleTimeoutInSeconds")
    $sDefaultStorageClass = $oJResp.StringOf("NFSFileShareInfoList[i].DefaultStorageClass")
    $sFileShareARN = $oJResp.StringOf("NFSFileShareInfoList[i].FileShareARN")
    $sFileShareId = $oJResp.StringOf("NFSFileShareInfoList[i].FileShareId")
    $sFileShareName = $oJResp.StringOf("NFSFileShareInfoList[i].FileShareName")
    $sFileShareStatus = $oJResp.StringOf("NFSFileShareInfoList[i].FileShareStatus")
    $sGatewayARN = $oJResp.StringOf("NFSFileShareInfoList[i].GatewayARN")
    $iGuessMIMETypeEnabled = $oJResp.IntOf("NFSFileShareInfoList[i].GuessMIMETypeEnabled")
    $iKMSEncrypted = $oJResp.IntOf("NFSFileShareInfoList[i].KMSEncrypted")
    $sKMSKey = $oJResp.StringOf("NFSFileShareInfoList[i].KMSKey")
    $sLocationARN = $oJResp.StringOf("NFSFileShareInfoList[i].LocationARN")
    $sDirectoryMode = $oJResp.StringOf("NFSFileShareInfoList[i].NFSFileShareDefaults.DirectoryMode")
    $sFileMode = $oJResp.StringOf("NFSFileShareInfoList[i].NFSFileShareDefaults.FileMode")
    $iGroupId = $oJResp.IntOf("NFSFileShareInfoList[i].NFSFileShareDefaults.GroupId")
    $iOwnerId = $oJResp.IntOf("NFSFileShareInfoList[i].NFSFileShareDefaults.OwnerId")
    $sNotificationPolicy = $oJResp.StringOf("NFSFileShareInfoList[i].NotificationPolicy")
    $sObjectACL = $oJResp.StringOf("NFSFileShareInfoList[i].ObjectACL")
    $sPath = $oJResp.StringOf("NFSFileShareInfoList[i].Path")
    $iReadOnly = $oJResp.IntOf("NFSFileShareInfoList[i].ReadOnly")
    $iRequesterPays = $oJResp.IntOf("NFSFileShareInfoList[i].RequesterPays")
    $sRole = $oJResp.StringOf("NFSFileShareInfoList[i].Role")
    $sSquash = $oJResp.StringOf("NFSFileShareInfoList[i].Squash")
    $sVPCEndpointDNSName = $oJResp.StringOf("NFSFileShareInfoList[i].VPCEndpointDNSName")
    $iJ = 0
    $iCount_j = $oJResp.SizeOfArray("NFSFileShareInfoList[i].ClientList")
    While $iJ < $iCount_j
        $oJResp.J = $iJ
        $strVal = $oJResp.StringOf("NFSFileShareInfoList[i].ClientList[j]")
        $iJ = $iJ + 1
    Wend
    $iJ = 0
    $iCount_j = $oJResp.SizeOfArray("NFSFileShareInfoList[i].Tags")
    While $iJ < $iCount_j
        $oJResp.J = $iJ
        $sKey = $oJResp.StringOf("NFSFileShareInfoList[i].Tags[j].Key")
        $sValue = $oJResp.StringOf("NFSFileShareInfoList[i].Tags[j].Value")
        $iJ = $iJ + 1
    Wend
    $i = $i + 1
Wend

; A sample JSON response body parsed by the above code:

; {
;   "NFSFileShareInfoList": [
;     {
;       "AuditDestinationARN": "string",
;       "BucketRegion": "string",
;       "CacheAttributes": {
;         "CacheStaleTimeoutInSeconds": number
;       },
;       "ClientList": [
;         "string"
;       ],
;       "DefaultStorageClass": "string",
;       "FileShareARN": "string",
;       "FileShareId": "string",
;       "FileShareName": "string",
;       "FileShareStatus": "string",
;       "GatewayARN": "string",
;       "GuessMIMETypeEnabled": boolean,
;       "KMSEncrypted": boolean,
;       "KMSKey": "string",
;       "LocationARN": "string",
;       "NFSFileShareDefaults": {
;         "DirectoryMode": "string",
;         "FileMode": "string",
;         "GroupId": number,
;         "OwnerId": number
;       },
;       "NotificationPolicy": "string",
;       "ObjectACL": "string",
;       "Path": "string",
;       "ReadOnly": boolean,
;       "RequesterPays": boolean,
;       "Role": "string",
;       "Squash": "string",
;       "Tags": [
;         {
;           "Key": "string",
;           "Value": "string"
;         }
;       ],
;       "VPCEndpointDNSName": "string"
;     }
;   ]
; }