com.google.cloud.iot.v1.stub.DeviceManagerStub Maven / Gradle / Ivy
Show all versions of google-cloud-iot Show documentation
/*
* Copyright 2024 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.iot.v1.stub;
import static com.google.cloud.iot.v1.DeviceManagerClient.ListDeviceRegistriesPagedResponse;
import static com.google.cloud.iot.v1.DeviceManagerClient.ListDevicesPagedResponse;
import com.google.api.gax.core.BackgroundResource;
import com.google.api.gax.rpc.UnaryCallable;
import com.google.cloud.iot.v1.BindDeviceToGatewayRequest;
import com.google.cloud.iot.v1.BindDeviceToGatewayResponse;
import com.google.cloud.iot.v1.CreateDeviceRegistryRequest;
import com.google.cloud.iot.v1.CreateDeviceRequest;
import com.google.cloud.iot.v1.DeleteDeviceRegistryRequest;
import com.google.cloud.iot.v1.DeleteDeviceRequest;
import com.google.cloud.iot.v1.Device;
import com.google.cloud.iot.v1.DeviceConfig;
import com.google.cloud.iot.v1.DeviceRegistry;
import com.google.cloud.iot.v1.GetDeviceRegistryRequest;
import com.google.cloud.iot.v1.GetDeviceRequest;
import com.google.cloud.iot.v1.ListDeviceConfigVersionsRequest;
import com.google.cloud.iot.v1.ListDeviceConfigVersionsResponse;
import com.google.cloud.iot.v1.ListDeviceRegistriesRequest;
import com.google.cloud.iot.v1.ListDeviceRegistriesResponse;
import com.google.cloud.iot.v1.ListDeviceStatesRequest;
import com.google.cloud.iot.v1.ListDeviceStatesResponse;
import com.google.cloud.iot.v1.ListDevicesRequest;
import com.google.cloud.iot.v1.ListDevicesResponse;
import com.google.cloud.iot.v1.ModifyCloudToDeviceConfigRequest;
import com.google.cloud.iot.v1.SendCommandToDeviceRequest;
import com.google.cloud.iot.v1.SendCommandToDeviceResponse;
import com.google.cloud.iot.v1.UnbindDeviceFromGatewayRequest;
import com.google.cloud.iot.v1.UnbindDeviceFromGatewayResponse;
import com.google.cloud.iot.v1.UpdateDeviceRegistryRequest;
import com.google.cloud.iot.v1.UpdateDeviceRequest;
import com.google.iam.v1.GetIamPolicyRequest;
import com.google.iam.v1.Policy;
import com.google.iam.v1.SetIamPolicyRequest;
import com.google.iam.v1.TestIamPermissionsRequest;
import com.google.iam.v1.TestIamPermissionsResponse;
import com.google.protobuf.Empty;
import javax.annotation.Generated;
// AUTO-GENERATED DOCUMENTATION AND CLASS.
/**
* Base stub class for the DeviceManager service API.
*
* This class is for advanced usage and reflects the underlying API directly.
*/
@Generated("by gapic-generator-java")
public abstract class DeviceManagerStub implements BackgroundResource {
public UnaryCallable createDeviceRegistryCallable() {
throw new UnsupportedOperationException("Not implemented: createDeviceRegistryCallable()");
}
public UnaryCallable getDeviceRegistryCallable() {
throw new UnsupportedOperationException("Not implemented: getDeviceRegistryCallable()");
}
public UnaryCallable updateDeviceRegistryCallable() {
throw new UnsupportedOperationException("Not implemented: updateDeviceRegistryCallable()");
}
public UnaryCallable deleteDeviceRegistryCallable() {
throw new UnsupportedOperationException("Not implemented: deleteDeviceRegistryCallable()");
}
public UnaryCallable
listDeviceRegistriesPagedCallable() {
throw new UnsupportedOperationException("Not implemented: listDeviceRegistriesPagedCallable()");
}
public UnaryCallable
listDeviceRegistriesCallable() {
throw new UnsupportedOperationException("Not implemented: listDeviceRegistriesCallable()");
}
public UnaryCallable createDeviceCallable() {
throw new UnsupportedOperationException("Not implemented: createDeviceCallable()");
}
public UnaryCallable getDeviceCallable() {
throw new UnsupportedOperationException("Not implemented: getDeviceCallable()");
}
public UnaryCallable updateDeviceCallable() {
throw new UnsupportedOperationException("Not implemented: updateDeviceCallable()");
}
public UnaryCallable deleteDeviceCallable() {
throw new UnsupportedOperationException("Not implemented: deleteDeviceCallable()");
}
public UnaryCallable listDevicesPagedCallable() {
throw new UnsupportedOperationException("Not implemented: listDevicesPagedCallable()");
}
public UnaryCallable listDevicesCallable() {
throw new UnsupportedOperationException("Not implemented: listDevicesCallable()");
}
public UnaryCallable
modifyCloudToDeviceConfigCallable() {
throw new UnsupportedOperationException("Not implemented: modifyCloudToDeviceConfigCallable()");
}
public UnaryCallable
listDeviceConfigVersionsCallable() {
throw new UnsupportedOperationException("Not implemented: listDeviceConfigVersionsCallable()");
}
public UnaryCallable
listDeviceStatesCallable() {
throw new UnsupportedOperationException("Not implemented: listDeviceStatesCallable()");
}
public UnaryCallable setIamPolicyCallable() {
throw new UnsupportedOperationException("Not implemented: setIamPolicyCallable()");
}
public UnaryCallable getIamPolicyCallable() {
throw new UnsupportedOperationException("Not implemented: getIamPolicyCallable()");
}
public UnaryCallable
testIamPermissionsCallable() {
throw new UnsupportedOperationException("Not implemented: testIamPermissionsCallable()");
}
public UnaryCallable
sendCommandToDeviceCallable() {
throw new UnsupportedOperationException("Not implemented: sendCommandToDeviceCallable()");
}
public UnaryCallable
bindDeviceToGatewayCallable() {
throw new UnsupportedOperationException("Not implemented: bindDeviceToGatewayCallable()");
}
public UnaryCallable
unbindDeviceFromGatewayCallable() {
throw new UnsupportedOperationException("Not implemented: unbindDeviceFromGatewayCallable()");
}
@Override
public abstract void close();
}