feat: Add new gcloud commands, API clients, and third-party libraries across various services.

This commit is contained in:
2026-01-01 20:26:35 +01:00
parent 5e23cbece0
commit a19e592eb7
25221 changed files with 8324611 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
# -*- coding: utf-8 -*- #
# Copyright 2021 Google LLC. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""The command group for the IDS CLI."""
from __future__ import absolute_import
from __future__ import division
from __future__ import unicode_literals
from googlecloudsdk.calliope import base
@base.ReleaseTracks(base.ReleaseTrack.ALPHA, base.ReleaseTrack.BETA,
base.ReleaseTrack.GA)
class IDS(base.Group):
"""Manage Cloud IDS.
More information on Cloud IDS Endpoints can be found at
https://cloud.google.com/cloud-ids
"""
category = base.NETWORKING_CATEGORY

View File

@@ -0,0 +1,36 @@
# -*- coding: utf-8 -*- #
# Copyright 2021 Google LLC. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""The command group for the projects CLI."""
from __future__ import absolute_import
from __future__ import division
from __future__ import unicode_literals
from googlecloudsdk.calliope import base
@base.ReleaseTracks(base.ReleaseTrack.ALPHA, base.ReleaseTrack.BETA,
base.ReleaseTrack.GA)
class Endpoints(base.Group):
"""Create and manage Cloud IDS Endpoints.
The {command} group lets you create and manage Cloud IDS Endpoints,
including creating, deleting and describing their properties.
More information on Cloud IDS Endpoints can be found at
https://cloud.google.com/cloud-ids
"""
category = base.NETWORKING_CATEGORY

View File

@@ -0,0 +1,114 @@
# -*- coding: utf-8 -*- #
# Copyright 2021 Google LLC. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Create endpoint command."""
from __future__ import absolute_import
from __future__ import division
from __future__ import unicode_literals
import datetime
from googlecloudsdk.api_lib.ids import ids_api
from googlecloudsdk.calliope import base
from googlecloudsdk.command_lib.ids import flags
from googlecloudsdk.command_lib.util.args import labels_util
DETAILED_HELP = {
'DESCRIPTION':
"""
Create an endpoint for the specified VPC network. Successful creation
of an endpoint results in an endpoint in READY state. Check the
progress of endpoint creation by using `gcloud alpha ids endpoints
list`.
For more examples, refer to the EXAMPLES section below.
""",
'EXAMPLES':
"""
To create an endpoint called `my-endpoint` for VPC network
`my-net`, in zone `us-central1-a`, alerting on LOW threats or
higher, run:
$ {command} my-endpoint --network=my-net --zone=us-central1-a --project=my-project --severity=LOW
To create an endpoint called `my-endpoint` for VPC network
`my-net`, in zone `us-central1-a`, alerting on LOW threats or
higher, excluding threat IDs 1000 and 2000, run:
$ {command} my-endpoint --network=my-net --zone=us-central1-a --project=my-project --severity=LOW --threat-exceptions=1000,2000
""",
}
@base.ReleaseTracks(base.ReleaseTrack.ALPHA, base.ReleaseTrack.BETA,
base.ReleaseTrack.GA)
class Create(base.CreateCommand):
"""Create a Cloud IDS endpoint."""
@staticmethod
def Args(parser):
flags.AddEndpointResource(parser)
flags.AddNetworkArg(parser)
flags.AddDescriptionArg(parser)
flags.AddSeverityArg(parser)
flags.AddThreatExceptionsArg(parser, required=False)
flags.AddTrafficLogsArg(parser)
flags.AddMaxWait(parser, '60m') # default to 60 minutes wait.
base.ASYNC_FLAG.AddToParser(parser)
base.ASYNC_FLAG.SetDefault(parser, True)
labels_util.AddCreateLabelsFlags(parser)
def Run(self, args):
client = ids_api.Client(self.ReleaseTrack())
endpoint = args.CONCEPTS.endpoint.Parse()
network = args.network
severity = args.severity
threat_exceptions = args.threat_exceptions
if not threat_exceptions:
threat_exceptions = []
description = args.description
enable_traffic_logs = args.enable_traffic_logs
labels = labels_util.ParseCreateArgs(args,
client.messages.Endpoint.LabelsValue)
is_async = args.async_
max_wait = datetime.timedelta(seconds=args.max_wait)
operation = client.CreateEndpoint(
name=endpoint.Name(),
parent=endpoint.Parent().RelativeName(),
network=network,
severity=severity,
threat_exceptions=threat_exceptions,
description=description,
enable_traffic_logs=enable_traffic_logs,
labels=labels)
# Return the in-progress operation if async is requested.
if is_async:
# Delete operations have no format by default,
# but here we want the operation metadata to be printed.
if not args.IsSpecified('format'):
args.format = 'default'
return operation
return client.WaitForOperation(
operation_ref=client.GetOperationRef(operation),
message='waiting for endpoint [{}] to be created'.format(
endpoint.RelativeName()),
max_wait=max_wait)
Create.detailed_help = DETAILED_HELP

View File

@@ -0,0 +1,82 @@
# -*- coding: utf-8 -*- #
# Copyright 2021 Google LLC. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""'ids endpoints delete' command."""
from __future__ import absolute_import
from __future__ import division
from __future__ import unicode_literals
import datetime
from googlecloudsdk.calliope import base
from googlecloudsdk.api_lib.ids import ids_api
from googlecloudsdk.command_lib.ids import flags
from googlecloudsdk.core import resources
DETAILED_HELP = {
'DESCRIPTION':
"""
Delete a Cloud IDS endpoint.
""",
'EXAMPLES':
"""
To delete an endpoint called `my-ep` in project `my-project`
and zone `us-central1-a`, run:
$ {command} my-ep --project=my-project --zone=us-central1-a
OR
$ {command} projects/myproject/locations/us-central1-a/endpoints/my-ep
""",
}
@base.ReleaseTracks(base.ReleaseTrack.ALPHA, base.ReleaseTrack.BETA,
base.ReleaseTrack.GA)
class Delete(base.DeleteCommand):
"""Delete a Cloud IDS endpoint."""
@staticmethod
def Args(parser):
flags.AddEndpointResource(parser)
base.ASYNC_FLAG.AddToParser(parser)
base.ASYNC_FLAG.SetDefault(parser, True)
flags.AddMaxWait(parser, '60m') # default to 60 minutes wait.
def Run(self, args):
endpoint = args.CONCEPTS.endpoint.Parse()
is_async = args.async_
max_wait = datetime.timedelta(seconds=args.max_wait)
client = ids_api.Client(self.ReleaseTrack())
operation = client.DeleteEndpoint(endpoint.RelativeName())
# Return the in-progress operation if async is requested.
if is_async:
# Delete operations have no format by default,
# but here we want the operation metadata to be printed.
if not args.IsSpecified('format'):
args.format = 'default'
return operation
return client.WaitForOperation(
operation_ref=client.GetOperationRef(operation),
message='waiting for endpoint [{}] to be deleted'.format(
endpoint.RelativeName()),
has_result=False,
max_wait=max_wait)
Delete.detailed_help = DETAILED_HELP

View File

@@ -0,0 +1,60 @@
# -*- coding: utf-8 -*- #
# Copyright 2021 Google LLC. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""'ids endpoints describe' command."""
from __future__ import absolute_import
from __future__ import division
from __future__ import unicode_literals
from googlecloudsdk.calliope import base
from googlecloudsdk.api_lib.ids import ids_api
from googlecloudsdk.command_lib.ids import flags
DETAILED_HELP = {
'DESCRIPTION':
"""
Describe a Cloud IDS endpoint.
""",
'EXAMPLES':
"""
To get a description of a endpoint called `my-ep` in
project `my-project` and zone `us-central1-a`, run:
$ {command} my-ep --project=my-project --zone=us-central1-a
OR
$ {command} projects/myproject/locations/us-central1-a/endpoints/my-ep
""",
}
@base.ReleaseTracks(base.ReleaseTrack.ALPHA, base.ReleaseTrack.BETA,
base.ReleaseTrack.GA)
class Describe(base.DescribeCommand):
"""Describe a Cloud IDS endpoint."""
@staticmethod
def Args(parser):
flags.AddEndpointResource(parser)
def Run(self, args):
endpoint = args.CONCEPTS.endpoint.Parse()
client = ids_api.Client(self.ReleaseTrack())
return client.DescribeEndpoint(endpoint.RelativeName())
Describe.detailed_help = DETAILED_HELP

View File

@@ -0,0 +1,71 @@
# -*- coding: utf-8 -*- #
# Copyright 2021 Google LLC. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""'ids endpoints list' command."""
from __future__ import absolute_import
from __future__ import division
from __future__ import unicode_literals
from googlecloudsdk.calliope import base
from googlecloudsdk.core import properties
from googlecloudsdk.api_lib.ids import ids_api
from googlecloudsdk.command_lib.ids import flags
from googlecloudsdk.command_lib.util.args import common_args
DETAILED_HELP = {
'DESCRIPTION':
"""
List Cloud IDS endpoints in a project.
""",
'EXAMPLES':
"""
$ {command} --project=my-project
The project is automatically read from the core/project property if it is defined.
""",
}
_FORMAT = """\
table(
name.scope("endpoints"):label=ID,
name.scope("locations").segment(0):label=LOCATION,
severity,
state,
network,
trafficLogs
)
"""
@base.ReleaseTracks(base.ReleaseTrack.ALPHA, base.ReleaseTrack.BETA,
base.ReleaseTrack.GA)
class List(base.ListCommand):
"""List Cloud IDS endpoints."""
@classmethod
def Args(cls, parser):
parser.display_info.AddFormat(_FORMAT)
parser.display_info.AddUriFunc(flags.MakeGetUriFunc(cls.ReleaseTrack()))
common_args.ProjectArgument().AddToParser(parser)
def Run(self, args):
project = args.project or properties.VALUES.core.project.GetOrFail()
parent = 'projects/{}/locations/-'.format(project)
client = ids_api.Client(self.ReleaseTrack())
return client.ListEndpoints(parent, args.limit, args.page_size)
List.detailed_help = DETAILED_HELP

View File

@@ -0,0 +1,100 @@
# -*- coding: utf-8 -*- #
# Copyright 2022 Google LLC. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Update endpoint command."""
from __future__ import absolute_import
from __future__ import division
from __future__ import unicode_literals
import datetime
from googlecloudsdk.api_lib.ids import ids_api
from googlecloudsdk.calliope import base
from googlecloudsdk.command_lib.ids import flags
from googlecloudsdk.core import exceptions as core_exceptions
DETAILED_HELP = {
'DESCRIPTION':
"""
Update the endpoint for the specified VPC network. Check the
progress of endpoint update by using `gcloud alpha ids endpoints
list`.
For more examples, refer to the EXAMPLES section below.
""",
'EXAMPLES':
"""
To update an endpoint called `my-endpoint`, excluding threat IDs
1000 and 2000, run:
$ {command} my-endpoint --threat-exceptions=1000,2000
To update an endpoint called `my-endpoint`, clearing the excluded
threat list, run:
$ {command} my-endpoint --threat-exceptions=
""",
}
@base.ReleaseTracks(base.ReleaseTrack.ALPHA, base.ReleaseTrack.BETA,
base.ReleaseTrack.GA)
class UpdateAlpha(base.UpdateCommand):
"""Update an existing Cloud IDS endpoint."""
@staticmethod
def Args(parser):
flags.AddEndpointResource(parser)
flags.AddThreatExceptionsArg(parser, required=False)
flags.AddMaxWait(parser, '60m') # default to 60 minutes wait.
base.ASYNC_FLAG.AddToParser(parser)
base.ASYNC_FLAG.SetDefault(parser, True)
def Run(self, args):
client = ids_api.Client(self.ReleaseTrack())
endpoint = args.CONCEPTS.endpoint.Parse()
update_mask = []
if args.IsSpecified('threat_exceptions'):
threat_exceptions = args.threat_exceptions
update_mask.append('threat_exceptions')
else:
raise core_exceptions.Error('Missing --threat-exceptions.')
is_async = args.async_
max_wait = datetime.timedelta(seconds=args.max_wait)
operation = client.UpdateEndpoint(
endpoint.RelativeName(),
threat_exceptions=threat_exceptions,
update_mask=update_mask)
# Return the in-progress operation if async is requested.
if is_async:
# Delete operations have no format by default,
# but here we want the operation metadata to be printed.
if not args.IsSpecified('format'):
args.format = 'default'
return operation
return client.WaitForOperation(
operation_ref=client.GetOperationRef(operation),
message='waiting for endpoint [{}] to be updated'.format(
endpoint.RelativeName()),
max_wait=max_wait)
UpdateAlpha.detailed_help = DETAILED_HELP

View File

@@ -0,0 +1,36 @@
# -*- coding: utf-8 -*- #
# Copyright 2022 Google LLC. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""The command group for the Cloud IDS operations CLI."""
from __future__ import absolute_import
from __future__ import division
from __future__ import unicode_literals
from googlecloudsdk.calliope import base
@base.ReleaseTracks(base.ReleaseTrack.ALPHA)
class Operations(base.Group):
"""Manage Cloud IDS Operations.
The {command} group lets you manage Cloud IDS Operations,
including canceling, waiting for complition, listing ,and describing their
properties.
More information on Cloud IDS Operations can be found at
https://cloud.google.com/intrusion-detection-system
"""
category = base.NETWORKING_CATEGORY

View File

@@ -0,0 +1,58 @@
# -*- coding: utf-8 -*- #
# Copyright 2022 Google LLC. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""'ids operations cancel' command."""
from __future__ import absolute_import
from __future__ import division
from __future__ import unicode_literals
from googlecloudsdk.api_lib.ids import ids_api
from googlecloudsdk.calliope import base
from googlecloudsdk.command_lib.ids import flags
DETAILED_HELP = {
'DESCRIPTION':
"""
Cancel a Cloud IDS operation.
""",
'EXAMPLES':
"""
To cancel an operation called `my-operation` in
project `my-project` and zone `us-central1-a`, run:
$ {command} my-operation --project=my-project --zone=us-central1-a
OR
$ {command} projects/myproject/locations/us-central1-a/endpoints/my-operation
""",
}
@base.ReleaseTracks(base.ReleaseTrack.ALPHA)
class Wait(base.Command):
"""Cancel a Cloud IDS operation."""
@staticmethod
def Args(parser):
flags.AddOperationResource(parser)
def Run(self, args):
operation = args.CONCEPTS.operation.Parse()
client = ids_api.Client(self.ReleaseTrack())
return client.CancelOperations(operation.RelativeName())
Wait.detailed_help = DETAILED_HELP

View File

@@ -0,0 +1,58 @@
# -*- coding: utf-8 -*- #
# Copyright 2022 Google LLC. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""'ids operations describe' command."""
from __future__ import absolute_import
from __future__ import division
from __future__ import unicode_literals
from googlecloudsdk.api_lib.ids import ids_api
from googlecloudsdk.calliope import base
from googlecloudsdk.command_lib.ids import flags
DETAILED_HELP = {
'DESCRIPTION':
"""
Describe a Cloud IDS operation.
""",
'EXAMPLES':
"""
To get a description of an operation called `my-operation` in
project `my-project` and zone `us-central1-a`, run:
$ {command} my-operation --project=my-project --zone=us-central1-a
OR
$ {command} projects/myproject/locations/us-central1-a/operations/my-operation
""",
}
@base.ReleaseTracks(base.ReleaseTrack.ALPHA)
class Describe(base.DescribeCommand):
"""Describe a Cloud IDS operation."""
@staticmethod
def Args(parser):
flags.AddOperationResource(parser)
def Run(self, args):
operation = args.CONCEPTS.operation.Parse()
client = ids_api.Client(self.ReleaseTrack())
return client.DescribeOperation(operation.RelativeName())
Describe.detailed_help = DETAILED_HELP

View File

@@ -0,0 +1,71 @@
# -*- coding: utf-8 -*- #
# Copyright 2022 Google LLC. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""'ids operations list' command."""
from __future__ import absolute_import
from __future__ import division
from __future__ import unicode_literals
from googlecloudsdk.api_lib.ids import ids_api
from googlecloudsdk.calliope import base
from googlecloudsdk.command_lib.ids import flags
from googlecloudsdk.command_lib.util.args import common_args
from googlecloudsdk.core import properties
DETAILED_HELP = {
'DESCRIPTION':
"""
List Cloud IDS operation in a project.
""",
'EXAMPLES':
"""
$ {command} --project=my-project
The project is automatically read from the core/project property if it is defined.
""",
}
_FORMAT = """\
table(
name.scope("operations"):label=ID,
name.scope("locations").segment(0):label=LOCATION,
metadata.target,
metadata.verb,
done
)
"""
@base.ReleaseTracks(base.ReleaseTrack.ALPHA)
class List(base.ListCommand):
"""List Cloud IDS operations."""
@classmethod
def Args(cls, parser):
parser.display_info.AddFormat(_FORMAT)
parser.display_info.AddUriFunc(flags.MakeGetUriFunc(cls.ReleaseTrack()))
common_args.ProjectArgument().AddToParser(parser)
flags.AddZoneArg(
parser, required=False, help_text='The zone of an operation')
def Run(self, args):
project = args.project or properties.VALUES.core.project.GetOrFail()
zone = args.zone or '-'
name = 'projects/{}/locations/{}'.format(project, zone)
client = ids_api.Client(self.ReleaseTrack())
return client.ListOperations(name, args.limit, args.page_size)
List.detailed_help = DETAILED_HELP

View File

@@ -0,0 +1,66 @@
# -*- coding: utf-8 -*- #
# Copyright 2022 Google LLC. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""'ids operations wait' command."""
from __future__ import absolute_import
from __future__ import division
from __future__ import unicode_literals
import datetime
from googlecloudsdk.api_lib.ids import ids_api
from googlecloudsdk.calliope import base
from googlecloudsdk.command_lib.ids import flags
DETAILED_HELP = {
'DESCRIPTION':
"""
Wait for a Cloud IDS operation to complete.
""",
'EXAMPLES':
"""
To get a description of an operation called `my-operation` in
project `my-project` and zone `us-central1-a`, run:
$ {command} my-operation --project=my-project --zone=us-central1-a
OR
$ {command} projects/myproject/locations/us-central1-a/operations/my-operation
""",
}
@base.ReleaseTracks(base.ReleaseTrack.ALPHA)
class Wait(base.Command):
"""Wait for a Cloud IDS operation to complete."""
@staticmethod
def Args(parser):
flags.AddOperationResource(parser)
flags.AddMaxWait(parser, '60m') # default to 60 minutes wait.
def Run(self, args):
operation = args.CONCEPTS.operation.Parse()
max_wait = datetime.timedelta(seconds=args.max_wait)
client = ids_api.Client(self.ReleaseTrack())
return client.WaitForOperation(
operation_ref=operation,
message='Waiting for operation to complete',
has_result=False,
max_wait=max_wait)
Wait.detailed_help = DETAILED_HELP