107 lines
3.1 KiB
Python
107 lines
3.1 KiB
Python
# -*- coding: utf-8 -*- #
|
|
# Copyright 2020 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.
|
|
"""A library for Security Command Center(SCC) settings commands arguments."""
|
|
|
|
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import unicode_literals
|
|
|
|
from googlecloudsdk.calliope import base
|
|
|
|
|
|
def AddOrganizationFlag(parser, help_text):
|
|
parser.add_argument(
|
|
'--organization', metavar='ORGANIZATION_ID', help=help_text)
|
|
|
|
|
|
def AddFolderFlag(parser, help_text):
|
|
parser.add_argument('--folder', metavar='FOLDER_ID', help=help_text)
|
|
|
|
|
|
def AddProjectFlag(parser, help_text):
|
|
parser.add_argument('--project', metavar='PROJECT_ID', help=help_text)
|
|
|
|
|
|
def ExtractRequiredFlags(parser):
|
|
parent_group = parser.add_mutually_exclusive_group()
|
|
AddOrganizationFlag(parent_group, 'Organization ID')
|
|
AddFolderFlag(parent_group, 'Folder ID')
|
|
AddProjectFlag(parent_group, 'Project ID')
|
|
|
|
|
|
def ExtractFolderAndProjectRequiredFlags(parser):
|
|
parent_group = parser.add_mutually_exclusive_group()
|
|
AddFolderFlag(parent_group, 'Folder ID')
|
|
AddProjectFlag(parent_group, 'Project ID')
|
|
|
|
|
|
def AddServiceArgument(parser):
|
|
base.ChoiceArgument(
|
|
'--service',
|
|
required=True,
|
|
metavar='SERVICE_NAME',
|
|
choices=[
|
|
'container-threat-detection',
|
|
'event-threat-detection',
|
|
'security-health-analytics',
|
|
'virtual-machine-threat-detection',
|
|
'web-security-scanner',
|
|
],
|
|
default='none',
|
|
help_str='Service name in Security Command Center').AddToParser(parser)
|
|
|
|
|
|
def AddModuleArgument(parser):
|
|
parser.add_argument(
|
|
'--module',
|
|
required=True,
|
|
metavar='MODULE_NAME',
|
|
help='Module name in Security Command Center')
|
|
|
|
|
|
def AddConfigArgument(parser):
|
|
parser.add_argument(
|
|
'--config',
|
|
metavar='CONFIG_VALUE',
|
|
help='Module config in Security Command Center')
|
|
|
|
|
|
def AddClearConfigArgument(parser):
|
|
parser.add_argument(
|
|
'--clear-config',
|
|
action='store_true',
|
|
help='Clear module config in Security Command Center')
|
|
|
|
|
|
def ExtractModuleConfigFlags(parser):
|
|
parent_group = parser.add_group(
|
|
mutex=True,
|
|
help='Config value group in Security Command Center.')
|
|
AddConfigArgument(parent_group)
|
|
AddClearConfigArgument(parent_group)
|
|
|
|
|
|
def AddModuleEnablementArgument(parser):
|
|
base.ChoiceArgument(
|
|
'--enablement-state',
|
|
required=True,
|
|
metavar='ENABLEMENT_STATE',
|
|
choices=[
|
|
'enabled',
|
|
'disabled',
|
|
],
|
|
help_str='Module enablement state in Security Command Center'
|
|
).AddToParser(parser)
|