Interface ManagedIdentitiesServiceGrpc.AsyncService
-
- All Known Implementing Classes:
ManagedIdentitiesServiceGrpc.ManagedIdentitiesServiceImplBase
- Enclosing class:
- ManagedIdentitiesServiceGrpc
public static interface ManagedIdentitiesServiceGrpc.AsyncService
API Overview The `managedidentites.googleapis.com` service implements the Google Cloud Managed Identites API for identity services (e.g. Microsoft Active Directory). The Managed Identities service provides methods to manage (create/read/update/delete) domains, reset managed identities admin password, add/remove domain controllers in GCP regions and add/remove VPC peering. Data Model The Managed Identities service exposes the following resources: * Locations as global, named as follows: `projects/{project_id}/locations/global`. * Domains, named as follows: `/projects/{project_id}/locations/global/domain/{domain_name}`. The `{domain_name}` refers to fully qualified domain name in the customer project e.g. mydomain.myorganization.com, with the following restrictions: * Must contain only lowercase letters, numbers, periods and hyphens. * Must start with a letter. * Must contain between 2-64 characters. * Must end with a number or a letter. * Must not start with period. * First segement length (mydomain form example above) shouldn't exceed 15 chars. * The last segment cannot be fully numeric. * Must be unique within the customer project.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default void
attachTrust(AttachTrustRequest request, io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)
Adds an AD trust to a domain.default void
createMicrosoftAdDomain(CreateMicrosoftAdDomainRequest request, io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)
Creates a Microsoft AD domain.default void
deleteDomain(DeleteDomainRequest request, io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)
Deletes a domain.default void
detachTrust(DetachTrustRequest request, io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)
Removes an AD trust.default void
getDomain(GetDomainRequest request, io.grpc.stub.StreamObserver<Domain> responseObserver)
Gets information about a domain.default void
listDomains(ListDomainsRequest request, io.grpc.stub.StreamObserver<ListDomainsResponse> responseObserver)
Lists domains in a project.default void
reconfigureTrust(ReconfigureTrustRequest request, io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)
Updates the DNS conditional forwarder.default void
resetAdminPassword(ResetAdminPasswordRequest request, io.grpc.stub.StreamObserver<ResetAdminPasswordResponse> responseObserver)
Resets a domain's administrator password.default void
updateDomain(UpdateDomainRequest request, io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)
Updates the metadata and configuration of a domain.default void
validateTrust(ValidateTrustRequest request, io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)
Validates a trust state, that the target domain is reachable, and that the target domain is able to accept incoming trust requests.
-
-
-
Method Detail
-
createMicrosoftAdDomain
default void createMicrosoftAdDomain(CreateMicrosoftAdDomainRequest request, io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)
Creates a Microsoft AD domain.
-
resetAdminPassword
default void resetAdminPassword(ResetAdminPasswordRequest request, io.grpc.stub.StreamObserver<ResetAdminPasswordResponse> responseObserver)
Resets a domain's administrator password.
-
listDomains
default void listDomains(ListDomainsRequest request, io.grpc.stub.StreamObserver<ListDomainsResponse> responseObserver)
Lists domains in a project.
-
getDomain
default void getDomain(GetDomainRequest request, io.grpc.stub.StreamObserver<Domain> responseObserver)
Gets information about a domain.
-
updateDomain
default void updateDomain(UpdateDomainRequest request, io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)
Updates the metadata and configuration of a domain.
-
deleteDomain
default void deleteDomain(DeleteDomainRequest request, io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)
Deletes a domain.
-
attachTrust
default void attachTrust(AttachTrustRequest request, io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)
Adds an AD trust to a domain.
-
reconfigureTrust
default void reconfigureTrust(ReconfigureTrustRequest request, io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)
Updates the DNS conditional forwarder.
-
detachTrust
default void detachTrust(DetachTrustRequest request, io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)
Removes an AD trust.
-
validateTrust
default void validateTrust(ValidateTrustRequest request, io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)
Validates a trust state, that the target domain is reachable, and that the target domain is able to accept incoming trust requests.
-
-