1
0
mirror of https://github.com/minio/docs.git synced 2025-07-31 18:04:52 +03:00

Bucket Notification Import

CR fixes

Fixups
This commit is contained in:
ravindk89
2021-02-12 13:58:20 -05:00
committed by Ravind Kumar
parent 0e54583047
commit f1574f14ae
24 changed files with 8298 additions and 1562 deletions

File diff suppressed because it is too large Load Diff

View File

@ -19,10 +19,10 @@ The :mc:`mc event` command supports adding, removing, and listing
the bucket event notifications.
MinIO automatically sends triggered events to the configured notification
targets. MinIO supports notification targets like AMQP, Redis, ElasticSearch,
NATS and PostgreSQL. See
:doc:`MinIO Bucket Notifications </concepts/bucket-notifications>`
for more information.
targets. MinIO supports notification targets like AMQP (RabbitMQ), Redis,
ElasticSearch, NATS and PostgreSQL. See
:doc:`MinIO Bucket Notifications </monitoring/bucket-notifications/bucket-notifications>` for more
information.
.. end-mc-event-desc
@ -31,37 +31,30 @@ for more information.
Supported Bucket Events
~~~~~~~~~~~~~~~~~~~~~~~
The following table lists the supported S3 Event and the corresponding
:mc:`mc event` alias:
MinIO supports the following S3 event types:
.. list-table::
:header-rows: 1
:widths: 20 80
:width: 100%
* - MinIO Alias
- Corresponding S3 Event
* - ``put``
- ``s3:ObjectCreated:Put``
* - ``completeMultipartUpload``
- ``s3:ObjectCreated:CompleteMultipartUpload``
* - ``head``
- ``s3:ObjectAccessed:Head``
* - ``post``
- ``s3:ObjectCreated:Post``
* - ``delete``
- ``s3:ObjectRemoved:Delete``
* - ``copy``
- ``s3:ObjectCreated:Copy``
* - ``get``
- ``s3:ObjectAccessed:Get``
- :data:`s3:ObjectRemoved:DeleteMarkerCreated`
- :data:`s3:ObjectRemoved:Delete`
- :data:`s3:ObjectCreated:PutRetention`
- :data:`s3:ObjectCreated:PutLegalHold`
- :data:`s3:ObjectCreated:Put`
- :data:`s3:ObjectCreated:Post`
- :data:`s3:ObjectCreated:Copy`
- :data:`s3:ObjectCreated:CompleteMultipartUpload`
- :data:`s3:ObjectAccessed:Head`
- :data:`s3:ObjectAccessed:GetRetention`
- :data:`s3:ObjectAccessed:GetLegalHold`
- :data:`s3:ObjectAccessed:Get`
- :data:`s3:Replication:OperationCompletedReplication`
- :data:`s3:Replication:OperationFailedReplication`
- :data:`s3:Replication:OperationMissedThreshold`
- :data:`s3:Replication:OperationNotTracked`
- :data:`s3:Replication:OperationReplicatedAfterThreshold`
- :data:`s3:ObjectRestore:Post`
- :data:`s3:ObjectRestore:Completed`
- :data:`s3:BucketCreated`
- :data:`s3:BucketRemoved`
For more complete documentation on the listed S3 events, see
:s3-docs:`S3 Supported Event Types
@ -171,7 +164,7 @@ Syntax
The MinIO server outputs an ARN for each configured
notification target at server startup. See
:doc:`/concepts/bucket-notifications` for more
:doc:`/monitoring/bucket-notifications/bucket-notifications` for more
information.
.. mc-cmd:: event
@ -232,7 +225,7 @@ Syntax
The MinIO server outputs an ARN for each configured
notification target at server startup. See
:doc:`/concepts/bucket-notifications` for more information.
:doc:`/monitoring/bucket-notifications/bucket-notifications` for more information.
.. mc-cmd:: force
:option:
@ -302,7 +295,7 @@ Syntax
The MinIO server outputs an ARN for each configured
notification target at server startup. See
:doc:`/concepts/bucket-notifications` for more information.
:doc:`/monitoring/bucket-notifications/bucket-notifications` for more information.

View File

@ -0,0 +1,101 @@
=============
MinIO Gateway
=============
.. default-domain:: minio
.. contents:: Table of Contents
:local:
:depth: 2
.. _minio-gateway:
MinIO Gateway
-------------
Syntax
~~~~~~
.. mc:: minio gateway
Starts the MinIO Gateway process.
The command has the following syntax:
.. code-block:: shell
:class: copyable
minio gateway [FLAGS] SUBCOMMAND [ARGUMENTS]
:mc:`minio gateway` supports the following flags:
.. mc-cmd:: address
:option:
*Optional* Binds the MinIO Gateway to a specific network address and port
number. Specify the address and port as ``ADDRESS:PORT``, where ``ADDRESS``
is an IP address or hostname and ``PORT`` is a valid and open port on the
host system.
To change the port number for all IP addresses or hostnames configured
on the host machine, specify ``:PORT`` where ``PORT`` is a valid
and open port on the host.
.. mc-cmd:: certs-dir, -S
:option:
*Optional* Specifies the path to the folder containing certificates the
MinIO Gateway process uses for configuring TLS/SSL connectivity.
Omit to use the default directory paths:
- Linux/OSX: ``${HOME}/.minio/certs``
- Windows: ``%%USERPROFILE%%\.minio\certs``.
See :ref:`minio-TLS` for more information on TLS/SSL connectivity.
.. mc-cmd:: quiet
:option:
*Optional* Disables startup information.
.. mc-cmd:: anonymous
:option:
*Optional* Hides sensitive information from logging.
.. mc-cmd:: json
:option:
*Optional* Outputs server logs and startup information in ``JSON``
format.
:mc:`minio gateway` supports the following subcommands:
.. mc-cmd:: nas
:fullpath:
Creates a MinIO Gateway process configured for Network-Attached Storage
(NAS).
.. mc-cmd:: azure
:fullpath:
Creates a MinIO Gateway process configured for Microsoft Azure Blob Storage.
.. mc-cmd:: s3
:fullpath:
Creates a MinIO Gateway process configured for Amazon Simple Storage Service
(S3).
.. mc-cmd:: hdfs
:fullpath:
Creates a MinIO Gateway process configured for Hadoop Distributed File
System (HDFS).
.. mc-cmd:: gcs
:fullpath:
Creates a MinIO Gateway process configured for Google Cloud Storage.

File diff suppressed because it is too large Load Diff