66 lines
2.2 KiB
Python
66 lines
2.2 KiB
Python
# -*- coding: utf-8 -*- #
|
|
# Copyright 2015 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.
|
|
"""Get IAM operation policy command."""
|
|
|
|
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import unicode_literals
|
|
|
|
from googlecloudsdk.api_lib.dataproc import dataproc as dp
|
|
from googlecloudsdk.api_lib.dataproc import iam_helpers
|
|
from googlecloudsdk.calliope import base
|
|
from googlecloudsdk.command_lib.dataproc import flags
|
|
|
|
|
|
@base.UniverseCompatible
|
|
@base.ReleaseTracks(
|
|
base.ReleaseTrack.ALPHA, base.ReleaseTrack.BETA, base.ReleaseTrack.GA
|
|
)
|
|
class GetIamPolicy(base.ListCommand):
|
|
"""Get IAM policy for an operation.
|
|
|
|
Gets the IAM policy for an operation, given an operation ID.
|
|
|
|
## EXAMPLES
|
|
|
|
The following command prints the IAM policy for an operation with the ID
|
|
`example-operation`:
|
|
|
|
$ {command} example-operation
|
|
"""
|
|
|
|
@classmethod
|
|
def Args(cls, parser):
|
|
dataproc = dp.Dataproc(cls.ReleaseTrack())
|
|
flags.AddOperationResourceArg(parser, 'retrieve the policy for',
|
|
dataproc.api_version)
|
|
base.URI_FLAG.RemoveFromParser(parser)
|
|
|
|
def Run(self, args):
|
|
dataproc = dp.Dataproc(self.ReleaseTrack())
|
|
msgs = dataproc.messages
|
|
|
|
operation_ref = args.CONCEPTS.operation.Parse()
|
|
request = msgs.DataprocProjectsRegionsOperationsGetIamPolicyRequest(
|
|
resource=operation_ref.RelativeName(),
|
|
getIamPolicyRequest=msgs.GetIamPolicyRequest(
|
|
options=msgs.GetPolicyOptions(
|
|
requestedPolicyVersion=iam_helpers.MAX_LIBRARY_IAM_SUPPORTED_VERSION
|
|
)
|
|
),
|
|
)
|
|
|
|
return dataproc.client.projects_regions_operations.GetIamPolicy(request)
|