52 lines
1.9 KiB
Python
52 lines
1.9 KiB
Python
# -*- 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.
|
|
|
|
"""The command group for the DeploymentManager CLI."""
|
|
|
|
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import unicode_literals
|
|
|
|
from googlecloudsdk.calliope import base
|
|
|
|
|
|
@base.ReleaseTracks(base.ReleaseTrack.GA,
|
|
base.ReleaseTrack.BETA,
|
|
base.ReleaseTrack.ALPHA)
|
|
class DmV2(base.Group):
|
|
"""Manage deployments of cloud resources.
|
|
|
|
The {command} command group lets you manage the deployment of Google Cloud
|
|
Platform resources using Google Cloud Deployment Manager.
|
|
|
|
Google Cloud Deployment Manager allows you to specify all the resources needed
|
|
for your application in a declarative format using YAML. You can also use
|
|
Python or Jinja2 templates to parameterize the configuration and allow reuse
|
|
of common deployment paradigms such as a load balanced, auto-scaled instance
|
|
group.
|
|
|
|
More information on Cloud Deployment Manager can be found here:
|
|
https://cloud.google.com/deployment-manager and detailed documentation can be
|
|
found here: https://cloud.google.com/deployment-manager/docs/
|
|
"""
|
|
|
|
category = base.MANAGEMENT_TOOLS_CATEGORY
|
|
|
|
def Filter(self, context, args):
|
|
# TODO(b/190530874): Determine if command group works with project number
|
|
base.RequireProjectID(args)
|
|
del context, args
|
|
base.DisableUserProjectQuota()
|