Class: Google::Cloud::Dataplex::V1::GetContentRequest

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

Overview

Get content request.

Defined Under Namespace

Modules: ContentView

Instance Attribute Summary collapse

Instance Attribute Details

#name::String

Returns Required. The resource name of the content: projects/{project_id}/locations/{location_id}/lakes/{lake_id}/content/{content_id}.

Returns:

  • (::String)

    Required. The resource name of the content: projects/{project_id}/locations/{location_id}/lakes/{lake_id}/content/{content_id}



121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
# File 'proto_docs/google/cloud/dataplex/v1/content.rb', line 121

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

  # Specifies whether the request should return the full or the partial
  # representation.
  module ContentView
    # Content view not specified. Defaults to BASIC.
    # The API will default to the BASIC view.
    CONTENT_VIEW_UNSPECIFIED = 0

    # Will not return the `data_text` field.
    BASIC = 1

    # Returns the complete proto.
    FULL = 2
  end
end

#view::Google::Cloud::Dataplex::V1::GetContentRequest::ContentView

Returns Optional. Specify content view to make a partial request.

Returns:



121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
# File 'proto_docs/google/cloud/dataplex/v1/content.rb', line 121

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

  # Specifies whether the request should return the full or the partial
  # representation.
  module ContentView
    # Content view not specified. Defaults to BASIC.
    # The API will default to the BASIC view.
    CONTENT_VIEW_UNSPECIFIED = 0

    # Will not return the `data_text` field.
    BASIC = 1

    # Returns the complete proto.
    FULL = 2
  end
end