File: //snap/google-cloud-cli/394/lib/surface/tasks/queues/create.py
# -*- coding: utf-8 -*- #
# Copyright 2019 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.
"""`gcloud tasks queues create command."""
from __future__ import absolute_import
from __future__ import division
from __future__ import unicode_literals
from googlecloudsdk.api_lib.tasks import GetApiAdapter
from googlecloudsdk.calliope import base
from googlecloudsdk.command_lib.tasks import constants
from googlecloudsdk.command_lib.tasks import flags
from googlecloudsdk.command_lib.tasks import parsers
from googlecloudsdk.core import log
@base.ReleaseTracks(base.ReleaseTrack.GA)
class Create(base.CreateCommand):
"""Create a Cloud Tasks queue.
The flags available to this command represent the fields of a queue that are
mutable.
"""
detailed_help = {
'DESCRIPTION': """\
{description}
""",
'EXAMPLES': """\
To create a Cloud Tasks queue:
$ {command} my-queue
--max-attempts=10 --max-retry-duration=5s
--max-doublings=4 --min-backoff=1s
--max-backoff=10s
--max-dispatches-per-second=100
--max-concurrent-dispatches=10
--routing-override=service:abc
""",
}
@staticmethod
def Args(parser):
flags.AddQueueResourceArg(parser, 'to create')
flags.AddLocationFlag(parser)
flags.AddCreatePushQueueFlags(parser)
def Run(self, args):
if self.ReleaseTrack() == base.ReleaseTrack.BETA:
queue_type = args.type
else:
queue_type = constants.PUSH_QUEUE
api = GetApiAdapter(self.ReleaseTrack())
queues_client = api.queues
queue_ref = parsers.ParseQueue(args.queue, args.location)
location_ref = parsers.ExtractLocationRefFromQueueRef(queue_ref)
queue_config = parsers.ParseCreateOrUpdateQueueArgs(
args, queue_type, api.messages,
release_track=self.ReleaseTrack())
if self.ReleaseTrack() == base.ReleaseTrack.ALPHA:
create_response = queues_client.Create(
location_ref,
queue_ref,
retry_config=queue_config.retryConfig,
rate_limits=queue_config.rateLimits,
app_engine_http_target=queue_config.appEngineHttpTarget,
http_target=queue_config.httpTarget)
elif self.ReleaseTrack() == base.ReleaseTrack.BETA:
create_response = queues_client.Create(
location_ref,
queue_ref,
retry_config=queue_config.retryConfig,
rate_limits=queue_config.rateLimits,
app_engine_http_queue=queue_config.appEngineHttpQueue,
stackdriver_logging_config=queue_config.stackdriverLoggingConfig,
http_target=queue_config.httpTarget,
queue_type=queue_config.type,
)
else:
create_response = queues_client.Create(
location_ref,
queue_ref,
retry_config=queue_config.retryConfig,
rate_limits=queue_config.rateLimits,
app_engine_routing_override=queue_config.appEngineRoutingOverride,
http_target=queue_config.httpTarget,
stackdriver_logging_config=queue_config.stackdriverLoggingConfig)
log.CreatedResource(
parsers.GetConsolePromptString(queue_ref.RelativeName()), 'queue')
return create_response
@base.ReleaseTracks(base.ReleaseTrack.BETA)
class BetaCreate(Create):
"""Create a Cloud Tasks queue.
The flags available to this command represent the fields of a queue that are
mutable.
"""
detailed_help = {
'DESCRIPTION': """\
{description}
""",
'EXAMPLES': """\
To create a Cloud Tasks queue:
$ {command} my-queue
--max-attempts=10 --max-retry-duration=5s
--max-doublings=4 --min-backoff=1s
--max-backoff=10s
--max-dispatches-per-second=100
--max-concurrent-dispatches=10
--routing-override=service:abc
""",
}
@staticmethod
def Args(parser):
flags.AddQueueResourceArg(parser, 'to create')
flags.AddLocationFlag(parser)
flags.AddCreatePushQueueFlags(parser, release_track=base.ReleaseTrack.BETA)
@base.ReleaseTracks(base.ReleaseTrack.ALPHA)
class AlphaCreate(Create):
"""Create a Cloud Tasks queue.
The flags available to this command represent the fields of a queue that are
mutable.
"""
detailed_help = {
'DESCRIPTION': """\
{description}
""",
'EXAMPLES': """\
To create a Cloud Tasks queue:
$ {command} my-queue
--max-attempts=10 --max-retry-duration=5s
--max-doublings=4 --min-backoff=1s
--max-backoff=10s
--max-tasks-dispatched-per-second=100
--max-concurrent-tasks=10
--routing-override=service:abc
""",
}
@staticmethod
def Args(parser):
flags.AddQueueResourceArg(parser, 'to create')
flags.AddLocationFlag(parser)
flags.AddCreatePushQueueFlags(parser, release_track=base.ReleaseTrack.ALPHA)