mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-18 06:47:12 +00:00
gcloud: Wed Sep 24 11:08:57 UTC 2025
This commit is contained in:
parent
79c9fb4d92
commit
1dea1ef852
168 changed files with 6625 additions and 700 deletions
98
gcloud/oracle-database/autonomous-databases/failover
Normal file
98
gcloud/oracle-database/autonomous-databases/failover
Normal file
|
|
@ -0,0 +1,98 @@
|
|||
NAME
|
||||
gcloud oracle-database autonomous-databases failover - failovers a standby
|
||||
AutonomousDatabase to a new primary
|
||||
|
||||
SYNOPSIS
|
||||
gcloud oracle-database autonomous-databases failover AUTONOMOUS_DATABASE
|
||||
--peer-autonomous-database=PEER_AUTONOMOUS_DATABASE [--async]
|
||||
[--location=LOCATION] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
Failovers an AutonomousDatabase from a standby database to a new primary.
|
||||
|
||||
EXAMPLES
|
||||
To failover an AutonomousDatabase with id my-instance in the location
|
||||
us-east4 with primary database name as
|
||||
'projects/project-id/locations/us-west3/autonomousDatabases/my-peer-instance'
|
||||
run:
|
||||
|
||||
$ gcloud oracle-database autonomous-databases failover my-instance \
|
||||
--location=us-east4 \
|
||||
--peer-autonomous-database=projects/project-id/locations/\
|
||||
us-west3/autonomousDatabases/my-peer-instance
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
AutonomousDatabase resource - The name of the Autonomous Database in the
|
||||
following format:
|
||||
projects/{project}/locations/{location}/autonomousDatabases/{autonomous_database}.
|
||||
This represents a Cloud resource. (NOTE) Some attributes are not given
|
||||
arguments in this group but can be set in other ways.
|
||||
|
||||
To set the project attribute:
|
||||
◆ provide the argument autonomous_database on the command line with a
|
||||
fully specified name;
|
||||
◆ provide the argument --project on the command line;
|
||||
◆ set the property core/project.
|
||||
|
||||
To set the location attribute:
|
||||
◆ provide the argument autonomous_database on the command line with a
|
||||
fully specified name;
|
||||
◆ provide the argument --location on the command line.
|
||||
|
||||
This must be specified.
|
||||
|
||||
AUTONOMOUS_DATABASE
|
||||
ID of the autonomousDatabase or fully qualified identifier for the
|
||||
autonomousDatabase.
|
||||
|
||||
To set the autonomous_database attribute:
|
||||
▸ provide the argument autonomous_database on the command line.
|
||||
|
||||
REQUIRED FLAGS
|
||||
AutonomousDatabase resource - The peer database name to fail over to. This
|
||||
represents a Cloud resource. (NOTE) Some attributes are not given
|
||||
arguments in this group but can be set in other ways.
|
||||
|
||||
To set the project attribute:
|
||||
◆ provide the argument --peer-autonomous-database on the command line
|
||||
with a fully specified name;
|
||||
◆ provide the argument --project on the command line;
|
||||
◆ set the property core/project.
|
||||
|
||||
To set the location attribute:
|
||||
◆ provide the argument --peer-autonomous-database on the command line
|
||||
with a fully specified name;
|
||||
◆ provide the argument --location on the command line.
|
||||
|
||||
This must be specified.
|
||||
|
||||
--peer-autonomous-database=PEER_AUTONOMOUS_DATABASE
|
||||
ID of the autonomousDatabase or fully qualified identifier for the
|
||||
autonomousDatabase.
|
||||
|
||||
To set the autonomous-database attribute:
|
||||
▸ provide the argument --peer-autonomous-database on the command
|
||||
line.
|
||||
|
||||
OPTIONAL FLAGS
|
||||
--async
|
||||
Return immediately, without waiting for the operation in progress to
|
||||
complete.
|
||||
|
||||
--location=LOCATION
|
||||
For resources [autonomous_database, peer-autonomous-database], provides
|
||||
fallback value for resource location attribute. When the resource's
|
||||
full URI path is not provided, location will fallback to this flag
|
||||
value.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
||||
--trace-token, --user-output-enabled, --verbosity.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
API REFERENCE
|
||||
This command uses the oracledatabase/v1 API. The full documentation for
|
||||
this API can be found at: https://cloud.google.com/oracle/database/docs
|
||||
|
|
@ -25,6 +25,9 @@ COMMANDS
|
|||
describe
|
||||
Get details of an AutonomousDatabase.
|
||||
|
||||
failover
|
||||
Failovers a standby AutonomousDatabase to a new primary.
|
||||
|
||||
generate-wallet
|
||||
Generate wallet for an AutonomousDatabase.
|
||||
|
||||
|
|
|
|||
21
gcloud/oracle-database/database-character-sets/help
Normal file
21
gcloud/oracle-database/database-character-sets/help
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
NAME
|
||||
gcloud oracle-database database-character-sets - manage Database Character
|
||||
Set resources
|
||||
|
||||
SYNOPSIS
|
||||
gcloud oracle-database database-character-sets COMMAND
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
Manage Database Character Set resources.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --help.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
COMMANDS
|
||||
COMMAND is one of the following:
|
||||
|
||||
list
|
||||
List all DatabaseCharacterSets.
|
||||
82
gcloud/oracle-database/database-character-sets/list
Normal file
82
gcloud/oracle-database/database-character-sets/list
Normal file
|
|
@ -0,0 +1,82 @@
|
|||
NAME
|
||||
gcloud oracle-database database-character-sets list - list all
|
||||
DatabaseCharacterSets
|
||||
|
||||
SYNOPSIS
|
||||
gcloud oracle-database database-character-sets list --location=LOCATION
|
||||
[--filter=EXPRESSION] [--limit=LIMIT] [--page-size=PAGE_SIZE]
|
||||
[--sort-by=[FIELD,...]] [--uri] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
List all DatabaseCharacterSets.
|
||||
|
||||
EXAMPLES
|
||||
To list all DatabaseCharacterSets in the location us-east4 for character
|
||||
set character-set, run:
|
||||
|
||||
$ gcloud oracle-database database-character-sets list \
|
||||
--location=us-east4 --filter="character_set_type=character-set"
|
||||
|
||||
REQUIRED FLAGS
|
||||
Location resource - The parent value for DatabaseCharacterSets in the
|
||||
following format: projects/{project}/locations/{location}. This represents
|
||||
a Cloud resource. (NOTE) Some attributes are not given arguments in this
|
||||
group but can be set in other ways.
|
||||
|
||||
To set the project attribute:
|
||||
◆ provide the argument --location on the command line with a fully
|
||||
specified name;
|
||||
◆ provide the argument --project on the command line;
|
||||
◆ set the property core/project.
|
||||
|
||||
This must be specified.
|
||||
|
||||
--location=LOCATION
|
||||
ID of the location or fully qualified identifier for the location.
|
||||
|
||||
To set the location attribute:
|
||||
▸ provide the argument --location on the command line.
|
||||
|
||||
LIST COMMAND FLAGS
|
||||
--filter=EXPRESSION
|
||||
Apply a Boolean filter EXPRESSION to each resource item to be listed.
|
||||
If the expression evaluates True, then that item is listed. For more
|
||||
details and examples of filter expressions, run $ gcloud topic filters.
|
||||
This flag interacts with other flags that are applied in this order:
|
||||
--flatten, --sort-by, --filter, --limit.
|
||||
|
||||
--limit=LIMIT
|
||||
Maximum number of resources to list. The default is unlimited. This
|
||||
flag interacts with other flags that are applied in this order:
|
||||
--flatten, --sort-by, --filter, --limit.
|
||||
|
||||
--page-size=PAGE_SIZE
|
||||
Some services group resource list output into pages. This flag
|
||||
specifies the maximum number of resources per page. The default is
|
||||
determined by the service if it supports paging, otherwise it is
|
||||
unlimited (no paging). Paging may be applied before or after --filter
|
||||
and --limit depending on the service.
|
||||
|
||||
--sort-by=[FIELD,...]
|
||||
Comma-separated list of resource field key names to sort by. The
|
||||
default order is ascending. Prefix a field with ``~'' for descending
|
||||
order on that field. This flag interacts with other flags that are
|
||||
applied in this order: --flatten, --sort-by, --filter, --limit.
|
||||
|
||||
--uri
|
||||
Print a list of resource URIs instead of the default output, and change
|
||||
the command output to a list of URIs. If this flag is used with
|
||||
--format, the formatting is applied on this URI list. To display URIs
|
||||
alongside other keys instead, use the uri() transform.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
||||
--trace-token, --user-output-enabled, --verbosity.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
API REFERENCE
|
||||
This command uses the oracledatabase/v1 API. The full documentation for
|
||||
this API can be found at: https://cloud.google.com/oracle/database/docs
|
||||
60
gcloud/oracle-database/databases/describe
Normal file
60
gcloud/oracle-database/databases/describe
Normal file
|
|
@ -0,0 +1,60 @@
|
|||
NAME
|
||||
gcloud oracle-database databases describe - get details of a Database
|
||||
|
||||
SYNOPSIS
|
||||
gcloud oracle-database databases describe (DATABASE : --location=LOCATION)
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
Get details of a Database.
|
||||
|
||||
EXAMPLES
|
||||
To get a Database with id my-database in the location us-east4 for a given
|
||||
DbSystem with id my-db-system, run:
|
||||
|
||||
$ gcloud oracle-database databases describe my-database \
|
||||
--location=us-east4
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Database resource - The name of the Database resource in the following
|
||||
format: projects/{project}/locations/{region}/databases/{database} The
|
||||
arguments in this group can be used to specify the attributes of this
|
||||
resource. (NOTE) Some attributes are not given arguments in this group but
|
||||
can be set in other ways.
|
||||
|
||||
To set the project attribute:
|
||||
◆ provide the argument database on the command line with a fully
|
||||
specified name;
|
||||
◆ provide the argument --project on the command line;
|
||||
◆ set the property core/project.
|
||||
|
||||
This must be specified.
|
||||
|
||||
DATABASE
|
||||
ID of the database or fully qualified identifier for the database.
|
||||
|
||||
To set the database attribute:
|
||||
▸ provide the argument database on the command line.
|
||||
|
||||
This positional argument must be specified if any of the other
|
||||
arguments in this group are specified.
|
||||
|
||||
--location=LOCATION
|
||||
The location id of the database resource.
|
||||
|
||||
To set the location attribute:
|
||||
▸ provide the argument database on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --location on the command line.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
||||
--trace-token, --user-output-enabled, --verbosity.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
API REFERENCE
|
||||
This command uses the oracledatabase/v1 API. The full documentation for
|
||||
this API can be found at: https://cloud.google.com/oracle/database/docs
|
||||
22
gcloud/oracle-database/databases/help
Normal file
22
gcloud/oracle-database/databases/help
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
NAME
|
||||
gcloud oracle-database databases - manage Database resources
|
||||
|
||||
SYNOPSIS
|
||||
gcloud oracle-database databases COMMAND [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
Manage Database resources.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --help.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
COMMANDS
|
||||
COMMAND is one of the following:
|
||||
|
||||
describe
|
||||
Get details of a Database.
|
||||
|
||||
list
|
||||
List all Databases.
|
||||
82
gcloud/oracle-database/databases/list
Normal file
82
gcloud/oracle-database/databases/list
Normal file
|
|
@ -0,0 +1,82 @@
|
|||
NAME
|
||||
gcloud oracle-database databases list - list all Databases
|
||||
|
||||
SYNOPSIS
|
||||
gcloud oracle-database databases list --location=LOCATION
|
||||
[--filter=EXPRESSION] [--limit=LIMIT] [--page-size=PAGE_SIZE]
|
||||
[--sort-by=[FIELD,...]] [--uri] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
List all Databases.
|
||||
|
||||
EXAMPLES
|
||||
To list all Databases in the location us-east4 for a given DbSystem with id
|
||||
my-db-system, run:
|
||||
|
||||
$ gcloud oracle-database databases list --location=us-east4 \
|
||||
--filter="dbSystem=projects/project-id/locations/us-east4/dbSyst\
|
||||
ems/my-db-system"
|
||||
|
||||
REQUIRED FLAGS
|
||||
Location resource - The parent resource name in the following format:
|
||||
projects/{project}/locations/{region} This represents a Cloud resource.
|
||||
(NOTE) Some attributes are not given arguments in this group but can be
|
||||
set in other ways.
|
||||
|
||||
To set the project attribute:
|
||||
◆ provide the argument --location on the command line with a fully
|
||||
specified name;
|
||||
◆ provide the argument --project on the command line;
|
||||
◆ set the property core/project.
|
||||
|
||||
This must be specified.
|
||||
|
||||
--location=LOCATION
|
||||
ID of the location or fully qualified identifier for the location.
|
||||
|
||||
To set the location attribute:
|
||||
▸ provide the argument --location on the command line.
|
||||
|
||||
LIST COMMAND FLAGS
|
||||
--filter=EXPRESSION
|
||||
Apply a Boolean filter EXPRESSION to each resource item to be listed.
|
||||
If the expression evaluates True, then that item is listed. For more
|
||||
details and examples of filter expressions, run $ gcloud topic filters.
|
||||
This flag interacts with other flags that are applied in this order:
|
||||
--flatten, --sort-by, --filter, --limit.
|
||||
|
||||
--limit=LIMIT
|
||||
Maximum number of resources to list. The default is unlimited. This
|
||||
flag interacts with other flags that are applied in this order:
|
||||
--flatten, --sort-by, --filter, --limit.
|
||||
|
||||
--page-size=PAGE_SIZE
|
||||
Some services group resource list output into pages. This flag
|
||||
specifies the maximum number of resources per page. The default is
|
||||
determined by the service if it supports paging, otherwise it is
|
||||
unlimited (no paging). Paging may be applied before or after --filter
|
||||
and --limit depending on the service.
|
||||
|
||||
--sort-by=[FIELD,...]
|
||||
Comma-separated list of resource field key names to sort by. The
|
||||
default order is ascending. Prefix a field with ``~'' for descending
|
||||
order on that field. This flag interacts with other flags that are
|
||||
applied in this order: --flatten, --sort-by, --filter, --limit.
|
||||
|
||||
--uri
|
||||
Print a list of resource URIs instead of the default output, and change
|
||||
the command output to a list of URIs. If this flag is used with
|
||||
--format, the formatting is applied on this URI list. To display URIs
|
||||
alongside other keys instead, use the uri() transform.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
||||
--trace-token, --user-output-enabled, --verbosity.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
API REFERENCE
|
||||
This command uses the oracledatabase/v1 API. The full documentation for
|
||||
this API can be found at: https://cloud.google.com/oracle/database/docs
|
||||
21
gcloud/oracle-database/db-system-initial-storage-sizes/help
Normal file
21
gcloud/oracle-database/db-system-initial-storage-sizes/help
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
NAME
|
||||
gcloud oracle-database db-system-initial-storage-sizes - manage Db System
|
||||
Initial Storage Size resources
|
||||
|
||||
SYNOPSIS
|
||||
gcloud oracle-database db-system-initial-storage-sizes COMMAND
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
Manage Db System Initial Storage Size resources.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --help.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
COMMANDS
|
||||
COMMAND is one of the following:
|
||||
|
||||
list
|
||||
List all DbSystemInitialStorageSizes.
|
||||
82
gcloud/oracle-database/db-system-initial-storage-sizes/list
Normal file
82
gcloud/oracle-database/db-system-initial-storage-sizes/list
Normal file
|
|
@ -0,0 +1,82 @@
|
|||
NAME
|
||||
gcloud oracle-database db-system-initial-storage-sizes list - list all
|
||||
DbSystemInitialStorageSizes
|
||||
|
||||
SYNOPSIS
|
||||
gcloud oracle-database db-system-initial-storage-sizes list
|
||||
--location=LOCATION [--filter=EXPRESSION] [--limit=LIMIT]
|
||||
[--page-size=PAGE_SIZE] [--sort-by=[FIELD,...]] [--uri]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
List all DbSystemInitialStorageSizes.
|
||||
|
||||
EXAMPLES
|
||||
To list all DbSystemInitialStorageSizes in the location us-east4, run:
|
||||
|
||||
$ gcloud oracle-database db-system-initial-storage-sizes list \
|
||||
--location=us-east4
|
||||
|
||||
REQUIRED FLAGS
|
||||
Location resource - The parent value for the DbSystemInitialStorageSize
|
||||
resource with the format: projects/{project}/locations/{location} This
|
||||
represents a Cloud resource. (NOTE) Some attributes are not given
|
||||
arguments in this group but can be set in other ways.
|
||||
|
||||
To set the project attribute:
|
||||
◆ provide the argument --location on the command line with a fully
|
||||
specified name;
|
||||
◆ provide the argument --project on the command line;
|
||||
◆ set the property core/project.
|
||||
|
||||
This must be specified.
|
||||
|
||||
--location=LOCATION
|
||||
ID of the location or fully qualified identifier for the location.
|
||||
|
||||
To set the location attribute:
|
||||
▸ provide the argument --location on the command line.
|
||||
|
||||
LIST COMMAND FLAGS
|
||||
--filter=EXPRESSION
|
||||
Apply a Boolean filter EXPRESSION to each resource item to be listed.
|
||||
If the expression evaluates True, then that item is listed. For more
|
||||
details and examples of filter expressions, run $ gcloud topic filters.
|
||||
This flag interacts with other flags that are applied in this order:
|
||||
--flatten, --sort-by, --filter, --limit.
|
||||
|
||||
--limit=LIMIT
|
||||
Maximum number of resources to list. The default is unlimited. This
|
||||
flag interacts with other flags that are applied in this order:
|
||||
--flatten, --sort-by, --filter, --limit.
|
||||
|
||||
--page-size=PAGE_SIZE
|
||||
Some services group resource list output into pages. This flag
|
||||
specifies the maximum number of resources per page. The default is
|
||||
determined by the service if it supports paging, otherwise it is
|
||||
unlimited (no paging). Paging may be applied before or after --filter
|
||||
and --limit depending on the service.
|
||||
|
||||
--sort-by=[FIELD,...]
|
||||
Comma-separated list of resource field key names to sort by. The
|
||||
default order is ascending. Prefix a field with ``~'' for descending
|
||||
order on that field. This flag interacts with other flags that are
|
||||
applied in this order: --flatten, --sort-by, --filter, --limit.
|
||||
|
||||
--uri
|
||||
Print a list of resource URIs instead of the default output, and change
|
||||
the command output to a list of URIs. If this flag is used with
|
||||
--format, the formatting is applied on this URI list. To display URIs
|
||||
alongside other keys instead, use the uri() transform.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
||||
--trace-token, --user-output-enabled, --verbosity.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
API REFERENCE
|
||||
This command uses the oracledatabase/v1 API. The full documentation for
|
||||
this API can be found at: https://cloud.google.com/oracle/database/docs
|
||||
461
gcloud/oracle-database/db-systems/create
Normal file
461
gcloud/oracle-database/db-systems/create
Normal file
|
|
@ -0,0 +1,461 @@
|
|||
NAME
|
||||
gcloud oracle-database db-systems create - create a new DbSystem
|
||||
|
||||
SYNOPSIS
|
||||
gcloud oracle-database db-systems create DB_SYSTEM
|
||||
--display-name=DISPLAY_NAME --odb-subnet=ODB_SUBNET [--async]
|
||||
[--gcp-oracle-zone=GCP_ORACLE_ZONE] [--labels=[LABELS,...]]
|
||||
[--location=LOCATION] [--odb-network=ODB_NETWORK]
|
||||
[--request-id=REQUEST_ID]
|
||||
[[--properties-compute-count=PROPERTIES_COMPUTE_COUNT
|
||||
--properties-database-edition=PROPERTIES_DATABASE_EDITION
|
||||
--properties-initial-data-storage-size-gb=PROPERTIES_INITIAL_DATA_STORAGE_SIZE_GB --properties-license-model=PROPERTIES_LICENSE_MODEL --properties-shape=PROPERTIES_SHAPE --properties-ssh-public-keys=[PROPERTIES_SSH_PUBLIC_KEYS,
|
||||
...]
|
||||
: --db-system-options-storage-management=DB_SYSTEM_OPTIONS_STORAGE_MANAGEMENT --properties-compute-model=PROPERTIES_COMPUTE_MODEL --properties-data-storage-size-gb=PROPERTIES_DATA_STORAGE_SIZE_GB --properties-domain=PROPERTIES_DOMAIN --properties-hostname-prefix=PROPERTIES_HOSTNAME_PREFIX --properties-memory-size-gb=PROPERTIES_MEMORY_SIZE_GB --properties-node-count=PROPERTIES_NODE_COUNT --properties-private-ip=PROPERTIES_PRIVATE_IP --properties-reco-storage-size-gb=PROPERTIES_RECO_STORAGE_SIZE_GB --data-collection-options-is-diagnostics-events-enabled --data-collection-options-is-incident-logs-enabled [--db-home-version=DB_HOME_VERSION (--database-admin-password=DATABASE_ADMIN_PASSWORD : --database-character-set=DATABASE_CHARACTER_SET --database-db-home-name=DATABASE_DB_HOME_NAME --database-db-name=DATABASE_DB_NAME --database-db-unique-name=DATABASE_DB_UNIQUE_NAME --database-id=DATABASE_ID --database-name=DATABASE_NAME --database-ncharacter-set=DATABASE_NCHARACTER_SET --database-tde-wallet-password=DATABASE_TDE_WALLET_PASSWORD [--properties-db-version=PROPERTIES_DB_VERSION : --db-backup-config-auto-enabled --db-backup-config-auto-full-day=DB_BACKUP_CONFIG_AUTO_FULL_DAY --db-backup-config-auto-full-window=DB_BACKUP_CONFIG_AUTO_FULL_WINDOW --db-backup-config-auto-incremental-window=DB_BACKUP_CONFIG_AUTO_INCREMENTAL_WINDOW --db-backup-config-deletion-policy=DB_BACKUP_CONFIG_DELETION_POLICY --db-backup-config-destination-details=[type=TYPE] --db-backup-config-retention-period-days=DB_BACKUP_CONFIG_RETENTION_PERIOD_DAYS]) : --db-home-display-name=DB_HOME_DISPLAY_NAME --db-home-is-unified-auditing-enabled] --time-zone-id=TIME_ZONE_ID --time-zone-version=TIME_ZONE_VERSION]]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
Create a new DbSystem.
|
||||
|
||||
EXAMPLES
|
||||
Choose an available db-version in your location by running gcloud
|
||||
oracle-database db-versions list --location=us-east4. Choose an available
|
||||
db-system-initial-storage-size in your location by running gcloud
|
||||
oracle-database db-system-initial-storage-sizes list --location=us-east4.
|
||||
Choose an available shape in your location by running gcloud
|
||||
oracle-database db-system-shapes list --location=us-east4. To create
|
||||
DbSystem with id my-db-system in the location us-east4 with display-name my
|
||||
db system, run:
|
||||
|
||||
$ gcloud oracle-database db-systems create my-db-system \
|
||||
--location=us-east4 --display-name="my db system" \
|
||||
--properties-db-home-db-version=xx.0.0.0 \
|
||||
--properties-db-system-initial-storage-size=1000 \
|
||||
--properties-shape=VM.FOO
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
DbSystem resource - Identifier. The name of the DbSystem resource in the
|
||||
following format:
|
||||
projects/{project}/locations/{region}/dbSystems/{db_system} This
|
||||
represents a Cloud resource. (NOTE) Some attributes are not given
|
||||
arguments in this group but can be set in other ways.
|
||||
|
||||
To set the project attribute:
|
||||
◆ provide the argument db_system on the command line with a fully
|
||||
specified name;
|
||||
◆ provide the argument --project on the command line;
|
||||
◆ set the property core/project.
|
||||
|
||||
To set the location attribute:
|
||||
◆ provide the argument db_system on the command line with a fully
|
||||
specified name;
|
||||
◆ provide the argument --location on the command line.
|
||||
|
||||
This must be specified.
|
||||
|
||||
DB_SYSTEM
|
||||
ID of the dbSystem or fully qualified identifier for the dbSystem.
|
||||
|
||||
To set the db_system attribute:
|
||||
▸ provide the argument db_system on the command line.
|
||||
|
||||
REQUIRED FLAGS
|
||||
--display-name=DISPLAY_NAME
|
||||
The display name for the System db. The name does not have to be unique
|
||||
within your project.
|
||||
|
||||
OdbSubnet resource - The name of the OdbSubnet associated with the
|
||||
DbSystem for IP allocation. Format:
|
||||
projects/{project}/locations/{location}/odbNetworks/{odb_network}/odbSubnets/{odb_subnet}
|
||||
This represents a Cloud resource. (NOTE) Some attributes are not given
|
||||
arguments in this group but can be set in other ways.
|
||||
|
||||
To set the project attribute:
|
||||
◆ provide the argument --odb-subnet on the command line with a fully
|
||||
specified name;
|
||||
◆ provide the argument --project on the command line;
|
||||
◆ set the property core/project.
|
||||
|
||||
To set the location attribute:
|
||||
◆ provide the argument --odb-subnet on the command line with a fully
|
||||
specified name;
|
||||
◆ provide the argument --location on the command line.
|
||||
|
||||
To set the odb-network attribute:
|
||||
◆ provide the argument --odb-subnet on the command line with a fully
|
||||
specified name;
|
||||
◆ provide the argument --odb-network on the command line.
|
||||
|
||||
This must be specified.
|
||||
|
||||
--odb-subnet=ODB_SUBNET
|
||||
ID of the odbSubnet or fully qualified identifier for the odbSubnet.
|
||||
|
||||
To set the odb-subnet attribute:
|
||||
▸ provide the argument --odb-subnet on the command line.
|
||||
|
||||
OPTIONAL FLAGS
|
||||
--async
|
||||
Return immediately, without waiting for the operation in progress to
|
||||
complete.
|
||||
|
||||
--gcp-oracle-zone=GCP_ORACLE_ZONE
|
||||
The GCP Oracle zone where Oracle DbSystem is hosted. Example:
|
||||
us-east4-b-r2. If not specified, the system will pick a zone based on
|
||||
availability.
|
||||
|
||||
--labels=[LABELS,...]
|
||||
The labels or tags associated with the DbSystem.
|
||||
|
||||
KEY
|
||||
Keys must start with a lowercase character and contain only hyphens
|
||||
(-), underscores (_), lowercase characters, and numbers.
|
||||
|
||||
VALUE
|
||||
Values must contain only hyphens (-), underscores (_), lowercase
|
||||
characters, and numbers.
|
||||
|
||||
Shorthand Example:
|
||||
|
||||
--labels=string=string
|
||||
|
||||
JSON Example:
|
||||
|
||||
--labels='{"string": "string"}'
|
||||
|
||||
File Example:
|
||||
|
||||
--labels=path_to_file.(yaml|json)
|
||||
|
||||
--location=LOCATION
|
||||
For resources [db_system, odb-network, odb-subnet], provides fallback
|
||||
value for resource location attribute. When the resource's full URI
|
||||
path is not provided, location will fallback to this flag value.
|
||||
|
||||
--odb-network=ODB_NETWORK
|
||||
For resources [odb-network, odb-subnet], provides fallback value for
|
||||
resource odb-network attribute. When the resource's full URI path is
|
||||
not provided, odb-network will fallback to this flag value.
|
||||
|
||||
--request-id=REQUEST_ID
|
||||
An optional request ID to identify requests. Specify a unique request
|
||||
ID so that if you must retry your request, the server will know to
|
||||
ignore the request if it has already been completed. The server will
|
||||
guarantee that for at least 60 minutes since the first request.
|
||||
|
||||
For example, consider a situation where you make an initial request and
|
||||
the request times out. If you make the request again with the same
|
||||
request ID, the server can check if original operation with the same
|
||||
request ID was received, and if so, will ignore the second request.
|
||||
This prevents clients from accidentally creating duplicate commitments.
|
||||
|
||||
The request ID must be a valid UUID with the exception that zero UUID
|
||||
is not supported (00000000-0000-0000-0000-000000000000).
|
||||
|
||||
The properties of a DbSystem.
|
||||
|
||||
--properties-compute-count=PROPERTIES_COMPUTE_COUNT
|
||||
The number of CPU cores to enable for the DbSystem.
|
||||
|
||||
This flag argument must be specified if any of the other arguments in
|
||||
this group are specified.
|
||||
|
||||
--properties-database-edition=PROPERTIES_DATABASE_EDITION
|
||||
The database edition of the DbSystem. PROPERTIES_DATABASE_EDITION
|
||||
must be one of:
|
||||
|
||||
enterprise-edition
|
||||
The database edition is Enterprise.
|
||||
enterprise-edition-high-performance
|
||||
The database edition is Enterprise Edition.
|
||||
standard-edition
|
||||
The database edition is Standard.
|
||||
|
||||
This flag argument must be specified if any of the other arguments in
|
||||
this group are specified.
|
||||
|
||||
--properties-initial-data-storage-size-gb=PROPERTIES_INITIAL_DATA_STORAGE_SIZE_GB
|
||||
The initial data storage size in GB.
|
||||
|
||||
This flag argument must be specified if any of the other arguments in
|
||||
this group are specified.
|
||||
|
||||
--properties-license-model=PROPERTIES_LICENSE_MODEL
|
||||
The license model of the DbSystem. PROPERTIES_LICENSE_MODEL must be
|
||||
one of:
|
||||
|
||||
bring-your-own-license
|
||||
The license model is bring your own license.
|
||||
license-included
|
||||
The license model is included.
|
||||
|
||||
This flag argument must be specified if any of the other arguments in
|
||||
this group are specified.
|
||||
|
||||
--properties-shape=PROPERTIES_SHAPE
|
||||
Shape of DB System.
|
||||
|
||||
This flag argument must be specified if any of the other arguments in
|
||||
this group are specified.
|
||||
|
||||
--properties-ssh-public-keys=[PROPERTIES_SSH_PUBLIC_KEYS,...]
|
||||
SSH public keys to be stored with the DbSystem.
|
||||
|
||||
This flag argument must be specified if any of the other arguments in
|
||||
this group are specified.
|
||||
|
||||
Details of the DbSystem Options.
|
||||
|
||||
--db-system-options-storage-management=DB_SYSTEM_OPTIONS_STORAGE_MANAGEMENT
|
||||
The storage option used in DB system.
|
||||
DB_SYSTEM_OPTIONS_STORAGE_MANAGEMENT must be one of:
|
||||
|
||||
asm
|
||||
Automatic storage management.
|
||||
lvm
|
||||
Logical Volume management.
|
||||
|
||||
--properties-compute-model=PROPERTIES_COMPUTE_MODEL
|
||||
The compute model of the DbSystem. PROPERTIES_COMPUTE_MODEL must be
|
||||
one of:
|
||||
|
||||
ecpu
|
||||
The compute model is virtual.
|
||||
ocpu
|
||||
The compute model is physical.
|
||||
|
||||
--properties-data-storage-size-gb=PROPERTIES_DATA_STORAGE_SIZE_GB
|
||||
The data storage size in GB that is currently available to DbSystems.
|
||||
|
||||
--properties-domain=PROPERTIES_DOMAIN
|
||||
The host domain name of the DbSystem.
|
||||
|
||||
--properties-hostname-prefix=PROPERTIES_HOSTNAME_PREFIX
|
||||
Prefix for DB System host names.
|
||||
|
||||
--properties-memory-size-gb=PROPERTIES_MEMORY_SIZE_GB
|
||||
The memory size in GB.
|
||||
|
||||
--properties-node-count=PROPERTIES_NODE_COUNT
|
||||
The number of nodes in the DbSystem.
|
||||
|
||||
--properties-private-ip=PROPERTIES_PRIVATE_IP
|
||||
The private IP address of the DbSystem.
|
||||
|
||||
--properties-reco-storage-size-gb=PROPERTIES_RECO_STORAGE_SIZE_GB
|
||||
The reco/redo storage size in GB.
|
||||
|
||||
Data collection options for DbSystem.
|
||||
|
||||
--data-collection-options-is-diagnostics-events-enabled
|
||||
Indicates whether to enable data collection for diagnostics.
|
||||
|
||||
--data-collection-options-is-incident-logs-enabled
|
||||
Indicates whether to enable incident logs and trace collection.
|
||||
|
||||
Details of the Database Home resource.
|
||||
|
||||
--db-home-version=DB_HOME_VERSION
|
||||
A valid Oracle Database version. For a list of supported versions,
|
||||
use the ListDbVersions operation.
|
||||
|
||||
This flag argument must be specified if any of the other arguments
|
||||
in this group are specified.
|
||||
|
||||
--db-home-display-name=DB_HOME_DISPLAY_NAME
|
||||
The display name for the Database Home. The name does not have to
|
||||
be unique within your project.
|
||||
|
||||
--db-home-is-unified-auditing-enabled
|
||||
Whether unified auditing is enabled for the Database Home.
|
||||
|
||||
Details of the Database resource.
|
||||
https://docs.oracle.com/en-us/iaas/api/#/en/database/20160918/Database/
|
||||
|
||||
This must be specified.
|
||||
|
||||
--database-admin-password=DATABASE_ADMIN_PASSWORD
|
||||
The password for the default ADMIN user.
|
||||
|
||||
This flag argument must be specified if any of the other
|
||||
arguments in this group are specified.
|
||||
|
||||
--database-character-set=DATABASE_CHARACTER_SET
|
||||
The character set for the database. The default is AL32UTF8.
|
||||
|
||||
--database-db-home-name=DATABASE_DB_HOME_NAME
|
||||
The name of the DbHome resource associated with the Database.
|
||||
|
||||
--database-db-name=DATABASE_DB_NAME
|
||||
The database name. The name must begin with an alphabetic
|
||||
character and can contain a maximum of eight alphanumeric
|
||||
characters. Special characters are not permitted.
|
||||
|
||||
--database-db-unique-name=DATABASE_DB_UNIQUE_NAME
|
||||
The DB_UNIQUE_NAME of the Oracle Database being backed up.
|
||||
|
||||
--database-id=DATABASE_ID
|
||||
The database ID of the Database.
|
||||
|
||||
--database-name=DATABASE_NAME
|
||||
Identifier. The name of the Database resource in the following
|
||||
format:
|
||||
projects/{project}/locations/{region}/databases/{database}
|
||||
|
||||
--database-ncharacter-set=DATABASE_NCHARACTER_SET
|
||||
The national character set for the database. The default is
|
||||
AL16UTF16.
|
||||
|
||||
--database-tde-wallet-password=DATABASE_TDE_WALLET_PASSWORD
|
||||
The TDE wallet password for the database.
|
||||
|
||||
The properties of a Database.
|
||||
|
||||
--properties-db-version=PROPERTIES_DB_VERSION
|
||||
The Oracle Database version.
|
||||
|
||||
This flag argument must be specified if any of the other
|
||||
arguments in this group are specified.
|
||||
|
||||
Backup Options for the Database.
|
||||
|
||||
--db-backup-config-auto-enabled
|
||||
If set to true, enables automatic backups on the database.
|
||||
|
||||
--db-backup-config-auto-full-day=DB_BACKUP_CONFIG_AUTO_FULL_DAY
|
||||
The day of the week on which the full backup should be
|
||||
performed on the database. If no value is provided, it will
|
||||
default to Sunday. DB_BACKUP_CONFIG_AUTO_FULL_DAY must be one
|
||||
of:
|
||||
|
||||
friday
|
||||
Friday
|
||||
monday
|
||||
Monday
|
||||
saturday
|
||||
Saturday
|
||||
sunday
|
||||
Sunday
|
||||
thursday
|
||||
Thursday
|
||||
tuesday
|
||||
Tuesday
|
||||
wednesday
|
||||
Wednesday
|
||||
|
||||
--db-backup-config-auto-full-window=DB_BACKUP_CONFIG_AUTO_FULL_WINDOW
|
||||
The window in which the full backup should be performed on
|
||||
the database. If no value is provided, the default is
|
||||
anytime. DB_BACKUP_CONFIG_AUTO_FULL_WINDOW must be one of:
|
||||
|
||||
slot-eight
|
||||
2:00 PM - 4:00 PM
|
||||
slot-eleven
|
||||
8:00 PM - 10:00 PM
|
||||
slot-five
|
||||
8:00 AM - 10:00 AM
|
||||
slot-four
|
||||
6:00 AM - 8:00 AM
|
||||
slot-nine
|
||||
4:00 PM - 6:00 PM
|
||||
slot-one
|
||||
12:00 AM - 2:00 AM
|
||||
slot-seven
|
||||
12:00 PM - 2:00 PM
|
||||
slot-six
|
||||
10:00 AM - 12:00 PM
|
||||
slot-ten
|
||||
6:00 PM - 8:00 PM
|
||||
slot-three
|
||||
4:00 AM - 6:00 AM
|
||||
slot-twelve
|
||||
10:00 PM - 12:00 AM
|
||||
slot-two
|
||||
2:00 AM - 4:00 AM
|
||||
|
||||
--db-backup-config-auto-incremental-window=DB_BACKUP_CONFIG_AUTO_INCREMENTAL_WINDOW
|
||||
The window in which the incremental backup should be
|
||||
performed on the database. If no value is provided, the
|
||||
default is anytime except the auto full backup day.
|
||||
DB_BACKUP_CONFIG_AUTO_INCREMENTAL_WINDOW must be one of:
|
||||
|
||||
slot-eight
|
||||
2:00 PM - 4:00 PM
|
||||
slot-eleven
|
||||
8:00 PM - 10:00 PM
|
||||
slot-five
|
||||
8:00 AM - 10:00 AM
|
||||
slot-four
|
||||
6:00 AM - 8:00 AM
|
||||
slot-nine
|
||||
4:00 PM - 6:00 PM
|
||||
slot-one
|
||||
12:00 AM - 2:00 AM
|
||||
slot-seven
|
||||
12:00 PM - 2:00 PM
|
||||
slot-six
|
||||
10:00 AM - 12:00 PM
|
||||
slot-ten
|
||||
6:00 PM - 8:00 PM
|
||||
slot-three
|
||||
4:00 AM - 6:00 AM
|
||||
slot-twelve
|
||||
10:00 PM - 12:00 AM
|
||||
slot-two
|
||||
2:00 AM - 4:00 AM
|
||||
|
||||
--db-backup-config-deletion-policy=DB_BACKUP_CONFIG_DELETION_POLICY
|
||||
This defines when the backups will be deleted after Database
|
||||
termination. DB_BACKUP_CONFIG_DELETION_POLICY must be one of:
|
||||
|
||||
delete-after-retention-period
|
||||
Keeps the backups as per the policy defined for database
|
||||
backups.
|
||||
delete-immediately
|
||||
Keeps the backup for predefined time i.e. 72 hours and
|
||||
then delete permanently.
|
||||
|
||||
--db-backup-config-destination-details=[type=TYPE]
|
||||
Details of the database backup destinations.
|
||||
|
||||
type
|
||||
The type of the database backup destination.
|
||||
|
||||
Shorthand Example:
|
||||
|
||||
--db-backup-config-destination-details=type=string --db-backup-config-destination-details=type=string
|
||||
|
||||
JSON Example:
|
||||
|
||||
--db-backup-config-destination-details='[{"type": "string"}]'
|
||||
|
||||
File Example:
|
||||
|
||||
--db-backup-config-destination-details=path_to_file.(yaml|json)
|
||||
|
||||
--db-backup-config-retention-period-days=DB_BACKUP_CONFIG_RETENTION_PERIOD_DAYS
|
||||
The number of days an automatic backup is retained before
|
||||
being automatically deleted. This value determines the
|
||||
earliest point in time to which a database can be restored.
|
||||
Min: 1, Max: 60.
|
||||
|
||||
Represents a time zone from the IANA Time Zone Database
|
||||
(https://www.iana.org/time-zones).
|
||||
|
||||
--time-zone-id=TIME_ZONE_ID
|
||||
IANA Time Zone Database time zone. For example "America/New_York".
|
||||
|
||||
--time-zone-version=TIME_ZONE_VERSION
|
||||
IANA Time Zone Database version number. For example "2019a".
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
||||
--trace-token, --user-output-enabled, --verbosity.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
API REFERENCE
|
||||
This command uses the oracledatabase/v1 API. The full documentation for
|
||||
this API can be found at: https://cloud.google.com/oracle/database/docs
|
||||
74
gcloud/oracle-database/db-systems/delete
Normal file
74
gcloud/oracle-database/db-systems/delete
Normal file
|
|
@ -0,0 +1,74 @@
|
|||
NAME
|
||||
gcloud oracle-database db-systems delete - delete a DbSystem
|
||||
|
||||
SYNOPSIS
|
||||
gcloud oracle-database db-systems delete (DB_SYSTEM : --location=LOCATION)
|
||||
[--async] [--request-id=REQUEST_ID] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
Delete a DbSystem.
|
||||
|
||||
EXAMPLES
|
||||
To delete a DbSystem with id my-db-system in the location us-east4, run:
|
||||
|
||||
$ gcloud oracle-database db-systems delete my-db-system \
|
||||
--location=us-east4
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
DbSystem resource - The name of the DbSystem in the following format:
|
||||
projects/{project}/locations/{location}/dbSystems/{db_system}. The
|
||||
arguments in this group can be used to specify the attributes of this
|
||||
resource. (NOTE) Some attributes are not given arguments in this group but
|
||||
can be set in other ways.
|
||||
|
||||
To set the project attribute:
|
||||
◆ provide the argument db_system on the command line with a fully
|
||||
specified name;
|
||||
◆ provide the argument --project on the command line;
|
||||
◆ set the property core/project.
|
||||
|
||||
This must be specified.
|
||||
|
||||
DB_SYSTEM
|
||||
ID of the dbSystem or fully qualified identifier for the dbSystem.
|
||||
|
||||
To set the db_system attribute:
|
||||
▸ provide the argument db_system on the command line.
|
||||
|
||||
This positional argument must be specified if any of the other
|
||||
arguments in this group are specified.
|
||||
|
||||
--location=LOCATION
|
||||
The location id of the dbSystem resource.
|
||||
|
||||
To set the location attribute:
|
||||
▸ provide the argument db_system on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --location on the command line.
|
||||
|
||||
FLAGS
|
||||
--async
|
||||
Return immediately, without waiting for the operation in progress to
|
||||
complete.
|
||||
|
||||
--request-id=REQUEST_ID
|
||||
An optional ID to identify the request. This value is used to identify
|
||||
duplicate requests. If you make a request with the same request ID and
|
||||
the original request is still in progress or completed, the server
|
||||
ignores the second request. This prevents clients from accidentally
|
||||
creating duplicate commitments.
|
||||
|
||||
The request ID must be a valid UUID with the exception that zero UUID
|
||||
is not supported (00000000-0000-0000-0000-000000000000).
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
||||
--trace-token, --user-output-enabled, --verbosity.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
API REFERENCE
|
||||
This command uses the oracledatabase/v1 API. The full documentation for
|
||||
this API can be found at: https://cloud.google.com/oracle/database/docs
|
||||
59
gcloud/oracle-database/db-systems/describe
Normal file
59
gcloud/oracle-database/db-systems/describe
Normal file
|
|
@ -0,0 +1,59 @@
|
|||
NAME
|
||||
gcloud oracle-database db-systems describe - get details of a DbSystem
|
||||
|
||||
SYNOPSIS
|
||||
gcloud oracle-database db-systems describe
|
||||
(DB_SYSTEM : --location=LOCATION) [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
Get details of a DbSystem.
|
||||
|
||||
EXAMPLES
|
||||
To get a DbSystem with id my-db-system in the location us-east4, run:
|
||||
|
||||
$ gcloud oracle-database db-systems describe my-db-system \
|
||||
--location=us-east4
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
DbSystem resource - The name of the DbSystem in the following format:
|
||||
projects/{project}/locations/{location}/dbSystems/{db_system}. The
|
||||
arguments in this group can be used to specify the attributes of this
|
||||
resource. (NOTE) Some attributes are not given arguments in this group but
|
||||
can be set in other ways.
|
||||
|
||||
To set the project attribute:
|
||||
◆ provide the argument db_system on the command line with a fully
|
||||
specified name;
|
||||
◆ provide the argument --project on the command line;
|
||||
◆ set the property core/project.
|
||||
|
||||
This must be specified.
|
||||
|
||||
DB_SYSTEM
|
||||
ID of the dbSystem or fully qualified identifier for the dbSystem.
|
||||
|
||||
To set the db_system attribute:
|
||||
▸ provide the argument db_system on the command line.
|
||||
|
||||
This positional argument must be specified if any of the other
|
||||
arguments in this group are specified.
|
||||
|
||||
--location=LOCATION
|
||||
The location id of the dbSystem resource.
|
||||
|
||||
To set the location attribute:
|
||||
▸ provide the argument db_system on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --location on the command line.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
||||
--trace-token, --user-output-enabled, --verbosity.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
API REFERENCE
|
||||
This command uses the oracledatabase/v1 API. The full documentation for
|
||||
this API can be found at: https://cloud.google.com/oracle/database/docs
|
||||
28
gcloud/oracle-database/db-systems/help
Normal file
28
gcloud/oracle-database/db-systems/help
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
NAME
|
||||
gcloud oracle-database db-systems - manage Db System resources
|
||||
|
||||
SYNOPSIS
|
||||
gcloud oracle-database db-systems COMMAND [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
Manage Db System resources.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --help.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
COMMANDS
|
||||
COMMAND is one of the following:
|
||||
|
||||
create
|
||||
Create a new DbSystem.
|
||||
|
||||
delete
|
||||
Delete a DbSystem.
|
||||
|
||||
describe
|
||||
Get details of a DbSystem.
|
||||
|
||||
list
|
||||
List all DbSystems.
|
||||
80
gcloud/oracle-database/db-systems/list
Normal file
80
gcloud/oracle-database/db-systems/list
Normal file
|
|
@ -0,0 +1,80 @@
|
|||
NAME
|
||||
gcloud oracle-database db-systems list - list all DbSystems
|
||||
|
||||
SYNOPSIS
|
||||
gcloud oracle-database db-systems list --location=LOCATION
|
||||
[--filter=EXPRESSION] [--limit=LIMIT] [--page-size=PAGE_SIZE]
|
||||
[--sort-by=[FIELD,...]] [--uri] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
List all DbSystems.
|
||||
|
||||
EXAMPLES
|
||||
To list all DbSystems in the location us-east4 for a given DbSystem with id
|
||||
my-db-system, run:
|
||||
|
||||
$ gcloud oracle-database db-systems list --location=us-east4
|
||||
|
||||
REQUIRED FLAGS
|
||||
Location resource - The parent value for DbSystems in the following
|
||||
format: projects/{project}/locations/{location}. This represents a Cloud
|
||||
resource. (NOTE) Some attributes are not given arguments in this group but
|
||||
can be set in other ways.
|
||||
|
||||
To set the project attribute:
|
||||
◆ provide the argument --location on the command line with a fully
|
||||
specified name;
|
||||
◆ provide the argument --project on the command line;
|
||||
◆ set the property core/project.
|
||||
|
||||
This must be specified.
|
||||
|
||||
--location=LOCATION
|
||||
ID of the location or fully qualified identifier for the location.
|
||||
|
||||
To set the location attribute:
|
||||
▸ provide the argument --location on the command line.
|
||||
|
||||
LIST COMMAND FLAGS
|
||||
--filter=EXPRESSION
|
||||
Apply a Boolean filter EXPRESSION to each resource item to be listed.
|
||||
If the expression evaluates True, then that item is listed. For more
|
||||
details and examples of filter expressions, run $ gcloud topic filters.
|
||||
This flag interacts with other flags that are applied in this order:
|
||||
--flatten, --sort-by, --filter, --limit.
|
||||
|
||||
--limit=LIMIT
|
||||
Maximum number of resources to list. The default is unlimited. This
|
||||
flag interacts with other flags that are applied in this order:
|
||||
--flatten, --sort-by, --filter, --limit.
|
||||
|
||||
--page-size=PAGE_SIZE
|
||||
Some services group resource list output into pages. This flag
|
||||
specifies the maximum number of resources per page. The default is
|
||||
determined by the service if it supports paging, otherwise it is
|
||||
unlimited (no paging). Paging may be applied before or after --filter
|
||||
and --limit depending on the service.
|
||||
|
||||
--sort-by=[FIELD,...]
|
||||
Comma-separated list of resource field key names to sort by. The
|
||||
default order is ascending. Prefix a field with ``~'' for descending
|
||||
order on that field. This flag interacts with other flags that are
|
||||
applied in this order: --flatten, --sort-by, --filter, --limit.
|
||||
|
||||
--uri
|
||||
Print a list of resource URIs instead of the default output, and change
|
||||
the command output to a list of URIs. If this flag is used with
|
||||
--format, the formatting is applied on this URI list. To display URIs
|
||||
alongside other keys instead, use the uri() transform.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
||||
--trace-token, --user-output-enabled, --verbosity.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
API REFERENCE
|
||||
This command uses the oracledatabase/v1 API. The full documentation for
|
||||
this API can be found at: https://cloud.google.com/oracle/database/docs
|
||||
19
gcloud/oracle-database/db-versions/help
Normal file
19
gcloud/oracle-database/db-versions/help
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
NAME
|
||||
gcloud oracle-database db-versions - manage Db Version resources
|
||||
|
||||
SYNOPSIS
|
||||
gcloud oracle-database db-versions COMMAND [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
Manage Db Version resources.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --help.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
COMMANDS
|
||||
COMMAND is one of the following:
|
||||
|
||||
list
|
||||
List all DbVersions.
|
||||
82
gcloud/oracle-database/db-versions/list
Normal file
82
gcloud/oracle-database/db-versions/list
Normal file
|
|
@ -0,0 +1,82 @@
|
|||
NAME
|
||||
gcloud oracle-database db-versions list - list all DbVersions
|
||||
|
||||
SYNOPSIS
|
||||
gcloud oracle-database db-versions list --location=LOCATION
|
||||
[--filter=EXPRESSION] [--limit=LIMIT] [--page-size=PAGE_SIZE]
|
||||
[--sort-by=[FIELD,...]] [--uri] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
List all DbVersions.
|
||||
|
||||
EXAMPLES
|
||||
To list all DbVersions for a given DbSystemShape and StorageManagement with
|
||||
db-system-shape and storage-management in the location us-east4, run:
|
||||
|
||||
$ gcloud oracle-database db-versions list --location=us-east4 \
|
||||
--filter="db-system-shape=db-system-shape AND \
|
||||
storage-management=storage-management"
|
||||
|
||||
REQUIRED FLAGS
|
||||
Location resource - The parent value for the DbVersion resource with the
|
||||
format: projects/{project}/locations/{location} This represents a Cloud
|
||||
resource. (NOTE) Some attributes are not given arguments in this group but
|
||||
can be set in other ways.
|
||||
|
||||
To set the project attribute:
|
||||
◆ provide the argument --location on the command line with a fully
|
||||
specified name;
|
||||
◆ provide the argument --project on the command line;
|
||||
◆ set the property core/project.
|
||||
|
||||
This must be specified.
|
||||
|
||||
--location=LOCATION
|
||||
ID of the location or fully qualified identifier for the location.
|
||||
|
||||
To set the location attribute:
|
||||
▸ provide the argument --location on the command line.
|
||||
|
||||
LIST COMMAND FLAGS
|
||||
--filter=EXPRESSION
|
||||
Apply a Boolean filter EXPRESSION to each resource item to be listed.
|
||||
If the expression evaluates True, then that item is listed. For more
|
||||
details and examples of filter expressions, run $ gcloud topic filters.
|
||||
This flag interacts with other flags that are applied in this order:
|
||||
--flatten, --sort-by, --filter, --limit.
|
||||
|
||||
--limit=LIMIT
|
||||
Maximum number of resources to list. The default is unlimited. This
|
||||
flag interacts with other flags that are applied in this order:
|
||||
--flatten, --sort-by, --filter, --limit.
|
||||
|
||||
--page-size=PAGE_SIZE
|
||||
Some services group resource list output into pages. This flag
|
||||
specifies the maximum number of resources per page. The default is
|
||||
determined by the service if it supports paging, otherwise it is
|
||||
unlimited (no paging). Paging may be applied before or after --filter
|
||||
and --limit depending on the service.
|
||||
|
||||
--sort-by=[FIELD,...]
|
||||
Comma-separated list of resource field key names to sort by. The
|
||||
default order is ascending. Prefix a field with ``~'' for descending
|
||||
order on that field. This flag interacts with other flags that are
|
||||
applied in this order: --flatten, --sort-by, --filter, --limit.
|
||||
|
||||
--uri
|
||||
Print a list of resource URIs instead of the default output, and change
|
||||
the command output to a list of URIs. If this flag is used with
|
||||
--format, the formatting is applied on this URI list. To display URIs
|
||||
alongside other keys instead, use the uri() transform.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
||||
--trace-token, --user-output-enabled, --verbosity.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
API REFERENCE
|
||||
This command uses the oracledatabase/v1 API. The full documentation for
|
||||
this API can be found at: https://cloud.google.com/oracle/database/docs
|
||||
|
|
@ -33,9 +33,24 @@ GROUPS
|
|||
cloud-vm-clusters
|
||||
Manage Cloud Vm Cluster resources.
|
||||
|
||||
database-character-sets
|
||||
Manage Database Character Set resources.
|
||||
|
||||
databases
|
||||
Manage Database resources.
|
||||
|
||||
db-system-initial-storage-sizes
|
||||
Manage Db System Initial Storage Size resources.
|
||||
|
||||
db-system-shapes
|
||||
Manage Db System Shape resources.
|
||||
|
||||
db-systems
|
||||
Manage Db System resources.
|
||||
|
||||
db-versions
|
||||
Manage Db Version resources.
|
||||
|
||||
entitlements
|
||||
Manage Entitlement resources.
|
||||
|
||||
|
|
@ -47,3 +62,6 @@ GROUPS
|
|||
|
||||
operations
|
||||
Manage Operation resources.
|
||||
|
||||
pluggable-databases
|
||||
Manage Pluggable Database resources.
|
||||
|
|
|
|||
|
|
@ -4,8 +4,8 @@ NAME
|
|||
SYNOPSIS
|
||||
gcloud oracle-database odb-networks create
|
||||
(ODB_NETWORK : --location=LOCATION) --network=NETWORK [--async]
|
||||
[--labels=[LABELS,...]] [--request-id=REQUEST_ID]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
[--gcp-oracle-zone=GCP_ORACLE_ZONE] [--labels=[LABELS,...]]
|
||||
[--request-id=REQUEST_ID] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
Create a new OdbNetwork.
|
||||
|
|
@ -78,6 +78,10 @@ OPTIONAL FLAGS
|
|||
Return immediately, without waiting for the operation in progress to
|
||||
complete.
|
||||
|
||||
--gcp-oracle-zone=GCP_ORACLE_ZONE
|
||||
The GCP Oracle zone where OdbNetwork is hosted. Example: us-east4-b-r2.
|
||||
If not specified, the system will pick a zone based on availability.
|
||||
|
||||
--labels=[LABELS,...]
|
||||
Labels or tags associated with the resource.
|
||||
|
||||
|
|
|
|||
63
gcloud/oracle-database/pluggable-databases/describe
Normal file
63
gcloud/oracle-database/pluggable-databases/describe
Normal file
|
|
@ -0,0 +1,63 @@
|
|||
NAME
|
||||
gcloud oracle-database pluggable-databases describe - get details of a
|
||||
PluggableDatabase
|
||||
|
||||
SYNOPSIS
|
||||
gcloud oracle-database pluggable-databases describe
|
||||
(PLUGGABLE_DATABASE : --location=LOCATION) [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
Get details of a PluggableDatabase.
|
||||
|
||||
EXAMPLES
|
||||
To get a PluggableDatabase with id my-pluggable-database in the location
|
||||
us-east4 for a given DbSystem with id my-db-system, run:
|
||||
|
||||
$ gcloud oracle-database pluggable-databases describe \
|
||||
my-pluggable-database --location=us-east4
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
PluggableDatabase resource - The name of the PluggableDatabase resource in
|
||||
the following format:
|
||||
projects/{project}/locations/{region}/pluggableDatabases/{pluggable_database}
|
||||
The arguments in this group can be used to specify the attributes of this
|
||||
resource. (NOTE) Some attributes are not given arguments in this group but
|
||||
can be set in other ways.
|
||||
|
||||
To set the project attribute:
|
||||
◆ provide the argument pluggable_database on the command line with a
|
||||
fully specified name;
|
||||
◆ provide the argument --project on the command line;
|
||||
◆ set the property core/project.
|
||||
|
||||
This must be specified.
|
||||
|
||||
PLUGGABLE_DATABASE
|
||||
ID of the pluggableDatabase or fully qualified identifier for the
|
||||
pluggableDatabase.
|
||||
|
||||
To set the pluggable_database attribute:
|
||||
▸ provide the argument pluggable_database on the command line.
|
||||
|
||||
This positional argument must be specified if any of the other
|
||||
arguments in this group are specified.
|
||||
|
||||
--location=LOCATION
|
||||
The location id of the pluggableDatabase resource.
|
||||
|
||||
To set the location attribute:
|
||||
▸ provide the argument pluggable_database on the command line with
|
||||
a fully specified name;
|
||||
▸ provide the argument --location on the command line.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
||||
--trace-token, --user-output-enabled, --verbosity.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
API REFERENCE
|
||||
This command uses the oracledatabase/v1 API. The full documentation for
|
||||
this API can be found at: https://cloud.google.com/oracle/database/docs
|
||||
23
gcloud/oracle-database/pluggable-databases/help
Normal file
23
gcloud/oracle-database/pluggable-databases/help
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
NAME
|
||||
gcloud oracle-database pluggable-databases - manage Pluggable Database
|
||||
resources
|
||||
|
||||
SYNOPSIS
|
||||
gcloud oracle-database pluggable-databases COMMAND [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
Manage Pluggable Database resources.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --help.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
COMMANDS
|
||||
COMMAND is one of the following:
|
||||
|
||||
describe
|
||||
Get details of a PluggableDatabase.
|
||||
|
||||
list
|
||||
List pluggableDatabases.
|
||||
79
gcloud/oracle-database/pluggable-databases/list
Normal file
79
gcloud/oracle-database/pluggable-databases/list
Normal file
|
|
@ -0,0 +1,79 @@
|
|||
NAME
|
||||
gcloud oracle-database pluggable-databases list - list pluggableDatabases
|
||||
|
||||
SYNOPSIS
|
||||
gcloud oracle-database pluggable-databases list --location=LOCATION
|
||||
[--filter=EXPRESSION] [--limit=LIMIT] [--page-size=PAGE_SIZE]
|
||||
[--sort-by=[FIELD,...]] [--uri] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
List pluggableDatabases
|
||||
|
||||
EXAMPLES
|
||||
To list all pluggableDatabases, run:
|
||||
|
||||
$ gcloud oracle-database pluggable-databases list
|
||||
|
||||
REQUIRED FLAGS
|
||||
Location resource - The parent, which owns this collection of
|
||||
PluggableDatabases. Format: projects/{project}/locations/{location} This
|
||||
represents a Cloud resource. (NOTE) Some attributes are not given
|
||||
arguments in this group but can be set in other ways.
|
||||
|
||||
To set the project attribute:
|
||||
◆ provide the argument --location on the command line with a fully
|
||||
specified name;
|
||||
◆ provide the argument --project on the command line;
|
||||
◆ set the property core/project.
|
||||
|
||||
This must be specified.
|
||||
|
||||
--location=LOCATION
|
||||
ID of the location or fully qualified identifier for the location.
|
||||
|
||||
To set the location attribute:
|
||||
▸ provide the argument --location on the command line.
|
||||
|
||||
LIST COMMAND FLAGS
|
||||
--filter=EXPRESSION
|
||||
Apply a Boolean filter EXPRESSION to each resource item to be listed.
|
||||
If the expression evaluates True, then that item is listed. For more
|
||||
details and examples of filter expressions, run $ gcloud topic filters.
|
||||
This flag interacts with other flags that are applied in this order:
|
||||
--flatten, --sort-by, --filter, --limit.
|
||||
|
||||
--limit=LIMIT
|
||||
Maximum number of resources to list. The default is unlimited. This
|
||||
flag interacts with other flags that are applied in this order:
|
||||
--flatten, --sort-by, --filter, --limit.
|
||||
|
||||
--page-size=PAGE_SIZE
|
||||
Some services group resource list output into pages. This flag
|
||||
specifies the maximum number of resources per page. The default is
|
||||
determined by the service if it supports paging, otherwise it is
|
||||
unlimited (no paging). Paging may be applied before or after --filter
|
||||
and --limit depending on the service.
|
||||
|
||||
--sort-by=[FIELD,...]
|
||||
Comma-separated list of resource field key names to sort by. The
|
||||
default order is ascending. Prefix a field with ``~'' for descending
|
||||
order on that field. This flag interacts with other flags that are
|
||||
applied in this order: --flatten, --sort-by, --filter, --limit.
|
||||
|
||||
--uri
|
||||
Print a list of resource URIs instead of the default output, and change
|
||||
the command output to a list of URIs. If this flag is used with
|
||||
--format, the formatting is applied on this URI list. To display URIs
|
||||
alongside other keys instead, use the uri() transform.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
||||
--trace-token, --user-output-enabled, --verbosity.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
API REFERENCE
|
||||
This command uses the oracledatabase/v1 API. The full documentation for
|
||||
this API can be found at: https://cloud.google.com/oracle/database/docs
|
||||
Loading…
Add table
Add a link
Reference in a new issue