Class: Google::Cloud::AIPlatform::V1::GoogleDriveSource::ResourceId
- Inherits:
-
Object
- Object
- Google::Cloud::AIPlatform::V1::GoogleDriveSource::ResourceId
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/aiplatform/v1/io.rb
Overview
The type and ID of the Google Drive resource.
Defined Under Namespace
Modules: ResourceType
Instance Attribute Summary collapse
-
#resource_id ⇒ ::String
Required.
-
#resource_type ⇒ ::Google::Cloud::AIPlatform::V1::GoogleDriveSource::ResourceId::ResourceType
Required.
Instance Attribute Details
#resource_id ⇒ ::String
Returns Required. The ID of the Google Drive resource.
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 |
# File 'proto_docs/google/cloud/aiplatform/v1/io.rb', line 148 class ResourceId include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The type of the Google Drive resource. module ResourceType # Unspecified resource type. RESOURCE_TYPE_UNSPECIFIED = 0 # File resource type. RESOURCE_TYPE_FILE = 1 # Folder resource type. RESOURCE_TYPE_FOLDER = 2 end end |
#resource_type ⇒ ::Google::Cloud::AIPlatform::V1::GoogleDriveSource::ResourceId::ResourceType
Returns Required. The type of the Google Drive resource.
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 |
# File 'proto_docs/google/cloud/aiplatform/v1/io.rb', line 148 class ResourceId include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The type of the Google Drive resource. module ResourceType # Unspecified resource type. RESOURCE_TYPE_UNSPECIFIED = 0 # File resource type. RESOURCE_TYPE_FILE = 1 # Folder resource type. RESOURCE_TYPE_FOLDER = 2 end end |