Class IamCheckerClient (1.2.0)

public abstract class IamCheckerClient

IamChecker client wrapper, for convenient use.

Inheritance

Object > IamCheckerClient

Derived Types

Namespace

Google.Cloud.PolicyTroubleshooter.V1

Assembly

Google.Cloud.PolicyTroubleshooter.V1.dll

Remarks

IAM Policy Troubleshooter service.

This service helps you troubleshoot access issues for Google Cloud resources.

Properties

DefaultEndpoint

public static string DefaultEndpoint { get; }

The default endpoint for the IamChecker service, which is a host of "policytroubleshooter.googleapis.com" and a port of 443.

Property Value
Type Description
String

DefaultScopes

public static IReadOnlyList<string> DefaultScopes { get; }

The default IamChecker scopes.

Property Value
Type Description
IReadOnlyList<String>
Remarks

The default IamChecker scopes are:

GrpcClient

public virtual IamChecker.IamCheckerClient GrpcClient { get; }

The underlying gRPC IamChecker client

Property Value
Type Description
IamChecker.IamCheckerClient

Methods

Create()

public static IamCheckerClient Create()

Synchronously creates a IamCheckerClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use IamCheckerClientBuilder.

Returns
Type Description
IamCheckerClient

The created IamCheckerClient.

CreateAsync(CancellationToken)

public static Task<IamCheckerClient> CreateAsync(CancellationToken cancellationToken = default(CancellationToken))

Asynchronously creates a IamCheckerClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use IamCheckerClientBuilder.

Parameter
Name Description
cancellationToken CancellationToken

The CancellationToken to use while creating the client.

Returns
Type Description
Task<IamCheckerClient>

The task representing the created IamCheckerClient.

ShutdownDefaultChannelsAsync()

public static Task ShutdownDefaultChannelsAsync()

Shuts down any channels automatically created by Create() and CreateAsync(CancellationToken). Channels which weren't automatically created are not affected.

Returns
Type Description
Task

A task representing the asynchronous shutdown operation.

Remarks

After calling this method, further calls to Create() and CreateAsync(CancellationToken) will create new channels, which could in turn be shut down by another call to this method.

TroubleshootIamPolicy(TroubleshootIamPolicyRequest, CallSettings)

public virtual TroubleshootIamPolicyResponse TroubleshootIamPolicy(TroubleshootIamPolicyRequest request, CallSettings callSettings = null)

Checks whether a member has a specific permission for a specific resource, and explains why the member does or does not have that permission.

Parameters
Name Description
request TroubleshootIamPolicyRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TroubleshootIamPolicyResponse

The RPC response.

Example
// Create client
IamCheckerClient iamCheckerClient = IamCheckerClient.Create();
// Initialize request argument(s)
TroubleshootIamPolicyRequest request = new TroubleshootIamPolicyRequest
{
    AccessTuple = new AccessTuple(),
};
// Make the request
TroubleshootIamPolicyResponse response = iamCheckerClient.TroubleshootIamPolicy(request);

TroubleshootIamPolicyAsync(TroubleshootIamPolicyRequest, CallSettings)

public virtual Task<TroubleshootIamPolicyResponse> TroubleshootIamPolicyAsync(TroubleshootIamPolicyRequest request, CallSettings callSettings = null)

Checks whether a member has a specific permission for a specific resource, and explains why the member does or does not have that permission.

Parameters
Name Description
request TroubleshootIamPolicyRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Task<TroubleshootIamPolicyResponse>

A Task containing the RPC response.

Example
// Create client
IamCheckerClient iamCheckerClient = await IamCheckerClient.CreateAsync();
// Initialize request argument(s)
TroubleshootIamPolicyRequest request = new TroubleshootIamPolicyRequest
{
    AccessTuple = new AccessTuple(),
};
// Make the request
TroubleshootIamPolicyResponse response = await iamCheckerClient.TroubleshootIamPolicyAsync(request);

TroubleshootIamPolicyAsync(TroubleshootIamPolicyRequest, CancellationToken)

public virtual Task<TroubleshootIamPolicyResponse> TroubleshootIamPolicyAsync(TroubleshootIamPolicyRequest request, CancellationToken cancellationToken)

Checks whether a member has a specific permission for a specific resource, and explains why the member does or does not have that permission.

Parameters
Name Description
request TroubleshootIamPolicyRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
Task<TroubleshootIamPolicyResponse>

A Task containing the RPC response.

Example
// Create client
IamCheckerClient iamCheckerClient = await IamCheckerClient.CreateAsync();
// Initialize request argument(s)
TroubleshootIamPolicyRequest request = new TroubleshootIamPolicyRequest
{
    AccessTuple = new AccessTuple(),
};
// Make the request
TroubleshootIamPolicyResponse response = await iamCheckerClient.TroubleshootIamPolicyAsync(request);