Show / Hide Table of Contents

Class GcsDestination

A Cloud Storage location.

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

Constructors

GcsDestination()

Declaration
public GcsDestination()

GcsDestination(GcsDestination)

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

Properties

ObjectUriCase

Declaration
public GcsDestination.ObjectUriOneofCase ObjectUriCase { get; }
Property Value
Type Description
GcsDestination.ObjectUriOneofCase

Uri

The uri of the Cloud Storage object. It's the same uri that is used by gsutil. For example: "gs://bucket_name/object_name". See Viewing and Editing Object Metadata for more information.

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