Class IAM.IAMBase (1.0.0)

[BindServiceMethod(typeof(IAM), "BindService")]
public abstract class IAMBase

Base class for server-side implementations of IAM

Inheritance

Object > IAM.IAMBase

Namespace

Google.Cloud.Iam.Admin.V1

Assembly

Google.Cloud.Iam.Admin.V1.dll

Methods

CreateRole(CreateRoleRequest, ServerCallContext)

public virtual Task<Role> CreateRole(CreateRoleRequest request, ServerCallContext context)

Creates a new custom [Role][google.iam.admin.v1.Role].

Parameters
NameDescription
requestCreateRoleRequest

The request received from the client.

contextServerCallContext

The context of the server-side call handler being invoked.

Returns
TypeDescription
Task<Role>

The response to send back to the client (wrapped by a task).

CreateServiceAccount(CreateServiceAccountRequest, ServerCallContext)

public virtual Task<ServiceAccount> CreateServiceAccount(CreateServiceAccountRequest request, ServerCallContext context)

Creates a [ServiceAccount][google.iam.admin.v1.ServiceAccount].

Parameters
NameDescription
requestCreateServiceAccountRequest

The request received from the client.

contextServerCallContext

The context of the server-side call handler being invoked.

Returns
TypeDescription
Task<ServiceAccount>

The response to send back to the client (wrapped by a task).

CreateServiceAccountKey(CreateServiceAccountKeyRequest, ServerCallContext)

public virtual Task<ServiceAccountKey> CreateServiceAccountKey(CreateServiceAccountKeyRequest request, ServerCallContext context)

Creates a [ServiceAccountKey][google.iam.admin.v1.ServiceAccountKey].

Parameters
NameDescription
requestCreateServiceAccountKeyRequest

The request received from the client.

contextServerCallContext

The context of the server-side call handler being invoked.

Returns
TypeDescription
Task<ServiceAccountKey>

The response to send back to the client (wrapped by a task).

DeleteRole(DeleteRoleRequest, ServerCallContext)

public virtual Task<Role> DeleteRole(DeleteRoleRequest request, ServerCallContext context)

Deletes a custom [Role][google.iam.admin.v1.Role].

When you delete a custom role, the following changes occur immediately:

  • You cannot bind a member to the custom role in an IAM [Policy][google.iam.v1.Policy].
  • Existing bindings to the custom role are not changed, but they have no effect.
  • By default, the response from [ListRoles][google.iam.admin.v1.IAM.ListRoles] does not include the custom role.

You have 7 days to undelete the custom role. After 7 days, the following changes occur:

  • The custom role is permanently deleted and cannot be recovered.
  • If an IAM policy contains a binding to the custom role, the binding is permanently removed.
Parameters
NameDescription
requestDeleteRoleRequest

The request received from the client.

contextServerCallContext

The context of the server-side call handler being invoked.

Returns
TypeDescription
Task<Role>

The response to send back to the client (wrapped by a task).

DeleteServiceAccount(DeleteServiceAccountRequest, ServerCallContext)

public virtual Task<Empty> DeleteServiceAccount(DeleteServiceAccountRequest request, ServerCallContext context)

Deletes a [ServiceAccount][google.iam.admin.v1.ServiceAccount].

Warning: After you delete a service account, you might not be able to undelete it. If you know that you need to re-enable the service account in the future, use [DisableServiceAccount][google.iam.admin.v1.IAM.DisableServiceAccount] instead.

If you delete a service account, IAM permanently removes the service account 30 days later. Google Cloud cannot recover the service account after it is permanently removed, even if you file a support request.

To help avoid unplanned outages, we recommend that you disable the service account before you delete it. Use [DisableServiceAccount][google.iam.admin.v1.IAM.DisableServiceAccount] to disable the service account, then wait at least 24 hours and watch for unintended consequences. If there are no unintended consequences, you can delete the service account.

Parameters
NameDescription
requestDeleteServiceAccountRequest

The request received from the client.

contextServerCallContext

The context of the server-side call handler being invoked.

Returns
TypeDescription
Task<Empty>

The response to send back to the client (wrapped by a task).

DeleteServiceAccountKey(DeleteServiceAccountKeyRequest, ServerCallContext)

public virtual Task<Empty> DeleteServiceAccountKey(DeleteServiceAccountKeyRequest request, ServerCallContext context)

Deletes a [ServiceAccountKey][google.iam.admin.v1.ServiceAccountKey]. Deleting a service account key does not revoke short-lived credentials that have been issued based on the service account key.

Parameters
NameDescription
requestDeleteServiceAccountKeyRequest

The request received from the client.

contextServerCallContext

The context of the server-side call handler being invoked.

Returns
TypeDescription
Task<Empty>

The response to send back to the client (wrapped by a task).

DisableServiceAccount(DisableServiceAccountRequest, ServerCallContext)

public virtual Task<Empty> DisableServiceAccount(DisableServiceAccountRequest request, ServerCallContext context)

Disables a [ServiceAccount][google.iam.admin.v1.ServiceAccount] immediately.

If an application uses the service account to authenticate, that application can no longer call Google APIs or access Google Cloud resources. Existing access tokens for the service account are rejected, and requests for new access tokens will fail.

To re-enable the service account, use [EnableServiceAccount][google.iam.admin.v1.IAM.EnableServiceAccount]. After you re-enable the service account, its existing access tokens will be accepted, and you can request new access tokens.

To help avoid unplanned outages, we recommend that you disable the service account before you delete it. Use this method to disable the service account, then wait at least 24 hours and watch for unintended consequences. If there are no unintended consequences, you can delete the service account with [DeleteServiceAccount][google.iam.admin.v1.IAM.DeleteServiceAccount].

Parameters
NameDescription
requestDisableServiceAccountRequest

The request received from the client.

contextServerCallContext

The context of the server-side call handler being invoked.

Returns
TypeDescription
Task<Empty>

The response to send back to the client (wrapped by a task).

EnableServiceAccount(EnableServiceAccountRequest, ServerCallContext)

public virtual Task<Empty> EnableServiceAccount(EnableServiceAccountRequest request, ServerCallContext context)

Enables a [ServiceAccount][google.iam.admin.v1.ServiceAccount] that was disabled by [DisableServiceAccount][google.iam.admin.v1.IAM.DisableServiceAccount].

If the service account is already enabled, then this method has no effect.

If the service account was disabled by other means—for example, if Google disabled the service account because it was compromised—you cannot use this method to enable the service account.

Parameters
NameDescription
requestEnableServiceAccountRequest

The request received from the client.

contextServerCallContext

The context of the server-side call handler being invoked.

Returns
TypeDescription
Task<Empty>

The response to send back to the client (wrapped by a task).

GetIamPolicy(GetIamPolicyRequest, ServerCallContext)

public virtual Task<Policy> GetIamPolicy(GetIamPolicyRequest request, ServerCallContext context)

Gets the IAM policy that is attached to a [ServiceAccount][google.iam.admin.v1.ServiceAccount]. This IAM policy specifies which members have access to the service account.

This method does not tell you whether the service account has been granted any roles on other resources. To check whether a service account has role grants on a resource, use the getIamPolicy method for that resource. For example, to view the role grants for a project, call the Resource Manager API's projects.getIamPolicy method.

Parameters
NameDescription
requestGetIamPolicyRequest

The request received from the client.

contextServerCallContext

The context of the server-side call handler being invoked.

Returns
TypeDescription
Task<Policy>

The response to send back to the client (wrapped by a task).

GetRole(GetRoleRequest, ServerCallContext)

public virtual Task<Role> GetRole(GetRoleRequest request, ServerCallContext context)

Gets the definition of a [Role][google.iam.admin.v1.Role].

Parameters
NameDescription
requestGetRoleRequest

The request received from the client.

contextServerCallContext

The context of the server-side call handler being invoked.

Returns
TypeDescription
Task<Role>

The response to send back to the client (wrapped by a task).

GetServiceAccount(GetServiceAccountRequest, ServerCallContext)

public virtual Task<ServiceAccount> GetServiceAccount(GetServiceAccountRequest request, ServerCallContext context)

Gets a [ServiceAccount][google.iam.admin.v1.ServiceAccount].

Parameters
NameDescription
requestGetServiceAccountRequest

The request received from the client.

contextServerCallContext

The context of the server-side call handler being invoked.

Returns
TypeDescription
Task<ServiceAccount>

The response to send back to the client (wrapped by a task).

GetServiceAccountKey(GetServiceAccountKeyRequest, ServerCallContext)

public virtual Task<ServiceAccountKey> GetServiceAccountKey(GetServiceAccountKeyRequest request, ServerCallContext context)

Gets a [ServiceAccountKey][google.iam.admin.v1.ServiceAccountKey].

Parameters
NameDescription
requestGetServiceAccountKeyRequest

The request received from the client.

contextServerCallContext

The context of the server-side call handler being invoked.

Returns
TypeDescription
Task<ServiceAccountKey>

The response to send back to the client (wrapped by a task).

LintPolicy(LintPolicyRequest, ServerCallContext)

public virtual Task<LintPolicyResponse> LintPolicy(LintPolicyRequest request, ServerCallContext context)

Lints, or validates, an IAM policy. Currently checks the [google.iam.v1.Binding.condition][google.iam.v1.Binding.condition] field, which contains a condition expression for a role binding.

Successful calls to this method always return an HTTP 200 OK status code, even if the linter detects an issue in the IAM policy.

Parameters
NameDescription
requestLintPolicyRequest

The request received from the client.

contextServerCallContext

The context of the server-side call handler being invoked.

Returns
TypeDescription
Task<LintPolicyResponse>

The response to send back to the client (wrapped by a task).

ListRoles(ListRolesRequest, ServerCallContext)

public virtual Task<ListRolesResponse> ListRoles(ListRolesRequest request, ServerCallContext context)

Lists every predefined [Role][google.iam.admin.v1.Role] that IAM supports, or every custom role that is defined for an organization or project.

Parameters
NameDescription
requestListRolesRequest

The request received from the client.

contextServerCallContext

The context of the server-side call handler being invoked.

Returns
TypeDescription
Task<ListRolesResponse>

The response to send back to the client (wrapped by a task).

ListServiceAccountKeys(ListServiceAccountKeysRequest, ServerCallContext)

public virtual Task<ListServiceAccountKeysResponse> ListServiceAccountKeys(ListServiceAccountKeysRequest request, ServerCallContext context)

Lists every [ServiceAccountKey][google.iam.admin.v1.ServiceAccountKey] for a service account.

Parameters
NameDescription
requestListServiceAccountKeysRequest

The request received from the client.

contextServerCallContext

The context of the server-side call handler being invoked.

Returns
TypeDescription
Task<ListServiceAccountKeysResponse>

The response to send back to the client (wrapped by a task).

ListServiceAccounts(ListServiceAccountsRequest, ServerCallContext)

public virtual Task<ListServiceAccountsResponse> ListServiceAccounts(ListServiceAccountsRequest request, ServerCallContext context)

Lists every [ServiceAccount][google.iam.admin.v1.ServiceAccount] that belongs to a specific project.

Parameters
NameDescription
requestListServiceAccountsRequest

The request received from the client.

contextServerCallContext

The context of the server-side call handler being invoked.

Returns
TypeDescription
Task<ListServiceAccountsResponse>

The response to send back to the client (wrapped by a task).

PatchServiceAccount(PatchServiceAccountRequest, ServerCallContext)

public virtual Task<ServiceAccount> PatchServiceAccount(PatchServiceAccountRequest request, ServerCallContext context)

Patches a [ServiceAccount][google.iam.admin.v1.ServiceAccount].

Parameters
NameDescription
requestPatchServiceAccountRequest

The request received from the client.

contextServerCallContext

The context of the server-side call handler being invoked.

Returns
TypeDescription
Task<ServiceAccount>

The response to send back to the client (wrapped by a task).

QueryAuditableServices(QueryAuditableServicesRequest, ServerCallContext)

public virtual Task<QueryAuditableServicesResponse> QueryAuditableServices(QueryAuditableServicesRequest request, ServerCallContext context)

Returns a list of services that allow you to opt into audit logs that are not generated by default.

To learn more about audit logs, see the Logging documentation.

Parameters
NameDescription
requestQueryAuditableServicesRequest

The request received from the client.

contextServerCallContext

The context of the server-side call handler being invoked.

Returns
TypeDescription
Task<QueryAuditableServicesResponse>

The response to send back to the client (wrapped by a task).

QueryGrantableRoles(QueryGrantableRolesRequest, ServerCallContext)

public virtual Task<QueryGrantableRolesResponse> QueryGrantableRoles(QueryGrantableRolesRequest request, ServerCallContext context)

Lists roles that can be granted on a Google Cloud resource. A role is grantable if the IAM policy for the resource can contain bindings to the role.

Parameters
NameDescription
requestQueryGrantableRolesRequest

The request received from the client.

contextServerCallContext

The context of the server-side call handler being invoked.

Returns
TypeDescription
Task<QueryGrantableRolesResponse>

The response to send back to the client (wrapped by a task).

QueryTestablePermissions(QueryTestablePermissionsRequest, ServerCallContext)

public virtual Task<QueryTestablePermissionsResponse> QueryTestablePermissions(QueryTestablePermissionsRequest request, ServerCallContext context)

Lists every permission that you can test on a resource. A permission is testable if you can check whether a member has that permission on the resource.

Parameters
NameDescription
requestQueryTestablePermissionsRequest

The request received from the client.

contextServerCallContext

The context of the server-side call handler being invoked.

Returns
TypeDescription
Task<QueryTestablePermissionsResponse>

The response to send back to the client (wrapped by a task).

SetIamPolicy(SetIamPolicyRequest, ServerCallContext)

public virtual Task<Policy> SetIamPolicy(SetIamPolicyRequest request, ServerCallContext context)

Sets the IAM policy that is attached to a [ServiceAccount][google.iam.admin.v1.ServiceAccount].

Use this method to grant or revoke access to the service account. For example, you could grant a member the ability to impersonate the service account.

This method does not enable the service account to access other resources. To grant roles to a service account on a resource, follow these steps:

  1. Call the resource's getIamPolicy method to get its current IAM policy.
  2. Edit the policy so that it binds the service account to an IAM role for the resource.
  3. Call the resource's setIamPolicy method to update its IAM policy.

For detailed instructions, see Granting roles to a service account for specific resources.

Parameters
NameDescription
requestSetIamPolicyRequest

The request received from the client.

contextServerCallContext

The context of the server-side call handler being invoked.

Returns
TypeDescription
Task<Policy>

The response to send back to the client (wrapped by a task).

SignBlob(SignBlobRequest, ServerCallContext)

public virtual Task<SignBlobResponse> SignBlob(SignBlobRequest request, ServerCallContext context)

Note: This method is deprecated. Use the signBlob method in the IAM Service Account Credentials API instead. If you currently use this method, see the migration guide for instructions.

Signs a blob using the system-managed private key for a [ServiceAccount][google.iam.admin.v1.ServiceAccount].

Parameters
NameDescription
requestSignBlobRequest

The request received from the client.

contextServerCallContext

The context of the server-side call handler being invoked.

Returns
TypeDescription
Task<SignBlobResponse>

The response to send back to the client (wrapped by a task).

SignJwt(SignJwtRequest, ServerCallContext)

public virtual Task<SignJwtResponse> SignJwt(SignJwtRequest request, ServerCallContext context)

Note: This method is deprecated. Use the signJwt method in the IAM Service Account Credentials API instead. If you currently use this method, see the migration guide for instructions.

Signs a JSON Web Token (JWT) using the system-managed private key for a [ServiceAccount][google.iam.admin.v1.ServiceAccount].

Parameters
NameDescription
requestSignJwtRequest

The request received from the client.

contextServerCallContext

The context of the server-side call handler being invoked.

Returns
TypeDescription
Task<SignJwtResponse>

The response to send back to the client (wrapped by a task).

TestIamPermissions(TestIamPermissionsRequest, ServerCallContext)

public virtual Task<TestIamPermissionsResponse> TestIamPermissions(TestIamPermissionsRequest request, ServerCallContext context)

Tests whether the caller has the specified permissions on a [ServiceAccount][google.iam.admin.v1.ServiceAccount].

Parameters
NameDescription
requestTestIamPermissionsRequest

The request received from the client.

contextServerCallContext

The context of the server-side call handler being invoked.

Returns
TypeDescription
Task<TestIamPermissionsResponse>

The response to send back to the client (wrapped by a task).

UndeleteRole(UndeleteRoleRequest, ServerCallContext)

public virtual Task<Role> UndeleteRole(UndeleteRoleRequest request, ServerCallContext context)

Undeletes a custom [Role][google.iam.admin.v1.Role].

Parameters
NameDescription
requestUndeleteRoleRequest

The request received from the client.

contextServerCallContext

The context of the server-side call handler being invoked.

Returns
TypeDescription
Task<Role>

The response to send back to the client (wrapped by a task).

UndeleteServiceAccount(UndeleteServiceAccountRequest, ServerCallContext)

public virtual Task<UndeleteServiceAccountResponse> UndeleteServiceAccount(UndeleteServiceAccountRequest request, ServerCallContext context)

Restores a deleted [ServiceAccount][google.iam.admin.v1.ServiceAccount].

Important: It is not always possible to restore a deleted service account. Use this method only as a last resort.

After you delete a service account, IAM permanently removes the service account 30 days later. There is no way to restore a deleted service account that has been permanently removed.

Parameters
NameDescription
requestUndeleteServiceAccountRequest

The request received from the client.

contextServerCallContext

The context of the server-side call handler being invoked.

Returns
TypeDescription
Task<UndeleteServiceAccountResponse>

The response to send back to the client (wrapped by a task).

UpdateRole(UpdateRoleRequest, ServerCallContext)

public virtual Task<Role> UpdateRole(UpdateRoleRequest request, ServerCallContext context)

Updates the definition of a custom [Role][google.iam.admin.v1.Role].

Parameters
NameDescription
requestUpdateRoleRequest

The request received from the client.

contextServerCallContext

The context of the server-side call handler being invoked.

Returns
TypeDescription
Task<Role>

The response to send back to the client (wrapped by a task).

UpdateServiceAccount(ServiceAccount, ServerCallContext)

public virtual Task<ServiceAccount> UpdateServiceAccount(ServiceAccount request, ServerCallContext context)

Note: We are in the process of deprecating this method. Use [PatchServiceAccount][google.iam.admin.v1.IAM.PatchServiceAccount] instead.

Updates a [ServiceAccount][google.iam.admin.v1.ServiceAccount].

You can update only the display_name and description fields.

Parameters
NameDescription
requestServiceAccount

The request received from the client.

contextServerCallContext

The context of the server-side call handler being invoked.

Returns
TypeDescription
Task<ServiceAccount>

The response to send back to the client (wrapped by a task).

UploadServiceAccountKey(UploadServiceAccountKeyRequest, ServerCallContext)

public virtual Task<ServiceAccountKey> UploadServiceAccountKey(UploadServiceAccountKeyRequest request, ServerCallContext context)

Creates a [ServiceAccountKey][google.iam.admin.v1.ServiceAccountKey], using a public key that you provide.

Parameters
NameDescription
requestUploadServiceAccountKeyRequest

The request received from the client.

contextServerCallContext

The context of the server-side call handler being invoked.

Returns
TypeDescription
Task<ServiceAccountKey>

The response to send back to the client (wrapped by a task).