Show / Hide Table of Contents

Class PatchChangeSummary

This is the patch report summary information.

Inheritance
object
PatchChangeSummary
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 PatchChangeSummary

Properties

Action

Declaration
[JsonProperty(PropertyName = "action")]
[JsonConverter(typeof(ResponseEnumConverter))]
public PatchChangeSummary.ActionEnum? Action { get; set; }
Property Value
Type Description
PatchChangeSummary.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 PatchChangeSummary.TypeEnum? Type { get; set; }
Property Value
Type Description
PatchChangeSummary.TypeEnum?

The type of the object in patch.

In this article
Back to top