Class: Google::Cloud::Ces::V1::Action::EntityOperation

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/ces/v1/connector_tool.rb

Overview

Entity CRUD operation specification.

Defined Under Namespace

Modules: OperationType

Instance Attribute Summary collapse

Instance Attribute Details

#entity_id::String

Returns Required. ID of the entity.

Returns:

  • (::String)

    Required. ID of the entity.



57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# File 'proto_docs/google/cloud/ces/v1/connector_tool.rb', line 57

class EntityOperation
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The operation to perform on the entity.
  module OperationType
    # Operation type unspecified. Invalid, ConnectorTool create/update
    # will fail.
    OPERATION_TYPE_UNSPECIFIED = 0

    # List operation.
    LIST = 1

    # Get operation.
    GET = 2

    # Create operation.
    CREATE = 3

    # Update operation.
    UPDATE = 4

    # Delete operation.
    DELETE = 5
  end
end

#operation::Google::Cloud::Ces::V1::Action::EntityOperation::OperationType

Returns Required. Operation to perform on the entity.

Returns:



57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# File 'proto_docs/google/cloud/ces/v1/connector_tool.rb', line 57

class EntityOperation
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The operation to perform on the entity.
  module OperationType
    # Operation type unspecified. Invalid, ConnectorTool create/update
    # will fail.
    OPERATION_TYPE_UNSPECIFIED = 0

    # List operation.
    LIST = 1

    # Get operation.
    GET = 2

    # Create operation.
    CREATE = 3

    # Update operation.
    UPDATE = 4

    # Delete operation.
    DELETE = 5
  end
end