File: //snap/google-cloud-cli/current/lib/surface/spanner/instances/create.py
# -*- coding: utf-8 -*- #
# Copyright 2016 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.
"""Command for spanner instances create."""
import textwrap
from googlecloudsdk.api_lib.spanner import instance_operations
from googlecloudsdk.api_lib.spanner import instances
from googlecloudsdk.calliope import base
from googlecloudsdk.command_lib.spanner import flags
from googlecloudsdk.command_lib.spanner import resource_args
@base.DefaultUniverseOnly
@base.ReleaseTracks(base.ReleaseTrack.GA)
class Create(base.CreateCommand):
"""Create a Cloud Spanner instance."""
detailed_help = {
'EXAMPLES':
textwrap.dedent("""\
To create a Cloud Spanner instance, run:
$ {command} my-instance-id --config=regional-us-east1 --description=my-instance-display-name --nodes=3
"""),
}
@staticmethod
def Args(parser):
"""Args is called by calliope to gather arguments for this command.
Please add arguments in alphabetical order except for no- or a clear-
pair for that argument which can follow the argument itself.
Args:
parser: An argparse parser that you can use to add arguments that go
on the command line after this command. Positional arguments are
allowed.
"""
flags.Instance().AddToParser(parser)
flags.Config().AddToParser(parser)
flags.Description().AddToParser(parser)
flags.Edition(
choices={
'STANDARD': 'Standard edition',
'ENTERPRISE': 'Enterprise edition',
'ENTERPRISE_PLUS': 'Enterprise Plus edition',
'EDITION_UNSPECIFIED': (
"Spanner's legacy pricing model. For more information, see the"
' [Spanner editions overview]'
'(https://cloud.google.com/spanner/docs/editions-overview)'
),
},
).AddToParser(parser)
flags.DefaultBackupScheduleType(
choices={
'DEFAULT_BACKUP_SCHEDULE_TYPE_UNSPECIFIED': 'Not specified.',
'NONE': (
'No default backup schedule is created automatically when a new'
' database is created in an instance.'
),
'AUTOMATIC': (
'A default backup schedule is created automatically when a new'
' database is created in an instance. You can edit or delete'
" the default backup schedule once it's created. The default"
' backup schedule creates a full backup every 24 hours. These'
' full backups are retained for 7 days.'
),
},
).AddToParser(parser)
resource_args.AddExpireBehaviorArg(parser)
resource_args.AddInstanceTypeArg(parser)
flags.AddCapacityArgsForInstance(
require_all_autoscaling_args=True,
parser=parser,
add_asymmetric_option_flag=True,
autoscaling_cpu_target_group=True,
add_asymmetric_total_cpu_target_flag=True,
add_asymmetric_disable_autoscaling_flags=True,
)
base.ASYNC_FLAG.AddToParser(parser)
parser.display_info.AddCacheUpdater(flags.InstanceCompleter)
flags.AddTags(parser)
def Run(self, args):
"""This is what gets called when the user runs this command.
Args:
args: an argparse namespace. All the arguments that were provided to this
command invocation.
Returns:
Some value that we want to have printed later.
"""
instance_type = resource_args.GetInstanceType(args)
expire_behavior = resource_args.GetExpireBehavior(args)
op = instances.Create(
instance=args.instance,
config=args.config,
description=args.description,
nodes=args.nodes,
processing_units=args.processing_units,
autoscaling_min_nodes=args.autoscaling_min_nodes,
autoscaling_max_nodes=args.autoscaling_max_nodes,
autoscaling_min_processing_units=args.autoscaling_min_processing_units,
autoscaling_max_processing_units=args.autoscaling_max_processing_units,
autoscaling_high_priority_cpu_target=args.autoscaling_high_priority_cpu_target,
autoscaling_total_cpu_target=args.autoscaling_total_cpu_target,
autoscaling_storage_target=args.autoscaling_storage_target,
asymmetric_autoscaling_options=args.asymmetric_autoscaling_option,
instance_type=instance_type,
expire_behavior=expire_behavior,
edition=args.edition,
default_backup_schedule_type=args.default_backup_schedule_type,
tags=args.tags,
)
if args.async_:
return op
instance_operations.Await(op, 'Creating instance')
@base.ReleaseTracks(base.ReleaseTrack.BETA)
class BetaCreate(base.CreateCommand):
"""Create a Cloud Spanner instance."""
detailed_help = {
'EXAMPLES':
textwrap.dedent("""\
To create a Cloud Spanner instance, run:
$ {command} my-instance-id --config=regional-us-east1 --description=my-instance-display-name --nodes=3
"""),
}
@staticmethod
def Args(parser):
"""Args is called by calliope to gather arguments for this command.
Please add arguments in alphabetical order except for no- or a clear-
pair for that argument which can follow the argument itself.
Args:
parser: An argparse parser that you can use to add arguments that go
on the command line after this command. Positional arguments are
allowed.
"""
flags.Instance().AddToParser(parser)
flags.Config().AddToParser(parser)
flags.Description().AddToParser(parser)
flags.Edition(
choices={
'STANDARD': 'Standard edition',
'ENTERPRISE': 'Enterprise edition',
'ENTERPRISE_PLUS': 'Enterprise Plus edition',
'EDITION_UNSPECIFIED': (
"Spanner's legacy pricing model. For more information, see the"
' [Spanner editions overview]'
'(https://cloud.google.com/spanner/docs/editions-overview)'
),
},
).AddToParser(parser)
flags.DefaultBackupScheduleType(
choices={
'DEFAULT_BACKUP_SCHEDULE_TYPE_UNSPECIFIED': 'Not specified.',
'NONE': (
'No default backup schedule is created automatically when a new'
' database is created in an instance.'
),
'AUTOMATIC': (
'A default backup schedule is created automatically when a new'
' database is created in an instance. You can edit or delete'
" the default backup schedule once it's created. The default"
' backup schedule creates a full backup every 24 hours. These'
' full backups are retained for 7 days.'
),
},
).AddToParser(parser)
resource_args.AddExpireBehaviorArg(parser)
resource_args.AddInstanceTypeArg(parser)
flags.AddCapacityArgsForInstance(
require_all_autoscaling_args=True,
parser=parser,
add_asymmetric_option_flag=True,
autoscaling_cpu_target_group=True,
add_asymmetric_total_cpu_target_flag=True,
add_asymmetric_disable_autoscaling_flags=True,
add_disable_downscaling_flag=True,
)
base.ASYNC_FLAG.AddToParser(parser)
parser.display_info.AddCacheUpdater(flags.InstanceCompleter)
flags.AddTags(parser)
def Run(self, args):
"""This is what gets called when the user runs this command.
Args:
args: an argparse namespace. All the arguments that were provided to this
command invocation.
Returns:
Some value that we want to have printed later.
"""
instance_type = resource_args.GetInstanceType(args)
expire_behavior = resource_args.GetExpireBehavior(args)
op = instances.Create(
instance=args.instance,
config=args.config,
description=args.description,
nodes=args.nodes,
processing_units=args.processing_units,
autoscaling_min_nodes=args.autoscaling_min_nodes,
autoscaling_max_nodes=args.autoscaling_max_nodes,
autoscaling_min_processing_units=args.autoscaling_min_processing_units,
autoscaling_max_processing_units=args.autoscaling_max_processing_units,
autoscaling_high_priority_cpu_target=args.autoscaling_high_priority_cpu_target,
autoscaling_total_cpu_target=args.autoscaling_total_cpu_target,
autoscaling_storage_target=args.autoscaling_storage_target,
asymmetric_autoscaling_options=args.asymmetric_autoscaling_option,
disable_downscaling=args.disable_downscaling,
instance_type=instance_type,
expire_behavior=expire_behavior,
edition=args.edition,
default_backup_schedule_type=args.default_backup_schedule_type,
tags=args.tags,
)
if args.async_:
return op
instance_operations.Await(op, 'Creating instance')
@base.DefaultUniverseOnly
@base.ReleaseTracks(base.ReleaseTrack.ALPHA)
class AlphaCreate(Create):
"""Create a Cloud Spanner instance with ALPHA features."""
__doc__ = Create.__doc__
@staticmethod
def Args(parser):
"""See base class."""
flags.Instance().AddToParser(parser)
flags.Config().AddToParser(parser)
flags.Description().AddToParser(parser)
flags.SsdCache().AddToParser(parser)
flags.Edition(
choices={
'STANDARD': 'Standard edition',
'ENTERPRISE': 'Enterprise edition',
'ENTERPRISE_PLUS': 'Enterprise Plus edition',
'EDITION_UNSPECIFIED': (
"Spanner's legacy pricing model. For more information, see the"
' [Spanner editions overview]'
'(https://cloud.google.com/spanner/docs/editions-overview)'
),
},
).AddToParser(parser)
flags.DefaultBackupScheduleType(
choices={
'DEFAULT_BACKUP_SCHEDULE_TYPE_UNSPECIFIED': 'Not specified.',
'NONE': (
'No default backup schedule is created automatically when a new'
' database is created in an instance.'
),
'AUTOMATIC': (
'A default backup schedule is created automatically when a new'
' database is created in an instance. You can edit or delete'
" the default backup schedule once it's created. The default"
' backup schedule creates a full backup every 24 hours. These'
' full backups are retained for 7 days.'
),
},
).AddToParser(parser)
resource_args.AddExpireBehaviorArg(parser)
resource_args.AddInstanceTypeArg(parser)
resource_args.AddDefaultStorageTypeArg(parser)
flags.AddCapacityArgsForInstance(
require_all_autoscaling_args=True,
parser=parser,
add_asymmetric_option_flag=True,
asymmetric_options_group=False,
autoscaling_cpu_target_group=True,
add_asymmetric_total_cpu_target_flag=True,
add_asymmetric_disable_autoscaling_flags=True,
add_disable_downscaling_flag=True,
)
base.ASYNC_FLAG.AddToParser(parser)
parser.display_info.AddCacheUpdater(flags.InstanceCompleter)
flags.AddTags(parser)
def Run(self, args):
"""This is what gets called when the user runs this command.
Args:
args: an argparse namespace. All the arguments that were provided to this
command invocation.
Returns:
Some value that we want to have printed later.
"""
instance_type = resource_args.GetInstanceType(args)
expire_behavior = resource_args.GetExpireBehavior(args)
default_storage_type = resource_args.GetDefaultStorageTypeArg(args)
op = instances.Create(
instance=args.instance,
config=args.config,
description=args.description,
nodes=args.nodes,
processing_units=args.processing_units,
autoscaling_min_nodes=args.autoscaling_min_nodes,
autoscaling_max_nodes=args.autoscaling_max_nodes,
autoscaling_min_processing_units=args.autoscaling_min_processing_units,
autoscaling_max_processing_units=args.autoscaling_max_processing_units,
autoscaling_high_priority_cpu_target=args.autoscaling_high_priority_cpu_target,
autoscaling_total_cpu_target=args.autoscaling_total_cpu_target,
autoscaling_storage_target=args.autoscaling_storage_target,
asymmetric_autoscaling_options=args.asymmetric_autoscaling_option,
disable_downscaling=args.disable_downscaling,
instance_type=instance_type,
expire_behavior=expire_behavior,
default_storage_type=default_storage_type,
ssd_cache=args.ssd_cache,
edition=args.edition,
default_backup_schedule_type=args.default_backup_schedule_type,
tags=args.tags,
)
if args.async_:
return op
instance_operations.Await(op, 'Creating instance')