Show / Hide Table of Contents

Class OperationMetadata

Represents the metadata of the long-running operation.

Inheritance
System.Object
OperationMetadata
Implements
IMessage<OperationMetadata>
System.IEquatable<OperationMetadata>
IDeepCloneable<OperationMetadata>
Google.Protobuf.IBufferMessage
IMessage
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Cloud.Security.PrivateCA.V1Beta1
Assembly: Google.Cloud.Security.PrivateCA.V1Beta1.dll
Syntax
public sealed class OperationMetadata : IMessage<OperationMetadata>, IEquatable<OperationMetadata>, IDeepCloneable<OperationMetadata>, IBufferMessage, IMessage

Constructors

OperationMetadata()

Declaration
public OperationMetadata()

OperationMetadata(OperationMetadata)

Declaration
public OperationMetadata(OperationMetadata other)
Parameters
Type Name Description
OperationMetadata other

Properties

ApiVersion

Output only. API version used to start the operation.

Declaration
public string ApiVersion { get; set; }
Property Value
Type Description
System.String

CreateTime

Output only. The time the operation was created.

Declaration
public Timestamp CreateTime { get; set; }
Property Value
Type Description
Timestamp

EndTime

Output only. The time the operation finished running.

Declaration
public Timestamp EndTime { get; set; }
Property Value
Type Description
Timestamp

RequestedCancellation

Output only. Identifies whether the user has requested cancellation of the operation. Operations that have successfully been cancelled have [Operation.error][] value with a [google.rpc.Status.code][google.rpc.Status.code] of 1, corresponding to Code.CANCELLED.

Declaration
public bool RequestedCancellation { get; set; }
Property Value
Type Description
System.Boolean

StatusMessage

Output only. Human-readable status of the operation, if any.

Declaration
public string StatusMessage { get; set; }
Property Value
Type Description
System.String

Target

Output only. Server-defined resource path for the target of the operation.

Declaration
public string Target { get; set; }
Property Value
Type Description
System.String

Verb

Output only. Name of the verb executed by the operation.

Declaration
public string Verb { get; set; }
Property Value
Type Description
System.String
Back to top