public class CaseAttachmentService.CaseAttachmentServiceClient : ClientBase<CaseAttachmentService.CaseAttachmentServiceClient>
Reference documentation and code samples for the Google Cloud Support v2 API class CaseAttachmentService.CaseAttachmentServiceClient.
Client for CaseAttachmentService
Inheritance
object > ClientBase > ClientBaseCaseAttachmentServiceCaseAttachmentServiceClient > CaseAttachmentService.CaseAttachmentServiceClientNamespace
Google.Cloud.Support.V2Assembly
Google.Cloud.Support.V2.dll
Constructors
CaseAttachmentServiceClient()
protected CaseAttachmentServiceClient()
Protected parameterless constructor to allow creation of test doubles.
CaseAttachmentServiceClient(CallInvoker)
public CaseAttachmentServiceClient(CallInvoker callInvoker)
Creates a new client for CaseAttachmentService that uses a custom CallInvoker
.
Parameter | |
---|---|
Name | Description |
callInvoker |
CallInvoker The callInvoker to use to make remote calls. |
CaseAttachmentServiceClient(ChannelBase)
public CaseAttachmentServiceClient(ChannelBase channel)
Creates a new client for CaseAttachmentService
Parameter | |
---|---|
Name | Description |
channel |
ChannelBase The channel to use to make remote calls. |
CaseAttachmentServiceClient(ClientBaseConfiguration)
protected CaseAttachmentServiceClient(ClientBase.ClientBaseConfiguration configuration)
Protected constructor to allow creation of configured clients.
Parameter | |
---|---|
Name | Description |
configuration |
ClientBaseClientBaseConfiguration The client configuration. |
Methods
ListAttachments(ListAttachmentsRequest, CallOptions)
public virtual ListAttachmentsResponse ListAttachments(ListAttachmentsRequest request, CallOptions options)
List all the attachments associated with a support case.
EXAMPLES:
cURL:
case="projects/some-project/cases/23598314"
curl \
--header "Authorization: Bearer $(gcloud auth print-access-token)" \
"https://cloudsupport.googleapis.com/v2/$case/attachments"
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()
.attachments()
.list(parent="projects/some-project/cases/43595344")
)
print(request.execute())
Parameters | |
---|---|
Name | Description |
request |
ListAttachmentsRequest The request to send to the server. |
options |
CallOptions The options for the call. |
Returns | |
---|---|
Type | Description |
ListAttachmentsResponse |
The response received from the server. |
ListAttachments(ListAttachmentsRequest, Metadata, DateTime?, CancellationToken)
public virtual ListAttachmentsResponse ListAttachments(ListAttachmentsRequest request, Metadata headers = null, DateTime? deadline = null, CancellationToken cancellationToken = default)
List all the attachments associated with a support case.
EXAMPLES:
cURL:
case="projects/some-project/cases/23598314"
curl \
--header "Authorization: Bearer $(gcloud auth print-access-token)" \
"https://cloudsupport.googleapis.com/v2/$case/attachments"
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()
.attachments()
.list(parent="projects/some-project/cases/43595344")
)
print(request.execute())
Parameters | |
---|---|
Name | Description |
request |
ListAttachmentsRequest The request to send to the server. |
headers |
Metadata The initial metadata to send with the call. This parameter is optional. |
deadline |
System.DateTime An optional deadline for the call. The call will be cancelled if deadline is hit. |
cancellationToken |
CancellationToken An optional token for canceling the call. |
Returns | |
---|---|
Type | Description |
ListAttachmentsResponse |
The response received from the server. |
ListAttachmentsAsync(ListAttachmentsRequest, CallOptions)
public virtual AsyncUnaryCall<ListAttachmentsResponse> ListAttachmentsAsync(ListAttachmentsRequest request, CallOptions options)
List all the attachments associated with a support case.
EXAMPLES:
cURL:
case="projects/some-project/cases/23598314"
curl \
--header "Authorization: Bearer $(gcloud auth print-access-token)" \
"https://cloudsupport.googleapis.com/v2/$case/attachments"
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()
.attachments()
.list(parent="projects/some-project/cases/43595344")
)
print(request.execute())
Parameters | |
---|---|
Name | Description |
request |
ListAttachmentsRequest The request to send to the server. |
options |
CallOptions The options for the call. |
Returns | |
---|---|
Type | Description |
AsyncUnaryCallListAttachmentsResponse |
The call object. |
ListAttachmentsAsync(ListAttachmentsRequest, Metadata, DateTime?, CancellationToken)
public virtual AsyncUnaryCall<ListAttachmentsResponse> ListAttachmentsAsync(ListAttachmentsRequest request, Metadata headers = null, DateTime? deadline = null, CancellationToken cancellationToken = default)
List all the attachments associated with a support case.
EXAMPLES:
cURL:
case="projects/some-project/cases/23598314"
curl \
--header "Authorization: Bearer $(gcloud auth print-access-token)" \
"https://cloudsupport.googleapis.com/v2/$case/attachments"
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()
.attachments()
.list(parent="projects/some-project/cases/43595344")
)
print(request.execute())
Parameters | |
---|---|
Name | Description |
request |
ListAttachmentsRequest The request to send to the server. |
headers |
Metadata The initial metadata to send with the call. This parameter is optional. |
deadline |
System.DateTime An optional deadline for the call. The call will be cancelled if deadline is hit. |
cancellationToken |
CancellationToken An optional token for canceling the call. |
Returns | |
---|---|
Type | Description |
AsyncUnaryCallListAttachmentsResponse |
The call object. |
NewInstance(ClientBaseConfiguration)
protected override CaseAttachmentService.CaseAttachmentServiceClient NewInstance(ClientBase.ClientBaseConfiguration configuration)
Creates a new instance of client from given ClientBaseConfiguration
.
Parameter | |
---|---|
Name | Description |
configuration |
ClientBaseClientBaseConfiguration |
Returns | |
---|---|
Type | Description |
CaseAttachmentServiceCaseAttachmentServiceClient |