Show / Hide Table of Contents

Class PatchObjectMetadata

A summary type containing information about the object including its key, name and when/who created/updated it.

Inheritance
object
PatchObjectMetadata
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DataintegrationService.Models
Assembly: OCI.DotNetSDK.Dataintegration.dll
Syntax
public class PatchObjectMetadata

Properties

Action

Declaration
[JsonProperty(PropertyName = "action")]
[JsonConverter(typeof(ResponseEnumConverter))]
public PatchObjectMetadata.ActionEnum? Action { get; set; }
Property Value
Type Description
PatchObjectMetadata.ActionEnum?

The patch action indicating if object was created, updated, or deleted.

Identifier

Declaration
[JsonProperty(PropertyName = "identifier")]
public string Identifier { get; set; }
Property Value
Type Description
string

Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.

Key

Declaration
[JsonProperty(PropertyName = "key")]
public string Key { get; set; }
Property Value
Type Description
string

The key of the object.

Name

Declaration
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
string

Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.

NamePath

Declaration
[JsonProperty(PropertyName = "namePath")]
public string NamePath { get; set; }
Property Value
Type Description
string

The fully qualified path of the published object, which would include its project and folder.

ObjectVersion

Declaration
[JsonProperty(PropertyName = "objectVersion")]
public int? ObjectVersion { get; set; }
Property Value
Type Description
int?

The object version.

Type

Declaration
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(ResponseEnumConverter))]
public PatchObjectMetadata.TypeEnum? Type { get; set; }
Property Value
Type Description
PatchObjectMetadata.TypeEnum?

The type of the object in patch.

In this article
Back to top