Class: Google::Cloud::Dataplex::V1::Asset::ResourceSpec

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

Overview

Identifies the cloud resource that is referenced by this asset.

Defined Under Namespace

Modules: Type

Instance Attribute Summary collapse

Instance Attribute Details

#name::String

Returns Immutable. Relative name of the cloud resource that contains the data that is being managed within a lake. For example: projects/{project_number}/buckets/{bucket_id} projects/{project_number}/datasets/{dataset_id}.

Returns:

  • (::String)

    Immutable. Relative name of the cloud resource that contains the data that is being managed within a lake. For example: projects/{project_number}/buckets/{bucket_id} projects/{project_number}/datasets/{dataset_id}



685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
# File 'proto_docs/google/cloud/dataplex/v1/resources.rb', line 685

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

  # Type of resource.
  module Type
    # Type not specified.
    TYPE_UNSPECIFIED = 0

    # Cloud Storage bucket.
    STORAGE_BUCKET = 1

    # BigQuery dataset.
    BIGQUERY_DATASET = 2
  end
end

#type::Google::Cloud::Dataplex::V1::Asset::ResourceSpec::Type

Returns Required. Immutable. Type of resource.

Returns:



685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
# File 'proto_docs/google/cloud/dataplex/v1/resources.rb', line 685

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

  # Type of resource.
  module Type
    # Type not specified.
    TYPE_UNSPECIFIED = 0

    # Cloud Storage bucket.
    STORAGE_BUCKET = 1

    # BigQuery dataset.
    BIGQUERY_DATASET = 2
  end
end