Skip to content

Added FlashArray REST 2.33

Compare
Choose a tag to compare
@jakubtischler jakubtischler released this 17 Jun 13:18
· 14 commits to master since this release
dde783f
  • POST /volumes/batch now allows parameter allow_throttle
    • This parameter will preemptively fail the operation if array health is not deemed sufficient for the task of copying volumes
  • /volumes now newly contain protocol_endpoint, which contains vcversion
    • GET /volumes?filter=subtype=protocol-endpoint
    • PATCH /volumes?names=PE1
    • POST also allows protocol-endpoint parameter in the body
  • New endpoint /vchost-connections added to manage ACLs (Access Control Policy) relating to vchosts and protocol endpoints
    • POST /vchost-connections?protocol_endpoint_names=pe1&vchost_names=vchost1
    • GET /vchost-connections?vchost_names=vchost1&protocol_endpoint_names=pe1
    • DELETE /vchost-connections?vchost_names=vchost1&protocol_endpoint_ids=pe-id-1
  • New endpoint /volumes/batch/test which attempts to copy multiple volumes without actually doing so
    • Usage is the same as /volumes/batch
  • Array connections now support encryption of traffic using TLS 1.3. This feature is inactive unless explicitly turned on. 
    • GET /array-connections/path
    • GET /array-connections/connection-key
  • Vchost endpoints and certificates now contain a new field is_local
    • GET/POST/PATCH/DELETE /vchosts/certificates
    • GET/POST/PATCH/DELETE /vchosts/endpoints
  • Add ability to create "groups" of email addresses that can subscribe/unsubscribe to specific alert codes and/or categories.
    • GET /policies/alert-watcher
    • POST /policies/alert-watcher
      • Creates one or more alert-watcher policies
      • To copy a policy, set one of either source_names or source_ids
    • PATCH /policies/alert-watcher
      • To enable a policy, set enabled=true. To disable a policy, set enabled=false
      • To rename a policy, set name to the new name
    • DELETE /policies/alert-watcher
    • GET/POST/PATCH/DELETE /policies/alert-watcher/rules
    • GET /policies/alert-watcher/members
    • POST /policies/alert-watcher/members
      • Creates a membership between one or more resources and an alert-watcher policy. The only applicable option right now is array
    • PATCH /policies/alert-watcher/members
    • DELETE /policies/alert-watcher/members
    • GET /policies/alert-watcher/rules/test
      • Test an alert-watcher policy rule's contact information to verify alert notifications can be sent and received.
  • /smtp-servers response now contains encryption_mode
    • Filled in in case server uses TLS, null otherwise