File: //snap/google-cloud-cli/current/lib/surface/scc/remediation_intents/describe.py
# -*- coding: utf-8 -*- #
# Copyright 2025 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 describing a Cloud Security Command Center RemediationIntent resource."""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals
from googlecloudsdk.api_lib.scc.remediation_intents import sps_api
from googlecloudsdk.calliope import base
from googlecloudsdk.command_lib.scc.remediation_intents import flags
@base.ReleaseTracks(base.ReleaseTrack.ALPHA)
@base.UniverseCompatible
class Describe(base.DescribeCommand):
"""Describes a remediation intent resource."""
detailed_help = {
"DESCRIPTION": """
Describe a Cloud Security Command Center (SCC)
RemediationIntent resource.
The resource is returned as the response of the command.""",
"EXAMPLES": """
Sample usage:
Describe a remediation intent resource of id 1234 under organization 12345 and location global:
$ {{command}} scc remediation-intents describe organizations/12345/locations/global/remediationIntents/1234
""",
}
@staticmethod
def Args(parser):
flags.AddRemediationIntentResourceArg(parser)
def Run(self, args):
"""The main function which is called when the user runs this command.
Args:
args: An argparse namespace. All the arguments that were provided to this
command invocation.
Returns:
RemediationIntent resource.
"""
client = sps_api.GetClientInstance(base.ReleaseTrack.ALPHA)
messages = sps_api.GetMessagesModule(base.ReleaseTrack.ALPHA)
# parse the remediation intent resource argument
ri_ref = args.CONCEPTS.remediationintent.Parse()
ri_name = ri_ref.RelativeName()
# create the request object
request = messages.SecuritypostureOrganizationsLocationsRemediationIntentsGetRequest(
name=ri_name,
)
# call the get remediation intent API
response = client.organizations_locations_remediationIntents.Get(
request=request
)
return response