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.
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 any associated file name, if any.
Instance Attribute Details
#blob_id ⇒ String
The full ID of the blob.
76 77 78 79 80 81 |
# File 'lib/aws-sdk-codecommit/types.rb', line 76 class BlobMetadata < Struct.new( :blob_id, :path, :mode) 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
76 77 78 79 80 81 |
# File 'lib/aws-sdk-codecommit/types.rb', line 76 class BlobMetadata < Struct.new( :blob_id, :path, :mode) include Aws::Structure end |
#path ⇒ String
The path to the blob and any associated file name, if any.
76 77 78 79 80 81 |
# File 'lib/aws-sdk-codecommit/types.rb', line 76 class BlobMetadata < Struct.new( :blob_id, :path, :mode) include Aws::Structure end |