Skip to content

Latest commit

 

History

History
50 lines (44 loc) · 2.07 KB

DynamicSecretCreateGitlab.md

File metadata and controls

50 lines (44 loc) · 2.07 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]
installation_organization String Gitlab project name, required for access-type=project [optional]
json Boolean Set output format to JSON [optional][default to false]
name String Dynamic secret name
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,
  installation_organization: null,
  json: null,
  name: null,
  tags: null,
  target_name: null,
  token: null,
  ttl: null,
  uid_token: null
)