Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Section


Column
width50%


Panel
borderColor#CCCCCC
bgColor#FFFFFF
titleBGColor#F0F0F0
borderStylesolid
titleOn this page:
Table of Contents



Column


Creating a storage

Expand
titleClick to expand...
Code Block
languagebash
{
    "method": "axxonsoft.bl.config.ConfigurationService.ChangeConfig",
    "data": {
      "added": [ {
          "uid": "hosts/server",
          "units": [ {
              "type": "MultimediaStorage",
              "properties": [
                { "id": "display_name", "properties": [], "value_string": "ArchiveStorage" },
                { "id": "color", "properties": [], "value_string": "Gray" },
                { "id": "storage_type", "value_string": "object" }
      ] } ] } ]
 
    }
}

 

...

ParameterRequiredDescription
schema Yes

Volume type. Possible values:

  • file—local archive on the server,
  • smb—remote archive with SMB protocol connection,
  • azure—archive in Microsoft Azure cloud storage (azure.microsoft.com),
  • s3_amazon—archive in Amazon S3 cloud storage (aws.amazon.com),
  • s3_seagate—archive in Seagate Lyve Cloud cloud storage (www.seagate.com),
  • s3_wasabi—archive in Wasabi cloud storage (wasabi.com),
  • s3—universal archive in the cloud storage (AxxonSoft tested it with min.io.com version RELEASE.2021-08-05T22-01-19Z). It is used when using other types of cloud storage
Parameters for the file type
pathYesThe path to the file/disk with the archive
Parameters for the smb type
hostYesName of the server with remote storage
smb_shareYesRemote storage
pathYesFolder in remote storage, where the archive are stored
smb_domainNoRemote storage domain
userNoUsername
passwordNoPassword
Parameters for the azure type (Microsoft Azure storage)
protocol Yes

Connection protocol: HTTP or HTTPS. This parameter is located in the properties of the created container

hostYes

Azure server address. This parameter is located in the properties of the created container

access_keyYes

Access key in base64. This parameter is located in the Access keys section

containerYes

Azure container. This parameter is located in the properties of the created container

userYes

Username. This parameter is located in the Access keys section (Storage account name)

pathNo

Do not specify the location of the volume folder in Azure—the parameter must be empty

portNoAzure server port
Parameters for the s3_amazon type (Amazon storage)

access_key_id

Yes

Access key identifier (create access keys at https://console.aws.amazon.com/iam/home?#/security_credentials$access_key, authorization required)

secret_access_keyYes

Access key password (available after creating an access key)

bucketYes

Archive volume in Amazon S3 account (bucket). Different volumes can be located in different regions. On the Amazon S3 server, the volume name must be unique, and for the Axxon One operation, it must be pre-created by the user according to the rules (see https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucketnamingrules.html)

regionYes

The region where the volume is located. To reduce the delay when writing and reading an archive, specify the closest region to the Axxon One server. For the list of possible regions, see https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints

pathYesLocation of the Axxon One volume folder inside the bucket
protocolYesConnection protocol: HTTP or HTTPS
hostYes

Server address: amazonaws.com

Parameters for the s3_wasabi type (Wasabi storage)
bucketYes

Archive volume name (Bucket Name), predefined by the user at https://console.wasabisys.com/#/file_manager

regionYes

The region where the corresponding volume is located, as specified at https://console.wasabisys.com/#/file_manager

access_key_idYes

Access key identifier, which must be pre-created at https://console.wasabisys.com/#/access_keys

secret_access_keyYesAccess key password (available after creating an access key)
protocolYesConnection protocol: HTTP or HTTPS
pathYes

Location of the folder created inside the bucket (Folder object in Bucket)

hostYes

Server address: wasabisys.com

Parameters for the s3_seagate type (Seagate Lyve Cloud storage):
bucketYesArchive volume name (Bucket Name), predefined by the user. Corresponds to the Name parameter in the Bucket properties
regionYesThe region where the corresponding volume is located, as specified when it was created. Corresponds to the Region parameter in the Bucket properties
access_key_idYes

Access key identifier, which is generated when creating an account in the Create Service Account window

secret_access_keyYesAccess key password (available after creating an access key)
pathYesLocation of the folder created inside the bucket
protocolYesConnection protocol: HTTP or HTTPS
hostYes

Server address: lyvecloud.seagate.com

Parameters for the s3 type
bucketYesArchive volume name (Bucket Name), predefined by the user. Corresponds to the Name parameter in the Bucket properties
bucket_endpointNo

Domain name with a port.

Note
titleAttention!

You must use the parameter only when using MinIO if the domain name of the MinIO server is specified instead of the server IP address.

Example: http://miniopoc1.agis.xh.ar:9000

where,

  • miniopoc1.agis.xh.ar—the domain name of the MinIO server,
  • 9000MinIO port
regionYesThe region where the volume is located
access_key_idYes

Access key identifier

secret_access_keyYesAccess key password (available after creating an access key)
pathNoLocation of the Axxon One folder inside the bucket
protocolYesConnection protocol: HTTP or HTTPS
hostYes

Server address

portYesServer port

...

To change the archive volume, the same parameters are used as when creating it.

Expand
titleClick to expand...
Code Block
languagebash
{
    "method": "axxonsoft.bl.config.ConfigurationService.ChangeConfig",
    "data": {
        "changed": [
            {
                "uid": "hosts/Server/MultimediaStorage.Gray/ArchiveVolume.4508f459-5eeb-4ee3-881b-4a4e149c7802",
                "properties": [
                    {
                        "id": "label",
                        "value_string": "NewLabel"
                    },
                    {
                        "id": "readonly",
                        "value_bool": false
                    },
                    {
                        "id": "connection_params",
                        "value_properties": {
                            "properties": [
                                {
                                }
                            ]
                        }
                    }
                ]
            }
        ]
    }
}

 

...