Google Cloud Recommender v1 API - Class Operation (3.6.0)

public sealed class Operation : IMessage<Operation>, IEquatable<Operation>, IDeepCloneable<Operation>, IBufferMessage, IMessage

Reference documentation and code samples for the Google Cloud Recommender v1 API class Operation.

Contains an operation for a resource loosely based on the JSON-PATCH format with support for:

  • Custom filters for describing partial array patch.
  • Extended path values for describing nested arrays.
  • Custom fields for describing the resource for which the operation is being described.
  • Allows extension to custom operations not natively supported by RFC6902. See https://tools.ietf.org/html/rfc6902 for details on the original RFC.

Inheritance

object > Operation

Namespace

Google.Cloud.Recommender.V1

Assembly

Google.Cloud.Recommender.V1.dll

Constructors

Operation()

public Operation()

Operation(Operation)

public Operation(Operation other)
Parameter
NameDescription
otherOperation

Properties

Action

public string Action { get; set; }

Type of this operation. Contains one of 'add', 'remove', 'replace', 'move', 'copy', 'test' and custom operations. This field is case-insensitive and always populated.

Property Value
TypeDescription
string

Path

public string Path { get; set; }

Path to the target field being operated on. If the operation is at the resource level, then path should be "/". This field is always populated.

Property Value
TypeDescription
string

PathFilters

public MapField<string, Value> PathFilters { get; }

Set of filters to apply if path refers to array elements or nested array elements in order to narrow down to a single unique element that is being tested/modified. This is intended to be an exact match per filter. To perform advanced matching, use path_value_matchers.

  • Example: { "/versions/*/name" : "it-123" "/versions/*/targetSize/percent": 20 }
  • Example: { "/bindings/*/role": "roles/owner" "/bindings/*/condition" : null }
  • Example: { "/bindings/*/role": "roles/owner" "/bindings/*/members/*" : ["x@example.com", "y@example.com"] } When both path_filters and path_value_matchers are set, an implicit AND must be performed.
Property Value
TypeDescription
MapFieldstringValue

PathValueCase

public Operation.PathValueOneofCase PathValueCase { get; }
Property Value
TypeDescription
OperationPathValueOneofCase

PathValueMatchers

public MapField<string, ValueMatcher> PathValueMatchers { get; }

Similar to path_filters, this contains set of filters to apply if path field refers to array elements. This is meant to support value matching beyond exact match. To perform exact match, use path_filters. When both path_filters and path_value_matchers are set, an implicit AND must be performed.

Property Value
TypeDescription
MapFieldstringValueMatcher

Resource

public string Resource { get; set; }

Contains the fully qualified resource name. This field is always populated. ex: //cloudresourcemanager.googleapis.com/projects/foo.

Property Value
TypeDescription
string

ResourceType

public string ResourceType { get; set; }

Type of GCP resource being modified/tested. This field is always populated. Example: cloudresourcemanager.googleapis.com/Project, compute.googleapis.com/Instance

Property Value
TypeDescription
string

SourcePath

public string SourcePath { get; set; }

Can be set with action 'copy' or 'move' to indicate the source field within resource or source_resource, ignored if provided for other operation types.

Property Value
TypeDescription
string

SourceResource

public string SourceResource { get; set; }

Can be set with action 'copy' to copy resource configuration across different resources of the same type. Example: A resource clone can be done via action = 'copy', path = "/", from = "/", source_resource = <source> and resource_name = <target>. This field is empty for all other values of action.

Property Value
TypeDescription
string

Value

public Value Value { get; set; }

Value for the path field. Will be set for actions:'add'/'replace'. Maybe set for action: 'test'. Either this or value_matcher will be set for 'test' operation. An exact match must be performed.

Property Value
TypeDescription
Value

ValueMatcher

public ValueMatcher ValueMatcher { get; set; }

Can be set for action 'test' for advanced matching for the value of 'path' field. Either this or value will be set for 'test' operation.

Property Value
TypeDescription
ValueMatcher