public static final class NotificationChannelServiceGrpc.NotificationChannelServiceStub extends AbstractAsyncStub<NotificationChannelServiceGrpc.NotificationChannelServiceStub>
The Notification Channel API provides access to configuration that
controls how messages related to incidents are sent.
Inheritance
java.lang.Object >
io.grpc.stub.AbstractStub >
io.grpc.stub.AbstractAsyncStub >
NotificationChannelServiceGrpc.NotificationChannelServiceStub
Inherited Members
io.grpc.stub.AbstractAsyncStub.<T>newStub(io.grpc.stub.AbstractStub.StubFactory<T>,io.grpc.Channel)
io.grpc.stub.AbstractAsyncStub.<T>newStub(io.grpc.stub.AbstractStub.StubFactory<T>,io.grpc.Channel,io.grpc.CallOptions)
io.grpc.stub.AbstractStub.<T>withOption(io.grpc.CallOptions.Key<T>,T)
io.grpc.stub.AbstractStub.build(io.grpc.Channel,io.grpc.CallOptions)
io.grpc.stub.AbstractStub.getCallOptions()
io.grpc.stub.AbstractStub.getChannel()
io.grpc.stub.AbstractStub.withCallCredentials(io.grpc.CallCredentials)
io.grpc.stub.AbstractStub.withChannel(io.grpc.Channel)
io.grpc.stub.AbstractStub.withCompression(java.lang.String)
io.grpc.stub.AbstractStub.withDeadline(io.grpc.Deadline)
io.grpc.stub.AbstractStub.withDeadlineAfter(long,java.util.concurrent.TimeUnit)
io.grpc.stub.AbstractStub.withExecutor(java.util.concurrent.Executor)
io.grpc.stub.AbstractStub.withInterceptors(io.grpc.ClientInterceptor...)
io.grpc.stub.AbstractStub.withMaxInboundMessageSize(int)
io.grpc.stub.AbstractStub.withMaxOutboundMessageSize(int)
io.grpc.stub.AbstractStub.withWaitForReady()
Methods
build(Channel channel, CallOptions callOptions)
protected NotificationChannelServiceGrpc.NotificationChannelServiceStub build(Channel channel, CallOptions callOptions)
Parameters
Name | Description |
channel | io.grpc.Channel
|
callOptions | io.grpc.CallOptions
|
Returns
Overrides
io.grpc.stub.AbstractStub.build(io.grpc.Channel,io.grpc.CallOptions)
createNotificationChannel(CreateNotificationChannelRequest request, StreamObserver<NotificationChannel> responseObserver)
public void createNotificationChannel(CreateNotificationChannelRequest request, StreamObserver<NotificationChannel> responseObserver)
Creates a new notification channel, representing a single notification
endpoint such as an email address, SMS number, or PagerDuty service.
Parameters
deleteNotificationChannel(DeleteNotificationChannelRequest request, StreamObserver<Empty> responseObserver)
public void deleteNotificationChannel(DeleteNotificationChannelRequest request, StreamObserver<Empty> responseObserver)
Deletes a notification channel.
Parameters
getNotificationChannel(GetNotificationChannelRequest request, StreamObserver<NotificationChannel> responseObserver)
public void getNotificationChannel(GetNotificationChannelRequest request, StreamObserver<NotificationChannel> responseObserver)
Gets a single notification channel. The channel includes the relevant
configuration details with which the channel was created. However, the
response may truncate or omit passwords, API keys, or other private key
matter and thus the response may not be 100% identical to the information
that was supplied in the call to the create method.
Parameters
getNotificationChannelDescriptor(GetNotificationChannelDescriptorRequest request, StreamObserver<NotificationChannelDescriptor> responseObserver)
public void getNotificationChannelDescriptor(GetNotificationChannelDescriptorRequest request, StreamObserver<NotificationChannelDescriptor> responseObserver)
Gets a single channel descriptor. The descriptor indicates which fields
are expected / permitted for a notification channel of the given type.
Parameters
getNotificationChannelVerificationCode(GetNotificationChannelVerificationCodeRequest request, StreamObserver<GetNotificationChannelVerificationCodeResponse> responseObserver)
public void getNotificationChannelVerificationCode(GetNotificationChannelVerificationCodeRequest request, StreamObserver<GetNotificationChannelVerificationCodeResponse> responseObserver)
Requests a verification code for an already verified channel that can then
be used in a call to VerifyNotificationChannel() on a different channel
with an equivalent identity in the same or in a different project. This
makes it possible to copy a channel between projects without requiring
manual reverification of the channel. If the channel is not in the
verified state, this method will fail (in other words, this may only be
used if the SendNotificationChannelVerificationCode and
VerifyNotificationChannel paths have already been used to put the given
channel into the verified state).
There is no guarantee that the verification codes returned by this method
will be of a similar structure or form as the ones that are delivered
to the channel via SendNotificationChannelVerificationCode; while
VerifyNotificationChannel() will recognize both the codes delivered via
SendNotificationChannelVerificationCode() and returned from
GetNotificationChannelVerificationCode(), it is typically the case that
the verification codes delivered via
SendNotificationChannelVerificationCode() will be shorter and also
have a shorter expiration (e.g. codes such as "G-123456") whereas
GetVerificationCode() will typically return a much longer, websafe base
64 encoded string that has a longer expiration time.
Parameters
listNotificationChannelDescriptors(ListNotificationChannelDescriptorsRequest request, StreamObserver<ListNotificationChannelDescriptorsResponse> responseObserver)
public void listNotificationChannelDescriptors(ListNotificationChannelDescriptorsRequest request, StreamObserver<ListNotificationChannelDescriptorsResponse> responseObserver)
Lists the descriptors for supported channel types. The use of descriptors
makes it possible for new channel types to be dynamically added.
Parameters
listNotificationChannels(ListNotificationChannelsRequest request, StreamObserver<ListNotificationChannelsResponse> responseObserver)
public void listNotificationChannels(ListNotificationChannelsRequest request, StreamObserver<ListNotificationChannelsResponse> responseObserver)
Lists the notification channels that have been created for the project.
Parameters
sendNotificationChannelVerificationCode(SendNotificationChannelVerificationCodeRequest request, StreamObserver<Empty> responseObserver)
public void sendNotificationChannelVerificationCode(SendNotificationChannelVerificationCodeRequest request, StreamObserver<Empty> responseObserver)
Causes a verification code to be delivered to the channel. The code
can then be supplied in VerifyNotificationChannel
to verify the channel.
Parameters
updateNotificationChannel(UpdateNotificationChannelRequest request, StreamObserver<NotificationChannel> responseObserver)
public void updateNotificationChannel(UpdateNotificationChannelRequest request, StreamObserver<NotificationChannel> responseObserver)
Updates a notification channel. Fields not specified in the field mask
remain unchanged.
Parameters
verifyNotificationChannel(VerifyNotificationChannelRequest request, StreamObserver<NotificationChannel> responseObserver)
public void verifyNotificationChannel(VerifyNotificationChannelRequest request, StreamObserver<NotificationChannel> responseObserver)
Verifies a NotificationChannel
by proving receipt of the code
delivered to the channel as a result of calling
SendNotificationChannelVerificationCode
.
Parameters