com.google.cloud.managedidentities.v1.stub.ManagedIdentitiesServiceStub Maven / Gradle / Ivy
Show all versions of google-cloud-managed-identities Show documentation
/*
* Copyright 2023 Google LLC
*
* 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
*
* https://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.
*/
package com.google.cloud.managedidentities.v1.stub;
import static com.google.cloud.managedidentities.v1.ManagedIdentitiesServiceClient.ListDomainsPagedResponse;
import com.google.api.gax.core.BackgroundResource;
import com.google.api.gax.rpc.OperationCallable;
import com.google.api.gax.rpc.UnaryCallable;
import com.google.cloud.managedidentities.v1.AttachTrustRequest;
import com.google.cloud.managedidentities.v1.CreateMicrosoftAdDomainRequest;
import com.google.cloud.managedidentities.v1.DeleteDomainRequest;
import com.google.cloud.managedidentities.v1.DetachTrustRequest;
import com.google.cloud.managedidentities.v1.Domain;
import com.google.cloud.managedidentities.v1.GetDomainRequest;
import com.google.cloud.managedidentities.v1.ListDomainsRequest;
import com.google.cloud.managedidentities.v1.ListDomainsResponse;
import com.google.cloud.managedidentities.v1.OpMetadata;
import com.google.cloud.managedidentities.v1.ReconfigureTrustRequest;
import com.google.cloud.managedidentities.v1.ResetAdminPasswordRequest;
import com.google.cloud.managedidentities.v1.ResetAdminPasswordResponse;
import com.google.cloud.managedidentities.v1.UpdateDomainRequest;
import com.google.cloud.managedidentities.v1.ValidateTrustRequest;
import com.google.longrunning.Operation;
import com.google.longrunning.stub.OperationsStub;
import com.google.protobuf.Empty;
import javax.annotation.Generated;
// AUTO-GENERATED DOCUMENTATION AND CLASS.
/**
* Base stub class for the ManagedIdentitiesService service API.
*
* This class is for advanced usage and reflects the underlying API directly.
*/
@Generated("by gapic-generator-java")
public abstract class ManagedIdentitiesServiceStub implements BackgroundResource {
public OperationsStub getOperationsStub() {
throw new UnsupportedOperationException("Not implemented: getOperationsStub()");
}
public OperationCallable
createMicrosoftAdDomainOperationCallable() {
throw new UnsupportedOperationException(
"Not implemented: createMicrosoftAdDomainOperationCallable()");
}
public UnaryCallable
createMicrosoftAdDomainCallable() {
throw new UnsupportedOperationException("Not implemented: createMicrosoftAdDomainCallable()");
}
public UnaryCallable
resetAdminPasswordCallable() {
throw new UnsupportedOperationException("Not implemented: resetAdminPasswordCallable()");
}
public UnaryCallable listDomainsPagedCallable() {
throw new UnsupportedOperationException("Not implemented: listDomainsPagedCallable()");
}
public UnaryCallable listDomainsCallable() {
throw new UnsupportedOperationException("Not implemented: listDomainsCallable()");
}
public UnaryCallable getDomainCallable() {
throw new UnsupportedOperationException("Not implemented: getDomainCallable()");
}
public OperationCallable
updateDomainOperationCallable() {
throw new UnsupportedOperationException("Not implemented: updateDomainOperationCallable()");
}
public UnaryCallable updateDomainCallable() {
throw new UnsupportedOperationException("Not implemented: updateDomainCallable()");
}
public OperationCallable deleteDomainOperationCallable() {
throw new UnsupportedOperationException("Not implemented: deleteDomainOperationCallable()");
}
public UnaryCallable deleteDomainCallable() {
throw new UnsupportedOperationException("Not implemented: deleteDomainCallable()");
}
public OperationCallable attachTrustOperationCallable() {
throw new UnsupportedOperationException("Not implemented: attachTrustOperationCallable()");
}
public UnaryCallable attachTrustCallable() {
throw new UnsupportedOperationException("Not implemented: attachTrustCallable()");
}
public OperationCallable
reconfigureTrustOperationCallable() {
throw new UnsupportedOperationException("Not implemented: reconfigureTrustOperationCallable()");
}
public UnaryCallable reconfigureTrustCallable() {
throw new UnsupportedOperationException("Not implemented: reconfigureTrustCallable()");
}
public OperationCallable detachTrustOperationCallable() {
throw new UnsupportedOperationException("Not implemented: detachTrustOperationCallable()");
}
public UnaryCallable detachTrustCallable() {
throw new UnsupportedOperationException("Not implemented: detachTrustCallable()");
}
public OperationCallable
validateTrustOperationCallable() {
throw new UnsupportedOperationException("Not implemented: validateTrustOperationCallable()");
}
public UnaryCallable validateTrustCallable() {
throw new UnsupportedOperationException("Not implemented: validateTrustCallable()");
}
@Override
public abstract void close();
}