Google Cloud Support v2 API - Class CommentService.CommentServiceBase (1.4.0)

[BindServiceMethod(typeof(CommentService), "BindService")]
public abstract class CommentService.CommentServiceBase

Reference documentation and code samples for the Google Cloud Support v2 API class CommentService.CommentServiceBase.

Base class for server-side implementations of CommentService

Inheritance

object > CommentService.CommentServiceBase

Namespace

Google.Cloud.Support.V2

Assembly

Google.Cloud.Support.V2.dll

Methods

CreateComment(CreateCommentRequest, ServerCallContext)

public virtual Task<Comment> CreateComment(CreateCommentRequest request, ServerCallContext context)

Add a new comment to a case.

The comment must have the following fields set: body.

EXAMPLES:

cURL:

case="projects/some-project/cases/43591344"
curl \
  --request POST \
  --header "Authorization: Bearer $(gcloud auth print-access-token)" \
  --header 'Content-Type: application/json' \
  --data '{
    "body": "This is a test comment."
  }' \
  "https://cloudsupport.googleapis.com/v2/$case/comments"

Python:

import googleapiclient.discovery

api_version = "v2"
supportApiService = googleapiclient.discovery.build(
    serviceName="cloudsupport",
    version=api_version,
    discoveryServiceUrl=f"https://cloudsupport.googleapis.com/$discovery/rest?version={api_version}",
)
request = (
    supportApiService.cases()
    .comments()
    .create(
        parent="projects/some-project/cases/43595344",
        body={"body": "This is a test comment."},
    )
)
print(request.execute())
Parameters
Name Description
request CreateCommentRequest

The request received from the client.

context ServerCallContext

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

Returns
Type Description
TaskComment

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

ListComments(ListCommentsRequest, ServerCallContext)

public virtual Task<ListCommentsResponse> ListComments(ListCommentsRequest request, ServerCallContext context)

List all the comments associated with a case.

EXAMPLES:

cURL:

case="projects/some-project/cases/43595344"
curl \
  --header "Authorization: Bearer $(gcloud auth print-access-token)" \
  "https://cloudsupport.googleapis.com/v2/$case/comments"

Python:

import googleapiclient.discovery

api_version = "v2"
supportApiService = googleapiclient.discovery.build(
    serviceName="cloudsupport",
    version=api_version,
    discoveryServiceUrl=f"https://cloudsupport.googleapis.com/$discovery/rest?version={api_version}",
)
request = (
    supportApiService.cases()
    .comments()
    .list(parent="projects/some-project/cases/43595344")
)
print(request.execute())
Parameters
Name Description
request ListCommentsRequest

The request received from the client.

context ServerCallContext

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

Returns
Type Description
TaskListCommentsResponse

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