Class: Aws::CodeCommit::Types::BlobMetadata
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::BlobMetadata
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecommit/types.rb
Overview
Returns information about a specific Git blob object.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#blob_id ⇒ String
The full ID of the blob.
-
#mode ⇒ String
The file mode permissions of the blob.
-
#path ⇒ String
The path to the blob and associated file name, if any.
Instance Attribute Details
#blob_id ⇒ String
The full ID of the blob.
775 776 777 778 779 780 781 |
# File 'lib/aws-sdk-codecommit/types.rb', line 775 class BlobMetadata < Struct.new( :blob_id, :path, :mode) SENSITIVE = [] include Aws::Structure end |
#mode ⇒ String
The file mode permissions of the blob. File mode permission codes include:
-
‘100644` indicates read/write
-
‘100755` indicates read/write/execute
-
‘160000` indicates a submodule
-
‘120000` indicates a symlink
775 776 777 778 779 780 781 |
# File 'lib/aws-sdk-codecommit/types.rb', line 775 class BlobMetadata < Struct.new( :blob_id, :path, :mode) SENSITIVE = [] include Aws::Structure end |
#path ⇒ String
The path to the blob and associated file name, if any.
775 776 777 778 779 780 781 |
# File 'lib/aws-sdk-codecommit/types.rb', line 775 class BlobMetadata < Struct.new( :blob_id, :path, :mode) SENSITIVE = [] include Aws::Structure end |