Skip to content

Latest commit

 

History

History
56 lines (50 loc) · 2.71 KB

File metadata and controls

56 lines (50 loc) · 2.71 KB

Akeyless::DynamicSecretCreateGitlab

Properties

Name Type Description Notes
delete_protection String Protection from accidental deletion of this object [true/false] [optional]
description String Description of the object [optional]
gitlab_access_token String Gitlab access token [optional]
gitlab_access_type String Gitlab access token type [project,group]
gitlab_certificate String Gitlab tls certificate (base64 encoded) [optional]
gitlab_role String Gitlab role [optional]
gitlab_token_scopes String Comma-separated list of access token scopes to grant
gitlab_url String Gitlab base url [optional][default to 'https://gitlab.com/']
group_name String Gitlab group name, required for access-type=group [optional]
input_rule Array<String> Agentic input rule in name=...,rule=... format (e.g. name=rule1,rule=Sanitize input) Mirrors commands.AgenticRulesParams — kept separate because ResourceDS cannot embed it (different package, different struct layout). [optional]
installation_organization String Gitlab project name, required for access-type=project [optional]
item_custom_fields Hash<String, String> Additional custom fields to associate with the item [optional]
json Boolean Set output format to JSON [optional][default to false]
name String Dynamic secret name
output_rule Array<String> Agentic output rule in name=...,rule=... format (e.g. name=rule1,rule=Mask secrets) [optional]
tags Array<String> Add tags attached to this object [optional]
target_name String Target name [optional]
token String Authentication token (see `/auth` and `/configure`) [optional]
ttl String Access Token TTL [optional]
uid_token String The universal identity token, Required only for universal_identity authentication [optional]

Example

require 'akeyless'

instance = Akeyless::DynamicSecretCreateGitlab.new(
  delete_protection: null,
  description: null,
  gitlab_access_token: null,
  gitlab_access_type: null,
  gitlab_certificate: null,
  gitlab_role: null,
  gitlab_token_scopes: null,
  gitlab_url: null,
  group_name: null,
  input_rule: null,
  installation_organization: null,
  item_custom_fields: null,
  json: null,
  name: null,
  output_rule: null,
  tags: null,
  target_name: null,
  token: null,
  ttl: null,
  uid_token: null
)