akeyless 3.1.2 → 3.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (42) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +12 -1
  3. data/docs/CreatePingTarget.md +38 -0
  4. data/docs/CreatePingTargetOutput.md +18 -0
  5. data/docs/CreateRotatedSecret.md +2 -0
  6. data/docs/DSProducerDetails.md +40 -0
  7. data/docs/GatewayCreateProducerPing.md +66 -0
  8. data/docs/GatewayCreateProducerPingOutput.md +18 -0
  9. data/docs/GatewayUpdateProducerPing.md +68 -0
  10. data/docs/GatewayUpdateProducerPingOutput.md +18 -0
  11. data/docs/GetKubeExecCreds.md +5 -3
  12. data/docs/GetPKICertificate.md +5 -3
  13. data/docs/SecureRemoteAccess.md +2 -0
  14. data/docs/TargetTypeDetailsInput.md +10 -0
  15. data/docs/UpdatePingTarget.md +44 -0
  16. data/docs/UpdateRotatedSecret.md +2 -0
  17. data/docs/V2Api.md +252 -0
  18. data/lib/akeyless/api/v2_api.rb +256 -0
  19. data/lib/akeyless/models/create_ping_target.rb +329 -0
  20. data/lib/akeyless/models/create_ping_target_output.rb +219 -0
  21. data/lib/akeyless/models/create_rotated_secret.rb +13 -1
  22. data/lib/akeyless/models/ds_producer_details.rb +196 -1
  23. data/lib/akeyless/models/gateway_create_producer_ping.rb +482 -0
  24. data/lib/akeyless/models/gateway_create_producer_ping_output.rb +219 -0
  25. data/lib/akeyless/models/gateway_update_producer_ping.rb +492 -0
  26. data/lib/akeyless/models/gateway_update_producer_ping_output.rb +219 -0
  27. data/lib/akeyless/models/get_kube_exec_creds.rb +14 -4
  28. data/lib/akeyless/models/get_pki_certificate.rb +14 -4
  29. data/lib/akeyless/models/secure_remote_access.rb +10 -1
  30. data/lib/akeyless/models/target_type_details_input.rb +46 -1
  31. data/lib/akeyless/models/update_ping_target.rb +358 -0
  32. data/lib/akeyless/models/update_rotated_secret.rb +13 -1
  33. data/lib/akeyless/version.rb +1 -1
  34. data/lib/akeyless.rb +7 -0
  35. data/spec/models/create_ping_target_output_spec.rb +34 -0
  36. data/spec/models/create_ping_target_spec.rb +94 -0
  37. data/spec/models/gateway_create_producer_ping_output_spec.rb +34 -0
  38. data/spec/models/gateway_create_producer_ping_spec.rb +178 -0
  39. data/spec/models/gateway_update_producer_ping_output_spec.rb +34 -0
  40. data/spec/models/gateway_update_producer_ping_spec.rb +184 -0
  41. data/spec/models/update_ping_target_spec.rb +112 -0
  42. metadata +590 -562
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e56a2468cbada14cb2e44fbb336e859b031de7455d693660bc48b528cae0bcf7
4
- data.tar.gz: 88ed448409ec1ac0360cac27981d8ef5b3f841aad4c5e7c90646c4e5414a4f7f
3
+ metadata.gz: 673b135cdba764067c05908a6e24515b5d0b77bd1001ec6281730d8afad9ed3d
4
+ data.tar.gz: 4062f7829c0f866f64ff80e5e6d55de3f6c44d59553f80975305583cb007e7b3
5
5
  SHA512:
6
- metadata.gz: fc015d3d3155716a0b5909b67765dc9d74a9870b665b79c6de24add1a45a31d81a5f7647b9c582949a2749fbb1203ed472857ae403b7150d2ff32e900f6a5765
7
- data.tar.gz: 4b4ed50ffbb2338c1e0e1f824dfdaa0e2fc0a271fc63651cfb1dca58234ff2d36ddea25c62e8b018c41eb543b775f555515799b38ca2b780e39c5f1b59b0e68f
6
+ metadata.gz: dc23c4d61a8c735801f659c4dcf5ab86b849ab530b9ff70a32ece6b6cd0e1b4151a7529e01ceb74f6779d5e68ef8824cd36cc636a11abf4b189dc60e6ea404ef
7
+ data.tar.gz: 966dc3a0194e456b1d1415508868045d278eca25c78473932281b15fb64a8e1f62e079940b60b83ae07c086249fbdf08677b31f0e48f6451655992d883632a08
data/README.md CHANGED
@@ -7,7 +7,7 @@ The purpose of this application is to provide access to Akeyless API.
7
7
  This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
8
8
 
9
9
  - API version: 2.0
10
- - Package version: 3.1.2
10
+ - Package version: 3.2.0
11
11
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
12
12
  For more information, please visit [http://akeyless.io](http://akeyless.io)
13
13
 
@@ -92,6 +92,7 @@ Class | Method | HTTP request | Description
92
92
  *Akeyless::V2Api* | [**create_gke_target**](docs/V2Api.md#create_gke_target) | **POST** /create-gke-target |
93
93
  *Akeyless::V2Api* | [**create_key**](docs/V2Api.md#create_key) | **POST** /create-key |
94
94
  *Akeyless::V2Api* | [**create_native_k8_s_target**](docs/V2Api.md#create_native_k8_s_target) | **POST** /create-k8s-target |
95
+ *Akeyless::V2Api* | [**create_ping_target**](docs/V2Api.md#create_ping_target) | **POST** /create-ping-target |
95
96
  *Akeyless::V2Api* | [**create_pki_cert_issuer**](docs/V2Api.md#create_pki_cert_issuer) | **POST** /create-pki-cert-issuer |
96
97
  *Akeyless::V2Api* | [**create_rabbit_mq_target**](docs/V2Api.md#create_rabbit_mq_target) | **POST** /create-rabbitmq-target |
97
98
  *Akeyless::V2Api* | [**create_role**](docs/V2Api.md#create_role) | **POST** /create-role |
@@ -147,6 +148,7 @@ Class | Method | HTTP request | Description
147
148
  *Akeyless::V2Api* | [**gateway_create_producer_my_sql**](docs/V2Api.md#gateway_create_producer_my_sql) | **POST** /gateway-create-producer-mysql |
148
149
  *Akeyless::V2Api* | [**gateway_create_producer_native_k8_s**](docs/V2Api.md#gateway_create_producer_native_k8_s) | **POST** /gateway-create-producer-k8s |
149
150
  *Akeyless::V2Api* | [**gateway_create_producer_oracle_db**](docs/V2Api.md#gateway_create_producer_oracle_db) | **POST** /gateway-create-producer-oracle |
151
+ *Akeyless::V2Api* | [**gateway_create_producer_ping**](docs/V2Api.md#gateway_create_producer_ping) | **POST** /gateway-create-producer-ping |
150
152
  *Akeyless::V2Api* | [**gateway_create_producer_postgre_sql**](docs/V2Api.md#gateway_create_producer_postgre_sql) | **POST** /gateway-create-producer-postgresql |
151
153
  *Akeyless::V2Api* | [**gateway_create_producer_rabbit_mq**](docs/V2Api.md#gateway_create_producer_rabbit_mq) | **POST** /gateway-create-producer-rabbitmq |
152
154
  *Akeyless::V2Api* | [**gateway_create_producer_rdp**](docs/V2Api.md#gateway_create_producer_rdp) | **POST** /gateway-create-producer-rdp |
@@ -193,6 +195,7 @@ Class | Method | HTTP request | Description
193
195
  *Akeyless::V2Api* | [**gateway_update_producer_my_sql**](docs/V2Api.md#gateway_update_producer_my_sql) | **POST** /gateway-update-producer-mysql |
194
196
  *Akeyless::V2Api* | [**gateway_update_producer_native_k8_s**](docs/V2Api.md#gateway_update_producer_native_k8_s) | **POST** /gateway-update-producer-k8s |
195
197
  *Akeyless::V2Api* | [**gateway_update_producer_oracle_db**](docs/V2Api.md#gateway_update_producer_oracle_db) | **POST** /gateway-update-producer-oracle |
198
+ *Akeyless::V2Api* | [**gateway_update_producer_ping**](docs/V2Api.md#gateway_update_producer_ping) | **POST** /gateway-update-producer-ping |
196
199
  *Akeyless::V2Api* | [**gateway_update_producer_postgre_sql**](docs/V2Api.md#gateway_update_producer_postgre_sql) | **POST** /gateway-update-producer-postgresql |
197
200
  *Akeyless::V2Api* | [**gateway_update_producer_rabbit_mq**](docs/V2Api.md#gateway_update_producer_rabbit_mq) | **POST** /gateway-update-producer-rabbitmq |
198
201
  *Akeyless::V2Api* | [**gateway_update_producer_rdp**](docs/V2Api.md#gateway_update_producer_rdp) | **POST** /gateway-update-producer-rdp |
@@ -289,6 +292,7 @@ Class | Method | HTTP request | Description
289
292
  *Akeyless::V2Api* | [**update_ldap_target**](docs/V2Api.md#update_ldap_target) | **POST** /update-ldap-target |
290
293
  *Akeyless::V2Api* | [**update_ldap_target_details**](docs/V2Api.md#update_ldap_target_details) | **POST** /update-ldap-target-details |
291
294
  *Akeyless::V2Api* | [**update_native_k8_s_target**](docs/V2Api.md#update_native_k8_s_target) | **POST** /update-k8s-target |
295
+ *Akeyless::V2Api* | [**update_ping_target**](docs/V2Api.md#update_ping_target) | **POST** /update-ping-target |
292
296
  *Akeyless::V2Api* | [**update_pki_cert_issuer**](docs/V2Api.md#update_pki_cert_issuer) | **POST** /update-pki-cert-issuer |
293
297
  *Akeyless::V2Api* | [**update_rabbit_mq_target**](docs/V2Api.md#update_rabbit_mq_target) | **POST** /update-rabbitmq-target |
294
298
  *Akeyless::V2Api* | [**update_rabbit_mq_target_details**](docs/V2Api.md#update_rabbit_mq_target_details) | **POST** /update-rabbitmq-target-details |
@@ -416,6 +420,8 @@ Class | Method | HTTP request | Description
416
420
  - [Akeyless::CreateNativeK8STargetOutput](docs/CreateNativeK8STargetOutput.md)
417
421
  - [Akeyless::CreatePKICertIssuer](docs/CreatePKICertIssuer.md)
418
422
  - [Akeyless::CreatePKICertIssuerOutput](docs/CreatePKICertIssuerOutput.md)
423
+ - [Akeyless::CreatePingTarget](docs/CreatePingTarget.md)
424
+ - [Akeyless::CreatePingTargetOutput](docs/CreatePingTargetOutput.md)
419
425
  - [Akeyless::CreateRabbitMQTarget](docs/CreateRabbitMQTarget.md)
420
426
  - [Akeyless::CreateRabbitMQTargetOutput](docs/CreateRabbitMQTargetOutput.md)
421
427
  - [Akeyless::CreateRole](docs/CreateRole.md)
@@ -537,6 +543,8 @@ Class | Method | HTTP request | Description
537
543
  - [Akeyless::GatewayCreateProducerNativeK8SOutput](docs/GatewayCreateProducerNativeK8SOutput.md)
538
544
  - [Akeyless::GatewayCreateProducerOracleDb](docs/GatewayCreateProducerOracleDb.md)
539
545
  - [Akeyless::GatewayCreateProducerOracleDbOutput](docs/GatewayCreateProducerOracleDbOutput.md)
546
+ - [Akeyless::GatewayCreateProducerPing](docs/GatewayCreateProducerPing.md)
547
+ - [Akeyless::GatewayCreateProducerPingOutput](docs/GatewayCreateProducerPingOutput.md)
540
548
  - [Akeyless::GatewayCreateProducerPostgreSQL](docs/GatewayCreateProducerPostgreSQL.md)
541
549
  - [Akeyless::GatewayCreateProducerPostgreSQLOutput](docs/GatewayCreateProducerPostgreSQLOutput.md)
542
550
  - [Akeyless::GatewayCreateProducerRabbitMQ](docs/GatewayCreateProducerRabbitMQ.md)
@@ -625,6 +633,8 @@ Class | Method | HTTP request | Description
625
633
  - [Akeyless::GatewayUpdateProducerNativeK8SOutput](docs/GatewayUpdateProducerNativeK8SOutput.md)
626
634
  - [Akeyless::GatewayUpdateProducerOracleDb](docs/GatewayUpdateProducerOracleDb.md)
627
635
  - [Akeyless::GatewayUpdateProducerOracleDbOutput](docs/GatewayUpdateProducerOracleDbOutput.md)
636
+ - [Akeyless::GatewayUpdateProducerPing](docs/GatewayUpdateProducerPing.md)
637
+ - [Akeyless::GatewayUpdateProducerPingOutput](docs/GatewayUpdateProducerPingOutput.md)
628
638
  - [Akeyless::GatewayUpdateProducerPostgreSQL](docs/GatewayUpdateProducerPostgreSQL.md)
629
639
  - [Akeyless::GatewayUpdateProducerPostgreSQLOutput](docs/GatewayUpdateProducerPostgreSQLOutput.md)
630
640
  - [Akeyless::GatewayUpdateProducerRabbitMQ](docs/GatewayUpdateProducerRabbitMQ.md)
@@ -868,6 +878,7 @@ Class | Method | HTTP request | Description
868
878
  - [Akeyless::UpdateOutput](docs/UpdateOutput.md)
869
879
  - [Akeyless::UpdatePKICertIssuer](docs/UpdatePKICertIssuer.md)
870
880
  - [Akeyless::UpdatePKICertIssuerOutput](docs/UpdatePKICertIssuerOutput.md)
881
+ - [Akeyless::UpdatePingTarget](docs/UpdatePingTarget.md)
871
882
  - [Akeyless::UpdateRDPTargetDetails](docs/UpdateRDPTargetDetails.md)
872
883
  - [Akeyless::UpdateRabbitMQTarget](docs/UpdateRabbitMQTarget.md)
873
884
  - [Akeyless::UpdateRabbitMQTargetDetails](docs/UpdateRabbitMQTargetDetails.md)
@@ -0,0 +1,38 @@
1
+ # Akeyless::CreatePingTarget
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **administrative_port** | **String** | Ping Federate administrative port | [optional][default to '9999'] |
8
+ | **authorization_port** | **String** | Ping Federate authorization port | [optional][default to '9031'] |
9
+ | **comment** | **String** | Comment about the target | [optional] |
10
+ | **json** | **Boolean** | Set output format to JSON | [optional] |
11
+ | **key** | **String** | The name of a key that used to encrypt the target secret value (if empty, the account default protectionKey key will be used) | [optional] |
12
+ | **name** | **String** | Target name | |
13
+ | **password** | **String** | Ping Federate privileged user password | [optional] |
14
+ | **ping_url** | **String** | Ping URL | [optional] |
15
+ | **privileged_user** | **String** | Ping Federate privileged user | [optional] |
16
+ | **token** | **String** | Authentication token (see `/auth` and `/configure`) | [optional] |
17
+ | **uid_token** | **String** | The universal identity token, Required only for universal_identity authentication | [optional] |
18
+
19
+ ## Example
20
+
21
+ ```ruby
22
+ require 'akeyless'
23
+
24
+ instance = Akeyless::CreatePingTarget.new(
25
+ administrative_port: null,
26
+ authorization_port: null,
27
+ comment: null,
28
+ json: null,
29
+ key: null,
30
+ name: null,
31
+ password: null,
32
+ ping_url: null,
33
+ privileged_user: null,
34
+ token: null,
35
+ uid_token: null
36
+ )
37
+ ```
38
+
@@ -0,0 +1,18 @@
1
+ # Akeyless::CreatePingTargetOutput
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **target_id** | **Integer** | | [optional] |
8
+
9
+ ## Example
10
+
11
+ ```ruby
12
+ require 'akeyless'
13
+
14
+ instance = Akeyless::CreatePingTargetOutput.new(
15
+ target_id: null
16
+ )
17
+ ```
18
+
@@ -18,6 +18,7 @@
18
18
  | **key** | **String** | The name of a key that used to encrypt the secret value (if empty, the account default protectionKey key will be used) | [optional] |
19
19
  | **metadata** | **String** | Deprecated - use description | [optional] |
20
20
  | **name** | **String** | Secret name | |
21
+ | **rotate_after_disconnect** | **String** | Rotate the value of the secret after SRA session ends | [optional][default to 'false'] |
21
22
  | **rotated_password** | **String** | | [optional] |
22
23
  | **rotated_username** | **String** | | [optional] |
23
24
  | **rotation_hour** | **Integer** | | [optional] |
@@ -68,6 +69,7 @@ instance = Akeyless::CreateRotatedSecret.new(
68
69
  key: null,
69
70
  metadata: null,
70
71
  name: null,
72
+ rotate_after_disconnect: null,
71
73
  rotated_password: null,
72
74
  rotated_username: null,
73
75
  rotation_hour: null,
@@ -4,15 +4,18 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
+ | **access_token_manager_id** | **String** | | [optional] |
7
8
  | **active** | **Boolean** | | [optional] |
8
9
  | **admin_name** | **String** | | [optional] |
9
10
  | **admin_pwd** | **String** | | [optional] |
10
11
  | **admin_rotation_interval_days** | **Integer** | | [optional] |
12
+ | **administrative_port** | **String** | | [optional] |
11
13
  | **artifactory_admin_apikey** | **String** | | [optional] |
12
14
  | **artifactory_admin_username** | **String** | | [optional] |
13
15
  | **artifactory_base_url** | **String** | | [optional] |
14
16
  | **artifactory_token_audience** | **String** | | [optional] |
15
17
  | **artifactory_token_scope** | **String** | | [optional] |
18
+ | **authorization_port** | **String** | | [optional] |
16
19
  | **aws_access_key_id** | **String** | | [optional] |
17
20
  | **aws_access_mode** | **String** | | [optional] |
18
21
  | **aws_region** | **String** | | [optional] |
@@ -45,6 +48,7 @@
45
48
  | **chef_server_url** | **String** | | [optional] |
46
49
  | **chef_server_username** | **String** | | [optional] |
47
50
  | **chef_skip_ssl** | **Boolean** | | [optional] |
51
+ | **client_authentication_type** | **String** | | [optional] |
48
52
  | **create_sync_url** | **String** | | [optional] |
49
53
  | **db_host_name** | **String** | | [optional] |
50
54
  | **db_isolation_level** | **String** | | [optional] |
@@ -71,6 +75,7 @@
71
75
  | **eks_region** | **String** | | [optional] |
72
76
  | **eks_secret_access_key** | **String** | | [optional] |
73
77
  | **enable_admin_rotation** | **Boolean** | | [optional] |
78
+ | **enforce_replay_prevention** | **Boolean** | relevant for PRIVATE_KEY_JWT client authentication type | [optional] |
74
79
  | **externally_provided_user** | **String** | | [optional] |
75
80
  | **failure_message** | **String** | | [optional] |
76
81
  | **fixed_user_only** | **String** | | [optional] |
@@ -96,6 +101,7 @@
96
101
  | **gke_cluster_name** | **String** | | [optional] |
97
102
  | **gke_service_account_key** | **String** | | [optional] |
98
103
  | **gke_service_account_name** | **String** | | [optional] |
104
+ | **grant_types** | **Array<String>** | | [optional] |
99
105
  | **groups** | **String** | | [optional] |
100
106
  | **hanadb_creation_statements** | **String** | | [optional] |
101
107
  | **hanadb_revocation_statements** | **String** | | [optional] |
@@ -103,14 +109,21 @@
103
109
  | **host_port** | **String** | | [optional] |
104
110
  | **implementation_type** | **String** | | [optional] |
105
111
  | **is_fixed_user** | **String** | | [optional] |
112
+ | **issuer** | **String** | relevant for CLIENT_TLS_CERTIFICATE client authentication type | [optional] |
106
113
  | **item_targets_assoc** | [**Array<ItemTargetAssociation>**](ItemTargetAssociation.md) | | [optional] |
114
+ | **jwks** | **String** | | [optional] |
115
+ | **jwks_url** | **String** | | [optional] |
107
116
  | **k8s_allowed_namespaces** | **String** | comma-separated list of allowed namespaces. Can hold just * which signifies that any namespace is allowed | [optional] |
108
117
  | **k8s_bearer_token** | **String** | | [optional] |
109
118
  | **k8s_cluster_ca_certificate** | **String** | | [optional] |
110
119
  | **k8s_cluster_endpoint** | **String** | | [optional] |
111
120
  | **k8s_dynamic_mode** | **Boolean** | when native k8s is in dynamic mode, user can define allowed namespaces, K8sServiceAccount doesn't exist from the start and will only be created at time of getting dynamic secret value By default dynamic mode is false and producer behaves like it did before | [optional] |
112
121
  | **k8s_namespace** | **String** | | [optional] |
122
+ | **k8s_role_name** | **String** | Name of the pre-existing Role or ClusterRole to bind a generated service account to. | [optional] |
123
+ | **k8s_role_type** | **String** | | [optional] |
113
124
  | **k8s_service_account** | **String** | | [optional] |
125
+ | **k8s_temp_role_binding_definition** | **Array<Integer>** | Yaml/Json definition of temporary role binding that will be created and deleted when TTL is due. Must have as subject name of Service Account specified in K8sServiceAccount field | [optional] |
126
+ | **k8s_temp_role_definition** | **Array<Integer>** | Yaml/Json definition of temporary role that will be created and deleted when TTL is due | [optional] |
114
127
  | **last_admin_rotation** | **Integer** | | [optional] |
115
128
  | **ldap_audience** | **String** | | [optional] |
116
129
  | **ldap_bind_dn** | **String** | | [optional] |
@@ -142,8 +155,10 @@
142
155
  | **password_length** | **Integer** | | [optional] |
143
156
  | **password_policy** | **String** | | [optional] |
144
157
  | **payload** | **String** | | [optional] |
158
+ | **ping_url** | **String** | | [optional] |
145
159
  | **postgres_creation_statements** | **String** | | [optional] |
146
160
  | **postgres_revocation_statements** | **String** | | [optional] |
161
+ | **privileged_user** | **String** | | [optional] |
147
162
  | **rabbitmq_server_password** | **String** | | [optional] |
148
163
  | **rabbitmq_server_uri** | **String** | | [optional] |
149
164
  | **rabbitmq_server_user** | **String** | | [optional] |
@@ -152,7 +167,9 @@
152
167
  | **rabbitmq_user_tags** | **String** | | [optional] |
153
168
  | **rabbitmq_user_vhost** | **String** | | [optional] |
154
169
  | **rabbitmq_user_write_permission** | **String** | | [optional] |
170
+ | **redirect_uris** | **Array<String>** | | [optional] |
155
171
  | **redshift_creation_statements** | **String** | | [optional] |
172
+ | **restricted_scopes** | **Array<String>** | | [optional] |
156
173
  | **revoke_sync_url** | **String** | | [optional] |
157
174
  | **rotate_sync_url** | **String** | | [optional] |
158
175
  | **scopes** | **Array<String>** | | [optional] |
@@ -162,12 +179,15 @@
162
179
  | **sf_user_role** | **String** | generated users info | [optional] |
163
180
  | **sf_warehouse_name** | **String** | | [optional] |
164
181
  | **should_stop** | **String** | TODO delete this after migration | [optional] |
182
+ | **signing_algorithm** | **String** | | [optional] |
165
183
  | **ssl_connection_certificate** | **String** | (Optional) SSLConnectionCertificate defines the certificate for SSL connection. Must be base64 certificate loaded by UI using file loader field | [optional] |
166
184
  | **ssl_connection_mode** | **Boolean** | (Optional) SSLConnectionMode defines if SSL mode will be used to connect to DB | [optional] |
185
+ | **subject_dn** | **String** | | [optional] |
167
186
  | **tags** | **Array<String>** | | [optional] |
168
187
  | **timeout_seconds** | **Integer** | | [optional] |
169
188
  | **use_gw_cloud_identity** | **Boolean** | | [optional] |
170
189
  | **user_name** | **String** | | [optional] |
190
+ | **user_password** | **String** | | [optional] |
171
191
  | **user_principal_name** | **String** | | [optional] |
172
192
  | **user_ttl** | **String** | | [optional] |
173
193
  | **username_length** | **Integer** | | [optional] |
@@ -193,15 +213,18 @@
193
213
  require 'akeyless'
194
214
 
195
215
  instance = Akeyless::DSProducerDetails.new(
216
+ access_token_manager_id: null,
196
217
  active: null,
197
218
  admin_name: null,
198
219
  admin_pwd: null,
199
220
  admin_rotation_interval_days: null,
221
+ administrative_port: null,
200
222
  artifactory_admin_apikey: null,
201
223
  artifactory_admin_username: null,
202
224
  artifactory_base_url: null,
203
225
  artifactory_token_audience: null,
204
226
  artifactory_token_scope: null,
227
+ authorization_port: null,
205
228
  aws_access_key_id: null,
206
229
  aws_access_mode: null,
207
230
  aws_region: null,
@@ -234,6 +257,7 @@ instance = Akeyless::DSProducerDetails.new(
234
257
  chef_server_url: null,
235
258
  chef_server_username: null,
236
259
  chef_skip_ssl: null,
260
+ client_authentication_type: null,
237
261
  create_sync_url: null,
238
262
  db_host_name: null,
239
263
  db_isolation_level: null,
@@ -260,6 +284,7 @@ instance = Akeyless::DSProducerDetails.new(
260
284
  eks_region: null,
261
285
  eks_secret_access_key: null,
262
286
  enable_admin_rotation: null,
287
+ enforce_replay_prevention: null,
263
288
  externally_provided_user: null,
264
289
  failure_message: null,
265
290
  fixed_user_only: null,
@@ -285,6 +310,7 @@ instance = Akeyless::DSProducerDetails.new(
285
310
  gke_cluster_name: null,
286
311
  gke_service_account_key: null,
287
312
  gke_service_account_name: null,
313
+ grant_types: null,
288
314
  groups: null,
289
315
  hanadb_creation_statements: null,
290
316
  hanadb_revocation_statements: null,
@@ -292,14 +318,21 @@ instance = Akeyless::DSProducerDetails.new(
292
318
  host_port: null,
293
319
  implementation_type: null,
294
320
  is_fixed_user: null,
321
+ issuer: null,
295
322
  item_targets_assoc: null,
323
+ jwks: null,
324
+ jwks_url: null,
296
325
  k8s_allowed_namespaces: null,
297
326
  k8s_bearer_token: null,
298
327
  k8s_cluster_ca_certificate: null,
299
328
  k8s_cluster_endpoint: null,
300
329
  k8s_dynamic_mode: null,
301
330
  k8s_namespace: null,
331
+ k8s_role_name: null,
332
+ k8s_role_type: null,
302
333
  k8s_service_account: null,
334
+ k8s_temp_role_binding_definition: null,
335
+ k8s_temp_role_definition: null,
303
336
  last_admin_rotation: null,
304
337
  ldap_audience: null,
305
338
  ldap_bind_dn: null,
@@ -331,8 +364,10 @@ instance = Akeyless::DSProducerDetails.new(
331
364
  password_length: null,
332
365
  password_policy: null,
333
366
  payload: null,
367
+ ping_url: null,
334
368
  postgres_creation_statements: null,
335
369
  postgres_revocation_statements: null,
370
+ privileged_user: null,
336
371
  rabbitmq_server_password: null,
337
372
  rabbitmq_server_uri: null,
338
373
  rabbitmq_server_user: null,
@@ -341,7 +376,9 @@ instance = Akeyless::DSProducerDetails.new(
341
376
  rabbitmq_user_tags: null,
342
377
  rabbitmq_user_vhost: null,
343
378
  rabbitmq_user_write_permission: null,
379
+ redirect_uris: null,
344
380
  redshift_creation_statements: null,
381
+ restricted_scopes: null,
345
382
  revoke_sync_url: null,
346
383
  rotate_sync_url: null,
347
384
  scopes: null,
@@ -351,12 +388,15 @@ instance = Akeyless::DSProducerDetails.new(
351
388
  sf_user_role: null,
352
389
  sf_warehouse_name: null,
353
390
  should_stop: null,
391
+ signing_algorithm: null,
354
392
  ssl_connection_certificate: null,
355
393
  ssl_connection_mode: null,
394
+ subject_dn: null,
356
395
  tags: null,
357
396
  timeout_seconds: null,
358
397
  use_gw_cloud_identity: null,
359
398
  user_name: null,
399
+ user_password: null,
360
400
  user_principal_name: null,
361
401
  user_ttl: null,
362
402
  username_length: null,
@@ -0,0 +1,66 @@
1
+ # Akeyless::GatewayCreateProducerPing
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **delete_protection** | **String** | Protection from accidental deletion of this item | [optional] |
8
+ | **json** | **Boolean** | Set output format to JSON | [optional] |
9
+ | **name** | **String** | Producer name | |
10
+ | **ping_administrative_port** | **String** | Ping Federate administrative port | [optional][default to '9999'] |
11
+ | **ping_atm_id** | **String** | Set a specific Access Token Management (ATM) instance for the created OAuth Client by providing the ATM Id. If no explicit value is given, the default pingfederate server ATM will be set. | [optional] |
12
+ | **ping_authorization_port** | **String** | Ping Federate authorization port | [optional][default to '9031'] |
13
+ | **ping_cert_subject_dn** | **String** | The subject DN of the client certificate. If no explicit value is given, the producer will create CA certificate and matched client certificate and return it as value. Used in conjunction with ping-issuer-dn (relevant for CLIENT_TLS_CERTIFICATE authentication method) | [optional] |
14
+ | **ping_client_authentication_type** | **String** | OAuth Client Authentication Type [CLIENT_SECRET, PRIVATE_KEY_JWT, CLIENT_TLS_CERTIFICATE] | [optional][default to 'CLIENT_SECRET'] |
15
+ | **ping_enforce_replay_prevention** | **String** | Determines whether PingFederate requires a unique signed JWT from the client for each action (relevant for PRIVATE_KEY_JWT authentication method) | [optional] |
16
+ | **ping_grant_types** | **Array<String>** | List of OAuth client grant types [IMPLICIT, AUTHORIZATION_CODE, CLIENT_CREDENTIALS, TOKEN_EXCHANGE, REFRESH_TOKEN, ASSERTION_GRANTS, PASSWORD, RESOURCE_OWNER_CREDENTIALS]. If no explicit value is given, AUTHORIZATION_CODE will be selected as default. | [optional] |
17
+ | **ping_issuer_dn** | **String** | Issuer DN of trusted CA certificate that imported into Ping Federate server. You may select \\\"Trust Any\\\" to trust all the existing issuers in Ping Federate server. Used in conjunction with ping-cert-subject-dn (relevant for CLIENT_TLS_CERTIFICATE authentication method) | [optional] |
18
+ | **ping_jwks** | **String** | Base64-encoded JSON Web Key Set (JWKS). If no explicit value is given, the producer will create JWKs and matched signed JWT (Sign Algo: RS256) and return it as value (relevant for PRIVATE_KEY_JWT authentication method) | [optional] |
19
+ | **ping_jwks_url** | **String** | The URL of the JSON Web Key Set (JWKS). If no explicit value is given, the producer will create JWKs and matched signed JWT and return it as value (relevant for PRIVATE_KEY_JWT authentication method) | [optional] |
20
+ | **ping_password** | **String** | Ping Federate privileged user password | [optional] |
21
+ | **ping_privileged_user** | **String** | Ping Federate privileged user | [optional] |
22
+ | **ping_redirect_uris** | **Array<String>** | List of URIs to which the OAuth authorization server may redirect the resource owner's user agent after authorization is obtained. At least one redirection URI is required for the AUTHORIZATION_CODE and IMPLICIT grant types. | [optional] |
23
+ | **ping_restricted_scopes** | **Array<String>** | Limit the OAuth client to specific scopes list | [optional] |
24
+ | **ping_signing_algo** | **String** | The signing algorithm that the client must use to sign its request objects [RS256,RS384,RS512,ES256,ES384,ES512,PS256,PS384,PS512] If no explicit value is given, the client can use any of the supported signing algorithms (relevant for PRIVATE_KEY_JWT authentication method) | [optional] |
25
+ | **ping_url** | **String** | Ping URL | [optional] |
26
+ | **producer_encryption_key_name** | **String** | Dynamic producer encryption key | [optional] |
27
+ | **tags** | **Array<String>** | List of the tags attached to this secret | [optional] |
28
+ | **target_name** | **String** | Target name | [optional] |
29
+ | **token** | **String** | Authentication token (see `/auth` and `/configure`) | [optional] |
30
+ | **uid_token** | **String** | The universal identity token, Required only for universal_identity authentication | [optional] |
31
+ | **user_ttl** | **String** | The time from dynamic secret creation to expiration. | [optional][default to '60m'] |
32
+
33
+ ## Example
34
+
35
+ ```ruby
36
+ require 'akeyless'
37
+
38
+ instance = Akeyless::GatewayCreateProducerPing.new(
39
+ delete_protection: null,
40
+ json: null,
41
+ name: null,
42
+ ping_administrative_port: null,
43
+ ping_atm_id: null,
44
+ ping_authorization_port: null,
45
+ ping_cert_subject_dn: null,
46
+ ping_client_authentication_type: null,
47
+ ping_enforce_replay_prevention: null,
48
+ ping_grant_types: null,
49
+ ping_issuer_dn: null,
50
+ ping_jwks: null,
51
+ ping_jwks_url: null,
52
+ ping_password: null,
53
+ ping_privileged_user: null,
54
+ ping_redirect_uris: null,
55
+ ping_restricted_scopes: null,
56
+ ping_signing_algo: null,
57
+ ping_url: null,
58
+ producer_encryption_key_name: null,
59
+ tags: null,
60
+ target_name: null,
61
+ token: null,
62
+ uid_token: null,
63
+ user_ttl: null
64
+ )
65
+ ```
66
+
@@ -0,0 +1,18 @@
1
+ # Akeyless::GatewayCreateProducerPingOutput
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **producer_details** | [**DSProducerDetails**](DSProducerDetails.md) | | [optional] |
8
+
9
+ ## Example
10
+
11
+ ```ruby
12
+ require 'akeyless'
13
+
14
+ instance = Akeyless::GatewayCreateProducerPingOutput.new(
15
+ producer_details: null
16
+ )
17
+ ```
18
+
@@ -0,0 +1,68 @@
1
+ # Akeyless::GatewayUpdateProducerPing
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **delete_protection** | **String** | Protection from accidental deletion of this item | [optional] |
8
+ | **json** | **Boolean** | Set output format to JSON | [optional] |
9
+ | **name** | **String** | Producer name | |
10
+ | **new_name** | **String** | Producer New name | [optional] |
11
+ | **ping_administrative_port** | **String** | Ping Federate administrative port | [optional][default to '9999'] |
12
+ | **ping_atm_id** | **String** | Set a specific Access Token Management (ATM) instance for the created OAuth Client by providing the ATM Id. If no explicit value is given, the default pingfederate server ATM will be set. | [optional] |
13
+ | **ping_authorization_port** | **String** | Ping Federate authorization port | [optional][default to '9031'] |
14
+ | **ping_cert_subject_dn** | **String** | The subject DN of the client certificate. If no explicit value is given, the producer will create CA certificate and matched client certificate and return it as value. Used in conjunction with ping-issuer-dn (relevant for CLIENT_TLS_CERTIFICATE authentication method) | [optional] |
15
+ | **ping_client_authentication_type** | **String** | OAuth Client Authentication Type [CLIENT_SECRET, PRIVATE_KEY_JWT, CLIENT_TLS_CERTIFICATE] | [optional][default to 'CLIENT_SECRET'] |
16
+ | **ping_enforce_replay_prevention** | **String** | Determines whether PingFederate requires a unique signed JWT from the client for each action (relevant for PRIVATE_KEY_JWT authentication method) | [optional] |
17
+ | **ping_grant_types** | **Array<String>** | List of OAuth client grant types [IMPLICIT, AUTHORIZATION_CODE, CLIENT_CREDENTIALS, TOKEN_EXCHANGE, REFRESH_TOKEN, ASSERTION_GRANTS, PASSWORD, RESOURCE_OWNER_CREDENTIALS]. If no explicit value is given, AUTHORIZATION_CODE will be selected as default. | [optional] |
18
+ | **ping_issuer_dn** | **String** | Issuer DN of trusted CA certificate that imported into Ping Federate server. You may select \\\"Trust Any\\\" to trust all the existing issuers in Ping Federate server. Used in conjunction with ping-cert-subject-dn (relevant for CLIENT_TLS_CERTIFICATE authentication method) | [optional] |
19
+ | **ping_jwks** | **String** | Base64-encoded JSON Web Key Set (JWKS). If no explicit value is given, the producer will create JWKs and matched signed JWT (Sign Algo: RS256) and return it as value (relevant for PRIVATE_KEY_JWT authentication method) | [optional] |
20
+ | **ping_jwks_url** | **String** | The URL of the JSON Web Key Set (JWKS). If no explicit value is given, the producer will create JWKs and matched signed JWT and return it as value (relevant for PRIVATE_KEY_JWT authentication method) | [optional] |
21
+ | **ping_password** | **String** | Ping Federate privileged user password | [optional] |
22
+ | **ping_privileged_user** | **String** | Ping Federate privileged user | [optional] |
23
+ | **ping_redirect_uris** | **Array<String>** | List of URIs to which the OAuth authorization server may redirect the resource owner's user agent after authorization is obtained. At least one redirection URI is required for the AUTHORIZATION_CODE and IMPLICIT grant types. | [optional] |
24
+ | **ping_restricted_scopes** | **Array<String>** | Limit the OAuth client to specific scopes list | [optional] |
25
+ | **ping_signing_algo** | **String** | The signing algorithm that the client must use to sign its request objects [RS256,RS384,RS512,ES256,ES384,ES512,PS256,PS384,PS512] If no explicit value is given, the client can use any of the supported signing algorithms (relevant for PRIVATE_KEY_JWT authentication method) | [optional] |
26
+ | **ping_url** | **String** | Ping URL | [optional] |
27
+ | **producer_encryption_key_name** | **String** | Dynamic producer encryption key | [optional] |
28
+ | **tags** | **Array<String>** | List of the tags attached to this secret | [optional] |
29
+ | **target_name** | **String** | Target name | [optional] |
30
+ | **token** | **String** | Authentication token (see `/auth` and `/configure`) | [optional] |
31
+ | **uid_token** | **String** | The universal identity token, Required only for universal_identity authentication | [optional] |
32
+ | **user_ttl** | **String** | The time from dynamic secret creation to expiration. | [optional][default to '60m'] |
33
+
34
+ ## Example
35
+
36
+ ```ruby
37
+ require 'akeyless'
38
+
39
+ instance = Akeyless::GatewayUpdateProducerPing.new(
40
+ delete_protection: null,
41
+ json: null,
42
+ name: null,
43
+ new_name: null,
44
+ ping_administrative_port: null,
45
+ ping_atm_id: null,
46
+ ping_authorization_port: null,
47
+ ping_cert_subject_dn: null,
48
+ ping_client_authentication_type: null,
49
+ ping_enforce_replay_prevention: null,
50
+ ping_grant_types: null,
51
+ ping_issuer_dn: null,
52
+ ping_jwks: null,
53
+ ping_jwks_url: null,
54
+ ping_password: null,
55
+ ping_privileged_user: null,
56
+ ping_redirect_uris: null,
57
+ ping_restricted_scopes: null,
58
+ ping_signing_algo: null,
59
+ ping_url: null,
60
+ producer_encryption_key_name: null,
61
+ tags: null,
62
+ target_name: null,
63
+ token: null,
64
+ uid_token: null,
65
+ user_ttl: null
66
+ )
67
+ ```
68
+
@@ -0,0 +1,18 @@
1
+ # Akeyless::GatewayUpdateProducerPingOutput
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **producer_details** | [**DSProducerDetails**](DSProducerDetails.md) | | [optional] |
8
+
9
+ ## Example
10
+
11
+ ```ruby
12
+ require 'akeyless'
13
+
14
+ instance = Akeyless::GatewayUpdateProducerPingOutput.new(
15
+ producer_details: null
16
+ )
17
+ ```
18
+
@@ -4,16 +4,17 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **alt_names** | **String** | The Subject Alternative Names to be included in the PKI certificate (in a comma-delimited list) | [optional] |
7
+ | **alt_names** | **String** | The Subject Alternative Names to be included in the PKI certificate (in a comma-separated list) (if CSR is supplied this flag is ignored and any DNS.* names are taken from it) | [optional] |
8
8
  | **cert_issuer_name** | **String** | The name of the PKI certificate issuer | |
9
- | **common_name** | **String** | The common name to be included in the PKI certificate | [optional] |
9
+ | **common_name** | **String** | The common name to be included in the PKI certificate (if CSR is supplied this flag is ignored and the CSR subject CN is taken) | [optional] |
10
+ | **csr_data_base64** | **String** | Certificate Signing Request contents encoded in base64 to generate the certificate with | [optional] |
10
11
  | **extended_key_usage** | **String** | A comma-separated list of extended key usage requests which will be used for certificate issuance. Supported values: 'clientauth', 'serverauth'. | [optional] |
11
12
  | **json** | **Boolean** | Set output format to JSON | [optional] |
12
13
  | **key_data_base64** | **String** | PKI key file contents. If this option is used, the certificate will be printed to stdout | [optional] |
13
14
  | **token** | **String** | Authentication token (see `/auth` and `/configure`) | [optional] |
14
15
  | **ttl** | **Integer** | Updated certificate lifetime in seconds (must be less than the Certificate Issuer default TTL) | [optional] |
15
16
  | **uid_token** | **String** | The universal identity token, Required only for universal_identity authentication | [optional] |
16
- | **uri_sans** | **String** | The URI Subject Alternative Names to be included in the PKI certificate (in a comma-delimited list) | [optional] |
17
+ | **uri_sans** | **String** | The URI Subject Alternative Names to be included in the PKI certificate (in a comma-separated list) (if CSR is supplied this flag is ignored and any URI.* names are taken from it) | [optional] |
17
18
 
18
19
  ## Example
19
20
 
@@ -24,6 +25,7 @@ instance = Akeyless::GetKubeExecCreds.new(
24
25
  alt_names: null,
25
26
  cert_issuer_name: null,
26
27
  common_name: null,
28
+ csr_data_base64: null,
27
29
  extended_key_usage: null,
28
30
  json: null,
29
31
  key_data_base64: null,
@@ -4,16 +4,17 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **alt_names** | **String** | The Subject Alternative Names to be included in the PKI certificate (in a comma-delimited list) | [optional] |
7
+ | **alt_names** | **String** | The Subject Alternative Names to be included in the PKI certificate (in a comma-separated list) (if CSR is supplied this flag is ignored and any DNS.* names are taken from it) | [optional] |
8
8
  | **cert_issuer_name** | **String** | The name of the PKI certificate issuer | |
9
- | **common_name** | **String** | The common name to be included in the PKI certificate | [optional] |
9
+ | **common_name** | **String** | The common name to be included in the PKI certificate (if CSR is supplied this flag is ignored and the CSR subject CN is taken) | [optional] |
10
+ | **csr_data_base64** | **String** | Certificate Signing Request contents encoded in base64 to generate the certificate with | [optional] |
10
11
  | **extended_key_usage** | **String** | A comma-separated list of extended key usage requests which will be used for certificate issuance. Supported values: 'clientauth', 'serverauth'. | [optional] |
11
12
  | **json** | **Boolean** | Set output format to JSON | [optional] |
12
13
  | **key_data_base64** | **String** | PKI key file contents. If this option is used, the certificate will be printed to stdout | [optional] |
13
14
  | **token** | **String** | Authentication token (see `/auth` and `/configure`) | [optional] |
14
15
  | **ttl** | **Integer** | Updated certificate lifetime in seconds (must be less than the Certificate Issuer default TTL) | [optional] |
15
16
  | **uid_token** | **String** | The universal identity token, Required only for universal_identity authentication | [optional] |
16
- | **uri_sans** | **String** | The URI Subject Alternative Names to be included in the PKI certificate (in a comma-delimited list) | [optional] |
17
+ | **uri_sans** | **String** | The URI Subject Alternative Names to be included in the PKI certificate (in a comma-separated list) (if CSR is supplied this flag is ignored and any URI.* names are taken from it) | [optional] |
17
18
 
18
19
  ## Example
19
20
 
@@ -24,6 +25,7 @@ instance = Akeyless::GetPKICertificate.new(
24
25
  alt_names: null,
25
26
  cert_issuer_name: null,
26
27
  common_name: null,
28
+ csr_data_base64: null,
27
29
  extended_key_usage: null,
28
30
  json: null,
29
31
  key_data_base64: null,
@@ -24,6 +24,7 @@
24
24
  | **native** | **Boolean** | | [optional] |
25
25
  | **rdp_user** | **String** | | [optional] |
26
26
  | **region** | **String** | | [optional] |
27
+ | **rotate_after_disconnect** | **Boolean** | | [optional] |
27
28
  | **schema** | **String** | | [optional] |
28
29
  | **ssh_password** | **Boolean** | | [optional] |
29
30
  | **ssh_private_key** | **Boolean** | | [optional] |
@@ -58,6 +59,7 @@ instance = Akeyless::SecureRemoteAccess.new(
58
59
  native: null,
59
60
  rdp_user: null,
60
61
  region: null,
62
+ rotate_after_disconnect: null,
61
63
  schema: null,
62
64
  ssh_password: null,
63
65
  ssh_private_key: null,