Class: Aws::DevOpsAgent::Types::GitLabDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::DevOpsAgent::Types::GitLabDetails
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-devopsagent/types.rb
Overview
Service details for GitLab integration.
Constant Summary collapse
- SENSITIVE =
[:token_value]
Instance Attribute Summary collapse
-
#group_id ⇒ String
Optional GitLab group ID for group-level access tokens.
-
#target_url ⇒ String
GitLab instance URL (e.g., gitlab.com or self-hosted instance).
-
#token_type ⇒ String
Type of GitLab access token.
-
#token_value ⇒ String
GitLab access token value.
Instance Attribute Details
#group_id ⇒ String
Optional GitLab group ID for group-level access tokens
1546 1547 1548 1549 1550 1551 1552 1553 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 1546 class GitLabDetails < Struct.new( :target_url, :token_type, :token_value, :group_id) SENSITIVE = [:token_value] include Aws::Structure end |
#target_url ⇒ String
GitLab instance URL (e.g., gitlab.com or self-hosted instance).
1546 1547 1548 1549 1550 1551 1552 1553 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 1546 class GitLabDetails < Struct.new( :target_url, :token_type, :token_value, :group_id) SENSITIVE = [:token_value] include Aws::Structure end |
#token_type ⇒ String
Type of GitLab access token
1546 1547 1548 1549 1550 1551 1552 1553 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 1546 class GitLabDetails < Struct.new( :target_url, :token_type, :token_value, :group_id) SENSITIVE = [:token_value] include Aws::Structure end |
#token_value ⇒ String
GitLab access token value
1546 1547 1548 1549 1550 1551 1552 1553 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 1546 class GitLabDetails < Struct.new( :target_url, :token_type, :token_value, :group_id) SENSITIVE = [:token_value] include Aws::Structure end |