Class: Aws::DevOpsAgent::Types::GitLabConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::DevOpsAgent::Types::GitLabConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-devopsagent/types.rb
Overview
Configuration for GitLab project integration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#instance_identifier ⇒ String
GitLab instance identifier (e.g., gitlab.com or e2e.gamma.dev.us-east-1.gitlab.falco.ai.aws.dev).
-
#project_id ⇒ String
GitLab numeric project ID.
-
#project_path ⇒ String
Full GitLab project path (e.g., namespace/project-name).
Instance Attribute Details
#instance_identifier ⇒ String
GitLab instance identifier (e.g., gitlab.com or e2e.gamma.dev.us-east-1.gitlab.falco.ai.aws.dev)
2100 2101 2102 2103 2104 2105 2106 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 2100 class GitLabConfiguration < Struct.new( :project_id, :project_path, :instance_identifier) SENSITIVE = [] include Aws::Structure end |
#project_id ⇒ String
GitLab numeric project ID.
2100 2101 2102 2103 2104 2105 2106 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 2100 class GitLabConfiguration < Struct.new( :project_id, :project_path, :instance_identifier) SENSITIVE = [] include Aws::Structure end |
#project_path ⇒ String
Full GitLab project path (e.g., namespace/project-name).
2100 2101 2102 2103 2104 2105 2106 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 2100 class GitLabConfiguration < Struct.new( :project_id, :project_path, :instance_identifier) SENSITIVE = [] include Aws::Structure end |