Class: Akeyless::DSProducerDetails

Inherits:
Object
  • Object
show all
Defined in:
lib/akeyless/models/ds_producer_details.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ DSProducerDetails

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash



870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
# File 'lib/akeyless/models/ds_producer_details.rb', line 870

def initialize(attributes = {})
  if (!attributes.is_a?(Hash))
    fail ArgumentError, "The input argument (attributes) must be a hash in `Akeyless::DSProducerDetails` initialize method"
  end

  # check to see if the attribute exists and convert string to symbol for hash key
  attributes = attributes.each_with_object({}) { |(k, v), h|
    if (!self.class.attribute_map.key?(k.to_sym))
      fail ArgumentError, "`#{k}` is not a valid attribute in `Akeyless::DSProducerDetails`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
    end
    h[k.to_sym] = v
  }

  if attributes.key?(:'access_token_manager_id')
    self.access_token_manager_id = attributes[:'access_token_manager_id']
  end

  if attributes.key?(:'active')
    self.active = attributes[:'active']
  end

  if attributes.key?(:'admin_name')
    self.admin_name = attributes[:'admin_name']
  end

  if attributes.key?(:'admin_pwd')
    self.admin_pwd = attributes[:'admin_pwd']
  end

  if attributes.key?(:'admin_rotation_interval_days')
    self.admin_rotation_interval_days = attributes[:'admin_rotation_interval_days']
  end

  if attributes.key?(:'administrative_port')
    self.administrative_port = attributes[:'administrative_port']
  end

  if attributes.key?(:'artifactory_admin_apikey')
    self.artifactory_admin_apikey = attributes[:'artifactory_admin_apikey']
  end

  if attributes.key?(:'artifactory_admin_username')
    self.artifactory_admin_username = attributes[:'artifactory_admin_username']
  end

  if attributes.key?(:'artifactory_base_url')
    self.artifactory_base_url = attributes[:'artifactory_base_url']
  end

  if attributes.key?(:'artifactory_token_audience')
    self.artifactory_token_audience = attributes[:'artifactory_token_audience']
  end

  if attributes.key?(:'artifactory_token_scope')
    self.artifactory_token_scope = attributes[:'artifactory_token_scope']
  end

  if attributes.key?(:'authorization_port')
    self.authorization_port = attributes[:'authorization_port']
  end

  if attributes.key?(:'aws_access_key_id')
    self.aws_access_key_id = attributes[:'aws_access_key_id']
  end

  if attributes.key?(:'aws_access_mode')
    self.aws_access_mode = attributes[:'aws_access_mode']
  end

  if attributes.key?(:'aws_region')
    self.aws_region = attributes[:'aws_region']
  end

  if attributes.key?(:'aws_role_arns')
    self.aws_role_arns = attributes[:'aws_role_arns']
  end

  if attributes.key?(:'aws_secret_access_key')
    self.aws_secret_access_key = attributes[:'aws_secret_access_key']
  end

  if attributes.key?(:'aws_session_token')
    self.aws_session_token = attributes[:'aws_session_token']
  end

  if attributes.key?(:'aws_user_console_access')
    self.aws_user_console_access = attributes[:'aws_user_console_access']
  end

  if attributes.key?(:'aws_user_groups')
    self.aws_user_groups = attributes[:'aws_user_groups']
  end

  if attributes.key?(:'aws_user_policies')
    self.aws_user_policies = attributes[:'aws_user_policies']
  end

  if attributes.key?(:'aws_user_programmatic_access')
    self.aws_user_programmatic_access = attributes[:'aws_user_programmatic_access']
  end

  if attributes.key?(:'azure_app_object_id')
    self.azure_app_object_id = attributes[:'azure_app_object_id']
  end

  if attributes.key?(:'azure_client_id')
    self.azure_client_id = attributes[:'azure_client_id']
  end

  if attributes.key?(:'azure_client_secret')
    self.azure_client_secret = attributes[:'azure_client_secret']
  end

  if attributes.key?(:'azure_fixed_user_name_sub_claim_key')
    self.azure_fixed_user_name_sub_claim_key = attributes[:'azure_fixed_user_name_sub_claim_key']
  end

  if attributes.key?(:'azure_fixed_user_only')
    self.azure_fixed_user_only = attributes[:'azure_fixed_user_only']
  end

  if attributes.key?(:'azure_resource_group_name')
    self.azure_resource_group_name = attributes[:'azure_resource_group_name']
  end

  if attributes.key?(:'azure_resource_name')
    self.azure_resource_name = attributes[:'azure_resource_name']
  end

  if attributes.key?(:'azure_subscription_id')
    self.azure_subscription_id = attributes[:'azure_subscription_id']
  end

  if attributes.key?(:'azure_tenant_id')
    self.azure_tenant_id = attributes[:'azure_tenant_id']
  end

  if attributes.key?(:'azure_user_groups_obj_id')
    self.azure_user_groups_obj_id = attributes[:'azure_user_groups_obj_id']
  end

  if attributes.key?(:'azure_user_portal_access')
    self.azure_user_portal_access = attributes[:'azure_user_portal_access']
  end

  if attributes.key?(:'azure_user_programmatic_access')
    self.azure_user_programmatic_access = attributes[:'azure_user_programmatic_access']
  end

  if attributes.key?(:'azure_user_roles_template_id')
    self.azure_user_roles_template_id = attributes[:'azure_user_roles_template_id']
  end

  if attributes.key?(:'cassandra_creation_statements')
    self.cassandra_creation_statements = attributes[:'cassandra_creation_statements']
  end

  if attributes.key?(:'chef_organizations')
    self.chef_organizations = attributes[:'chef_organizations']
  end

  if attributes.key?(:'chef_server_access_mode')
    self.chef_server_access_mode = attributes[:'chef_server_access_mode']
  end

  if attributes.key?(:'chef_server_host_name')
    self.chef_server_host_name = attributes[:'chef_server_host_name']
  end

  if attributes.key?(:'chef_server_key')
    self.chef_server_key = attributes[:'chef_server_key']
  end

  if attributes.key?(:'chef_server_port')
    self.chef_server_port = attributes[:'chef_server_port']
  end

  if attributes.key?(:'chef_server_url')
    self.chef_server_url = attributes[:'chef_server_url']
  end

  if attributes.key?(:'chef_server_username')
    self.chef_server_username = attributes[:'chef_server_username']
  end

  if attributes.key?(:'chef_skip_ssl')
    self.chef_skip_ssl = attributes[:'chef_skip_ssl']
  end

  if attributes.key?(:'client_authentication_type')
    self.client_authentication_type = attributes[:'client_authentication_type']
  end

  if attributes.key?(:'create_sync_url')
    self.create_sync_url = attributes[:'create_sync_url']
  end

  if attributes.key?(:'db_host_name')
    self.db_host_name = attributes[:'db_host_name']
  end

  if attributes.key?(:'db_isolation_level')
    self.db_isolation_level = attributes[:'db_isolation_level']
  end

  if attributes.key?(:'db_max_idle_conns')
    self.db_max_idle_conns = attributes[:'db_max_idle_conns']
  end

  if attributes.key?(:'db_max_open_conns')
    self.db_max_open_conns = attributes[:'db_max_open_conns']
  end

  if attributes.key?(:'db_name')
    self.db_name = attributes[:'db_name']
  end

  if attributes.key?(:'db_port')
    self.db_port = attributes[:'db_port']
  end

  if attributes.key?(:'db_private_key')
    self.db_private_key = attributes[:'db_private_key']
  end

  if attributes.key?(:'db_private_key_passphrase')
    self.db_private_key_passphrase = attributes[:'db_private_key_passphrase']
  end

  if attributes.key?(:'db_pwd')
    self.db_pwd = attributes[:'db_pwd']
  end

  if attributes.key?(:'db_server_certificates')
    self.db_server_certificates = attributes[:'db_server_certificates']
  end

  if attributes.key?(:'db_server_name')
    self.db_server_name = attributes[:'db_server_name']
  end

  if attributes.key?(:'db_user_name')
    self.db_user_name = attributes[:'db_user_name']
  end

  if attributes.key?(:'delete_protection')
    self.delete_protection = attributes[:'delete_protection']
  end

  if attributes.key?(:'dynamic_secret_id')
    self.dynamic_secret_id = attributes[:'dynamic_secret_id']
  end

  if attributes.key?(:'dynamic_secret_key')
    self.dynamic_secret_key = attributes[:'dynamic_secret_key']
  end

  if attributes.key?(:'dynamic_secret_name')
    self.dynamic_secret_name = attributes[:'dynamic_secret_name']
  end

  if attributes.key?(:'dynamic_secret_type')
    self.dynamic_secret_type = attributes[:'dynamic_secret_type']
  end

  if attributes.key?(:'eks_access_key_id')
    self.eks_access_key_id = attributes[:'eks_access_key_id']
  end

  if attributes.key?(:'eks_assume_role')
    self.eks_assume_role = attributes[:'eks_assume_role']
  end

  if attributes.key?(:'eks_cluster_ca_certificate')
    self.eks_cluster_ca_certificate = attributes[:'eks_cluster_ca_certificate']
  end

  if attributes.key?(:'eks_cluster_endpoint')
    self.eks_cluster_endpoint = attributes[:'eks_cluster_endpoint']
  end

  if attributes.key?(:'eks_cluster_name')
    self.eks_cluster_name = attributes[:'eks_cluster_name']
  end

  if attributes.key?(:'eks_region')
    self.eks_region = attributes[:'eks_region']
  end

  if attributes.key?(:'eks_secret_access_key')
    self.eks_secret_access_key = attributes[:'eks_secret_access_key']
  end

  if attributes.key?(:'enable_admin_rotation')
    self.enable_admin_rotation = attributes[:'enable_admin_rotation']
  end

  if attributes.key?(:'enforce_replay_prevention')
    self.enforce_replay_prevention = attributes[:'enforce_replay_prevention']
  end

  if attributes.key?(:'externally_provided_user')
    self.externally_provided_user = attributes[:'externally_provided_user']
  end

  if attributes.key?(:'failure_message')
    self.failure_message = attributes[:'failure_message']
  end

  if attributes.key?(:'fixed_user_only')
    self.fixed_user_only = attributes[:'fixed_user_only']
  end

  if attributes.key?(:'gcp_key_algo')
    self.gcp_key_algo = attributes[:'gcp_key_algo']
  end

  if attributes.key?(:'gcp_role_bindings')
    if (value = attributes[:'gcp_role_bindings']).is_a?(Hash)
      self.gcp_role_bindings = value
    end
  end

  if attributes.key?(:'gcp_service_account_email')
    self. = attributes[:'gcp_service_account_email']
  end

  if attributes.key?(:'gcp_service_account_key')
    self. = attributes[:'gcp_service_account_key']
  end

  if attributes.key?(:'gcp_service_account_type')
    self. = attributes[:'gcp_service_account_type']
  end

  if attributes.key?(:'gcp_tmp_service_account_name')
    self. = attributes[:'gcp_tmp_service_account_name']
  end

  if attributes.key?(:'gcp_token_lifetime')
    self.gcp_token_lifetime = attributes[:'gcp_token_lifetime']
  end

  if attributes.key?(:'gcp_token_scope')
    self.gcp_token_scope = attributes[:'gcp_token_scope']
  end

  if attributes.key?(:'gcp_token_type')
    self.gcp_token_type = attributes[:'gcp_token_type']
  end

  if attributes.key?(:'github_app_id')
    self.github_app_id = attributes[:'github_app_id']
  end

  if attributes.key?(:'github_app_private_key')
    self.github_app_private_key = attributes[:'github_app_private_key']
  end

  if attributes.key?(:'github_base_url')
    self.github_base_url = attributes[:'github_base_url']
  end

  if attributes.key?(:'github_installation_id')
    self.github_installation_id = attributes[:'github_installation_id']
  end

  if attributes.key?(:'github_installation_token_permissions')
    if (value = attributes[:'github_installation_token_permissions']).is_a?(Hash)
      self.github_installation_token_permissions = value
    end
  end

  if attributes.key?(:'github_installation_token_repositories')
    if (value = attributes[:'github_installation_token_repositories']).is_a?(Array)
      self.github_installation_token_repositories = value
    end
  end

  if attributes.key?(:'github_installation_token_repositories_ids')
    if (value = attributes[:'github_installation_token_repositories_ids']).is_a?(Array)
      self.github_installation_token_repositories_ids = value
    end
  end

  if attributes.key?(:'github_repository_path')
    self.github_repository_path = attributes[:'github_repository_path']
  end

  if attributes.key?(:'gke_cluster_ca_certificate')
    self.gke_cluster_ca_certificate = attributes[:'gke_cluster_ca_certificate']
  end

  if attributes.key?(:'gke_cluster_endpoint')
    self.gke_cluster_endpoint = attributes[:'gke_cluster_endpoint']
  end

  if attributes.key?(:'gke_cluster_name')
    self.gke_cluster_name = attributes[:'gke_cluster_name']
  end

  if attributes.key?(:'gke_service_account_key')
    self. = attributes[:'gke_service_account_key']
  end

  if attributes.key?(:'gke_service_account_name')
    self. = attributes[:'gke_service_account_name']
  end

  if attributes.key?(:'grant_types')
    if (value = attributes[:'grant_types']).is_a?(Array)
      self.grant_types = value
    end
  end

  if attributes.key?(:'groups')
    self.groups = attributes[:'groups']
  end

  if attributes.key?(:'hanadb_creation_statements')
    self.hanadb_creation_statements = attributes[:'hanadb_creation_statements']
  end

  if attributes.key?(:'hanadb_revocation_statements')
    self.hanadb_revocation_statements = attributes[:'hanadb_revocation_statements']
  end

  if attributes.key?(:'host_name')
    self.host_name = attributes[:'host_name']
  end

  if attributes.key?(:'host_port')
    self.host_port = attributes[:'host_port']
  end

  if attributes.key?(:'implementation_type')
    self.implementation_type = attributes[:'implementation_type']
  end

  if attributes.key?(:'is_fixed_user')
    self.is_fixed_user = attributes[:'is_fixed_user']
  end

  if attributes.key?(:'issuer')
    self.issuer = attributes[:'issuer']
  end

  if attributes.key?(:'item_targets_assoc')
    if (value = attributes[:'item_targets_assoc']).is_a?(Array)
      self.item_targets_assoc = value
    end
  end

  if attributes.key?(:'jwks')
    self.jwks = attributes[:'jwks']
  end

  if attributes.key?(:'jwks_url')
    self.jwks_url = attributes[:'jwks_url']
  end

  if attributes.key?(:'k8s_allowed_namespaces')
    self.k8s_allowed_namespaces = attributes[:'k8s_allowed_namespaces']
  end

  if attributes.key?(:'k8s_bearer_token')
    self.k8s_bearer_token = attributes[:'k8s_bearer_token']
  end

  if attributes.key?(:'k8s_cluster_ca_certificate')
    self.k8s_cluster_ca_certificate = attributes[:'k8s_cluster_ca_certificate']
  end

  if attributes.key?(:'k8s_cluster_endpoint')
    self.k8s_cluster_endpoint = attributes[:'k8s_cluster_endpoint']
  end

  if attributes.key?(:'k8s_dynamic_mode')
    self.k8s_dynamic_mode = attributes[:'k8s_dynamic_mode']
  end

  if attributes.key?(:'k8s_namespace')
    self.k8s_namespace = attributes[:'k8s_namespace']
  end

  if attributes.key?(:'k8s_role_name')
    self.k8s_role_name = attributes[:'k8s_role_name']
  end

  if attributes.key?(:'k8s_role_type')
    self.k8s_role_type = attributes[:'k8s_role_type']
  end

  if attributes.key?(:'k8s_service_account')
    self. = attributes[:'k8s_service_account']
  end

  if attributes.key?(:'k8s_temp_role_binding_definition')
    if (value = attributes[:'k8s_temp_role_binding_definition']).is_a?(Array)
      self.k8s_temp_role_binding_definition = value
    end
  end

  if attributes.key?(:'k8s_temp_role_definition')
    if (value = attributes[:'k8s_temp_role_definition']).is_a?(Array)
      self.k8s_temp_role_definition = value
    end
  end

  if attributes.key?(:'last_admin_rotation')
    self.last_admin_rotation = attributes[:'last_admin_rotation']
  end

  if attributes.key?(:'ldap_audience')
    self.ldap_audience = attributes[:'ldap_audience']
  end

  if attributes.key?(:'ldap_bind_dn')
    self.ldap_bind_dn = attributes[:'ldap_bind_dn']
  end

  if attributes.key?(:'ldap_bind_password')
    self.ldap_bind_password = attributes[:'ldap_bind_password']
  end

  if attributes.key?(:'ldap_certificate')
    self.ldap_certificate = attributes[:'ldap_certificate']
  end

  if attributes.key?(:'ldap_token_expiration')
    self.ldap_token_expiration = attributes[:'ldap_token_expiration']
  end

  if attributes.key?(:'ldap_url')
    self.ldap_url = attributes[:'ldap_url']
  end

  if attributes.key?(:'ldap_user_attr')
    self.ldap_user_attr = attributes[:'ldap_user_attr']
  end

  if attributes.key?(:'ldap_user_dn')
    self.ldap_user_dn = attributes[:'ldap_user_dn']
  end

  if attributes.key?(:'metadata')
    self. = attributes[:'metadata']
  end

  if attributes.key?(:'mongodb_atlas_api_private_key')
    self.mongodb_atlas_api_private_key = attributes[:'mongodb_atlas_api_private_key']
  end

  if attributes.key?(:'mongodb_atlas_api_public_key')
    self.mongodb_atlas_api_public_key = attributes[:'mongodb_atlas_api_public_key']
  end

  if attributes.key?(:'mongodb_atlas_project_id')
    self.mongodb_atlas_project_id = attributes[:'mongodb_atlas_project_id']
  end

  if attributes.key?(:'mongodb_custom_data')
    self.mongodb_custom_data = attributes[:'mongodb_custom_data']
  end

  if attributes.key?(:'mongodb_db_name')
    self.mongodb_db_name = attributes[:'mongodb_db_name']
  end

  if attributes.key?(:'mongodb_default_auth_db')
    self.mongodb_default_auth_db = attributes[:'mongodb_default_auth_db']
  end

  if attributes.key?(:'mongodb_host_port')
    self.mongodb_host_port = attributes[:'mongodb_host_port']
  end

  if attributes.key?(:'mongodb_is_atlas')
    self.mongodb_is_atlas = attributes[:'mongodb_is_atlas']
  end

  if attributes.key?(:'mongodb_password')
    self.mongodb_password = attributes[:'mongodb_password']
  end

  if attributes.key?(:'mongodb_roles')
    self.mongodb_roles = attributes[:'mongodb_roles']
  end

  if attributes.key?(:'mongodb_uri_connection')
    self.mongodb_uri_connection = attributes[:'mongodb_uri_connection']
  end

  if attributes.key?(:'mongodb_uri_options')
    self.mongodb_uri_options = attributes[:'mongodb_uri_options']
  end

  if attributes.key?(:'mongodb_username')
    self.mongodb_username = attributes[:'mongodb_username']
  end

  if attributes.key?(:'mssql_creation_statements')
    self.mssql_creation_statements = attributes[:'mssql_creation_statements']
  end

  if attributes.key?(:'mssql_revocation_statements')
    self.mssql_revocation_statements = attributes[:'mssql_revocation_statements']
  end

  if attributes.key?(:'mysql_creation_statements')
    self.mysql_creation_statements = attributes[:'mysql_creation_statements']
  end

  if attributes.key?(:'oracle_creation_statements')
    self.oracle_creation_statements = attributes[:'oracle_creation_statements']
  end

  if attributes.key?(:'password')
    self.password = attributes[:'password']
  end

  if attributes.key?(:'password_length')
    self.password_length = attributes[:'password_length']
  end

  if attributes.key?(:'password_policy')
    self.password_policy = attributes[:'password_policy']
  end

  if attributes.key?(:'payload')
    self.payload = attributes[:'payload']
  end

  if attributes.key?(:'ping_url')
    self.ping_url = attributes[:'ping_url']
  end

  if attributes.key?(:'postgres_creation_statements')
    self.postgres_creation_statements = attributes[:'postgres_creation_statements']
  end

  if attributes.key?(:'postgres_revocation_statements')
    self.postgres_revocation_statements = attributes[:'postgres_revocation_statements']
  end

  if attributes.key?(:'privileged_user')
    self.privileged_user = attributes[:'privileged_user']
  end

  if attributes.key?(:'rabbitmq_server_password')
    self.rabbitmq_server_password = attributes[:'rabbitmq_server_password']
  end

  if attributes.key?(:'rabbitmq_server_uri')
    self.rabbitmq_server_uri = attributes[:'rabbitmq_server_uri']
  end

  if attributes.key?(:'rabbitmq_server_user')
    self.rabbitmq_server_user = attributes[:'rabbitmq_server_user']
  end

  if attributes.key?(:'rabbitmq_user_conf_permission')
    self.rabbitmq_user_conf_permission = attributes[:'rabbitmq_user_conf_permission']
  end

  if attributes.key?(:'rabbitmq_user_read_permission')
    self.rabbitmq_user_read_permission = attributes[:'rabbitmq_user_read_permission']
  end

  if attributes.key?(:'rabbitmq_user_tags')
    self.rabbitmq_user_tags = attributes[:'rabbitmq_user_tags']
  end

  if attributes.key?(:'rabbitmq_user_vhost')
    self.rabbitmq_user_vhost = attributes[:'rabbitmq_user_vhost']
  end

  if attributes.key?(:'rabbitmq_user_write_permission')
    self.rabbitmq_user_write_permission = attributes[:'rabbitmq_user_write_permission']
  end

  if attributes.key?(:'redirect_uris')
    if (value = attributes[:'redirect_uris']).is_a?(Array)
      self.redirect_uris = value
    end
  end

  if attributes.key?(:'redshift_creation_statements')
    self.redshift_creation_statements = attributes[:'redshift_creation_statements']
  end

  if attributes.key?(:'restricted_scopes')
    if (value = attributes[:'restricted_scopes']).is_a?(Array)
      self.restricted_scopes = value
    end
  end

  if attributes.key?(:'revoke_sync_url')
    self.revoke_sync_url = attributes[:'revoke_sync_url']
  end

  if attributes.key?(:'rotate_sync_url')
    self.rotate_sync_url = attributes[:'rotate_sync_url']
  end

  if attributes.key?(:'scopes')
    if (value = attributes[:'scopes']).is_a?(Array)
      self.scopes = value
    end
  end

  if attributes.key?(:'secure_remote_access_details')
    self.secure_remote_access_details = attributes[:'secure_remote_access_details']
  end

  if attributes.key?(:'session_extension_warn_interval_min')
    self.session_extension_warn_interval_min = attributes[:'session_extension_warn_interval_min']
  end

  if attributes.key?(:'sf_account')
    self. = attributes[:'sf_account']
  end

  if attributes.key?(:'sf_user_role')
    self.sf_user_role = attributes[:'sf_user_role']
  end

  if attributes.key?(:'sf_warehouse_name')
    self.sf_warehouse_name = attributes[:'sf_warehouse_name']
  end

  if attributes.key?(:'should_stop')
    self.should_stop = attributes[:'should_stop']
  end

  if attributes.key?(:'signing_algorithm')
    self.signing_algorithm = attributes[:'signing_algorithm']
  end

  if attributes.key?(:'ssl_connection_certificate')
    self.ssl_connection_certificate = attributes[:'ssl_connection_certificate']
  end

  if attributes.key?(:'ssl_connection_mode')
    self.ssl_connection_mode = attributes[:'ssl_connection_mode']
  end

  if attributes.key?(:'subject_dn')
    self.subject_dn = attributes[:'subject_dn']
  end

  if attributes.key?(:'tags')
    if (value = attributes[:'tags']).is_a?(Array)
      self.tags = value
    end
  end

  if attributes.key?(:'timeout_seconds')
    self.timeout_seconds = attributes[:'timeout_seconds']
  end

  if attributes.key?(:'use_gw_cloud_identity')
    self.use_gw_cloud_identity = attributes[:'use_gw_cloud_identity']
  end

  if attributes.key?(:'user_name')
    self.user_name = attributes[:'user_name']
  end

  if attributes.key?(:'user_password')
    self.user_password = attributes[:'user_password']
  end

  if attributes.key?(:'user_principal_name')
    self.user_principal_name = attributes[:'user_principal_name']
  end

  if attributes.key?(:'user_ttl')
    self.user_ttl = attributes[:'user_ttl']
  end

  if attributes.key?(:'username_length')
    self.username_length = attributes[:'username_length']
  end

  if attributes.key?(:'username_policy')
    self.username_policy = attributes[:'username_policy']
  end

  if attributes.key?(:'venafi_allow_subdomains')
    self.venafi_allow_subdomains = attributes[:'venafi_allow_subdomains']
  end

  if attributes.key?(:'venafi_allowed_domains')
    if (value = attributes[:'venafi_allowed_domains']).is_a?(Array)
      self.venafi_allowed_domains = value
    end
  end

  if attributes.key?(:'venafi_api_key')
    self.venafi_api_key = attributes[:'venafi_api_key']
  end

  if attributes.key?(:'venafi_auto_generated_folder')
    self.venafi_auto_generated_folder = attributes[:'venafi_auto_generated_folder']
  end

  if attributes.key?(:'venafi_base_url')
    self.venafi_base_url = attributes[:'venafi_base_url']
  end

  if attributes.key?(:'venafi_root_first_in_chain')
    self.venafi_root_first_in_chain = attributes[:'venafi_root_first_in_chain']
  end

  if attributes.key?(:'venafi_sign_using_akeyless_pki')
    self.venafi_sign_using_akeyless_pki = attributes[:'venafi_sign_using_akeyless_pki']
  end

  if attributes.key?(:'venafi_signer_key_name')
    self.venafi_signer_key_name = attributes[:'venafi_signer_key_name']
  end

  if attributes.key?(:'venafi_store_private_key')
    self.venafi_store_private_key = attributes[:'venafi_store_private_key']
  end

  if attributes.key?(:'venafi_tpp_password')
    self.venafi_tpp_password = attributes[:'venafi_tpp_password']
  end

  if attributes.key?(:'venafi_tpp_username')
    self.venafi_tpp_username = attributes[:'venafi_tpp_username']
  end

  if attributes.key?(:'venafi_use_tpp')
    self.venafi_use_tpp = attributes[:'venafi_use_tpp']
  end

  if attributes.key?(:'venafi_zone')
    self.venafi_zone = attributes[:'venafi_zone']
  end

  if attributes.key?(:'warn_before_user_expiration_min')
    self.warn_before_user_expiration_min = attributes[:'warn_before_user_expiration_min']
  end
end

Instance Attribute Details

#access_token_manager_idObject

Returns the value of attribute access_token_manager_id.



18
19
20
# File 'lib/akeyless/models/ds_producer_details.rb', line 18

def access_token_manager_id
  @access_token_manager_id
end

#activeObject

Returns the value of attribute active.



20
21
22
# File 'lib/akeyless/models/ds_producer_details.rb', line 20

def active
  @active
end

#admin_nameObject

Returns the value of attribute admin_name.



22
23
24
# File 'lib/akeyless/models/ds_producer_details.rb', line 22

def admin_name
  @admin_name
end

#admin_pwdObject

Returns the value of attribute admin_pwd.



24
25
26
# File 'lib/akeyless/models/ds_producer_details.rb', line 24

def admin_pwd
  @admin_pwd
end

#admin_rotation_interval_daysObject

Returns the value of attribute admin_rotation_interval_days.



26
27
28
# File 'lib/akeyless/models/ds_producer_details.rb', line 26

def admin_rotation_interval_days
  @admin_rotation_interval_days
end

#administrative_portObject

Returns the value of attribute administrative_port.



28
29
30
# File 'lib/akeyless/models/ds_producer_details.rb', line 28

def administrative_port
  @administrative_port
end

#artifactory_admin_apikeyObject

Returns the value of attribute artifactory_admin_apikey.



30
31
32
# File 'lib/akeyless/models/ds_producer_details.rb', line 30

def artifactory_admin_apikey
  @artifactory_admin_apikey
end

#artifactory_admin_usernameObject

Returns the value of attribute artifactory_admin_username.



32
33
34
# File 'lib/akeyless/models/ds_producer_details.rb', line 32

def artifactory_admin_username
  @artifactory_admin_username
end

#artifactory_base_urlObject

Returns the value of attribute artifactory_base_url.



34
35
36
# File 'lib/akeyless/models/ds_producer_details.rb', line 34

def artifactory_base_url
  @artifactory_base_url
end

#artifactory_token_audienceObject

Returns the value of attribute artifactory_token_audience.



36
37
38
# File 'lib/akeyless/models/ds_producer_details.rb', line 36

def artifactory_token_audience
  @artifactory_token_audience
end

#artifactory_token_scopeObject

Returns the value of attribute artifactory_token_scope.



38
39
40
# File 'lib/akeyless/models/ds_producer_details.rb', line 38

def artifactory_token_scope
  @artifactory_token_scope
end

#authorization_portObject

Returns the value of attribute authorization_port.



40
41
42
# File 'lib/akeyless/models/ds_producer_details.rb', line 40

def authorization_port
  @authorization_port
end

#aws_access_key_idObject

Returns the value of attribute aws_access_key_id.



42
43
44
# File 'lib/akeyless/models/ds_producer_details.rb', line 42

def aws_access_key_id
  @aws_access_key_id
end

#aws_access_modeObject

Returns the value of attribute aws_access_mode.



44
45
46
# File 'lib/akeyless/models/ds_producer_details.rb', line 44

def aws_access_mode
  @aws_access_mode
end

#aws_regionObject

Returns the value of attribute aws_region.



46
47
48
# File 'lib/akeyless/models/ds_producer_details.rb', line 46

def aws_region
  @aws_region
end

#aws_role_arnsObject

Returns the value of attribute aws_role_arns.



48
49
50
# File 'lib/akeyless/models/ds_producer_details.rb', line 48

def aws_role_arns
  @aws_role_arns
end

#aws_secret_access_keyObject

Returns the value of attribute aws_secret_access_key.



50
51
52
# File 'lib/akeyless/models/ds_producer_details.rb', line 50

def aws_secret_access_key
  @aws_secret_access_key
end

#aws_session_tokenObject

Returns the value of attribute aws_session_token.



52
53
54
# File 'lib/akeyless/models/ds_producer_details.rb', line 52

def aws_session_token
  @aws_session_token
end

#aws_user_console_accessObject

Returns the value of attribute aws_user_console_access.



54
55
56
# File 'lib/akeyless/models/ds_producer_details.rb', line 54

def aws_user_console_access
  @aws_user_console_access
end

#aws_user_groupsObject

Returns the value of attribute aws_user_groups.



56
57
58
# File 'lib/akeyless/models/ds_producer_details.rb', line 56

def aws_user_groups
  @aws_user_groups
end

#aws_user_policiesObject

Returns the value of attribute aws_user_policies.



58
59
60
# File 'lib/akeyless/models/ds_producer_details.rb', line 58

def aws_user_policies
  @aws_user_policies
end

#aws_user_programmatic_accessObject

Returns the value of attribute aws_user_programmatic_access.



60
61
62
# File 'lib/akeyless/models/ds_producer_details.rb', line 60

def aws_user_programmatic_access
  @aws_user_programmatic_access
end

#azure_app_object_idObject

Returns the value of attribute azure_app_object_id.



62
63
64
# File 'lib/akeyless/models/ds_producer_details.rb', line 62

def azure_app_object_id
  @azure_app_object_id
end

#azure_client_idObject

Returns the value of attribute azure_client_id.



64
65
66
# File 'lib/akeyless/models/ds_producer_details.rb', line 64

def azure_client_id
  @azure_client_id
end

#azure_client_secretObject

Returns the value of attribute azure_client_secret.



66
67
68
# File 'lib/akeyless/models/ds_producer_details.rb', line 66

def azure_client_secret
  @azure_client_secret
end

#azure_fixed_user_name_sub_claim_keyObject

Returns the value of attribute azure_fixed_user_name_sub_claim_key.



68
69
70
# File 'lib/akeyless/models/ds_producer_details.rb', line 68

def azure_fixed_user_name_sub_claim_key
  @azure_fixed_user_name_sub_claim_key
end

#azure_fixed_user_onlyObject

Returns the value of attribute azure_fixed_user_only.



70
71
72
# File 'lib/akeyless/models/ds_producer_details.rb', line 70

def azure_fixed_user_only
  @azure_fixed_user_only
end

#azure_resource_group_nameObject

Returns the value of attribute azure_resource_group_name.



72
73
74
# File 'lib/akeyless/models/ds_producer_details.rb', line 72

def azure_resource_group_name
  @azure_resource_group_name
end

#azure_resource_nameObject

Returns the value of attribute azure_resource_name.



74
75
76
# File 'lib/akeyless/models/ds_producer_details.rb', line 74

def azure_resource_name
  @azure_resource_name
end

#azure_subscription_idObject

Returns the value of attribute azure_subscription_id.



76
77
78
# File 'lib/akeyless/models/ds_producer_details.rb', line 76

def azure_subscription_id
  @azure_subscription_id
end

#azure_tenant_idObject

Returns the value of attribute azure_tenant_id.



78
79
80
# File 'lib/akeyless/models/ds_producer_details.rb', line 78

def azure_tenant_id
  @azure_tenant_id
end

#azure_user_groups_obj_idObject

Returns the value of attribute azure_user_groups_obj_id.



80
81
82
# File 'lib/akeyless/models/ds_producer_details.rb', line 80

def azure_user_groups_obj_id
  @azure_user_groups_obj_id
end

#azure_user_portal_accessObject

Returns the value of attribute azure_user_portal_access.



82
83
84
# File 'lib/akeyless/models/ds_producer_details.rb', line 82

def azure_user_portal_access
  @azure_user_portal_access
end

#azure_user_programmatic_accessObject

Returns the value of attribute azure_user_programmatic_access.



84
85
86
# File 'lib/akeyless/models/ds_producer_details.rb', line 84

def azure_user_programmatic_access
  @azure_user_programmatic_access
end

#azure_user_roles_template_idObject

Returns the value of attribute azure_user_roles_template_id.



86
87
88
# File 'lib/akeyless/models/ds_producer_details.rb', line 86

def azure_user_roles_template_id
  @azure_user_roles_template_id
end

#cassandra_creation_statementsObject

Returns the value of attribute cassandra_creation_statements.



88
89
90
# File 'lib/akeyless/models/ds_producer_details.rb', line 88

def cassandra_creation_statements
  @cassandra_creation_statements
end

#chef_organizationsObject

Returns the value of attribute chef_organizations.



90
91
92
# File 'lib/akeyless/models/ds_producer_details.rb', line 90

def chef_organizations
  @chef_organizations
end

#chef_server_access_modeObject

Returns the value of attribute chef_server_access_mode.



92
93
94
# File 'lib/akeyless/models/ds_producer_details.rb', line 92

def chef_server_access_mode
  @chef_server_access_mode
end

#chef_server_host_nameObject

Returns the value of attribute chef_server_host_name.



94
95
96
# File 'lib/akeyless/models/ds_producer_details.rb', line 94

def chef_server_host_name
  @chef_server_host_name
end

#chef_server_keyObject

Returns the value of attribute chef_server_key.



96
97
98
# File 'lib/akeyless/models/ds_producer_details.rb', line 96

def chef_server_key
  @chef_server_key
end

#chef_server_portObject

Returns the value of attribute chef_server_port.



98
99
100
# File 'lib/akeyless/models/ds_producer_details.rb', line 98

def chef_server_port
  @chef_server_port
end

#chef_server_urlObject

Returns the value of attribute chef_server_url.



100
101
102
# File 'lib/akeyless/models/ds_producer_details.rb', line 100

def chef_server_url
  @chef_server_url
end

#chef_server_usernameObject

Returns the value of attribute chef_server_username.



102
103
104
# File 'lib/akeyless/models/ds_producer_details.rb', line 102

def chef_server_username
  @chef_server_username
end

#chef_skip_sslObject

Returns the value of attribute chef_skip_ssl.



104
105
106
# File 'lib/akeyless/models/ds_producer_details.rb', line 104

def chef_skip_ssl
  @chef_skip_ssl
end

#client_authentication_typeObject

Returns the value of attribute client_authentication_type.



106
107
108
# File 'lib/akeyless/models/ds_producer_details.rb', line 106

def client_authentication_type
  @client_authentication_type
end

#create_sync_urlObject

Returns the value of attribute create_sync_url.



108
109
110
# File 'lib/akeyless/models/ds_producer_details.rb', line 108

def create_sync_url
  @create_sync_url
end

#db_host_nameObject

Returns the value of attribute db_host_name.



110
111
112
# File 'lib/akeyless/models/ds_producer_details.rb', line 110

def db_host_name
  @db_host_name
end

#db_isolation_levelObject

Returns the value of attribute db_isolation_level.



112
113
114
# File 'lib/akeyless/models/ds_producer_details.rb', line 112

def db_isolation_level
  @db_isolation_level
end

#db_max_idle_connsObject

Returns the value of attribute db_max_idle_conns.



114
115
116
# File 'lib/akeyless/models/ds_producer_details.rb', line 114

def db_max_idle_conns
  @db_max_idle_conns
end

#db_max_open_connsObject

Returns the value of attribute db_max_open_conns.



116
117
118
# File 'lib/akeyless/models/ds_producer_details.rb', line 116

def db_max_open_conns
  @db_max_open_conns
end

#db_nameObject

Returns the value of attribute db_name.



118
119
120
# File 'lib/akeyless/models/ds_producer_details.rb', line 118

def db_name
  @db_name
end

#db_portObject

Returns the value of attribute db_port.



120
121
122
# File 'lib/akeyless/models/ds_producer_details.rb', line 120

def db_port
  @db_port
end

#db_private_keyObject

(Optional) Private Key in PEM format



123
124
125
# File 'lib/akeyless/models/ds_producer_details.rb', line 123

def db_private_key
  @db_private_key
end

#db_private_key_passphraseObject

Returns the value of attribute db_private_key_passphrase.



125
126
127
# File 'lib/akeyless/models/ds_producer_details.rb', line 125

def db_private_key_passphrase
  @db_private_key_passphrase
end

#db_pwdObject

Returns the value of attribute db_pwd.



127
128
129
# File 'lib/akeyless/models/ds_producer_details.rb', line 127

def db_pwd
  @db_pwd
end

#db_server_certificatesObject

(Optional) DBServerCertificates defines the set of root certificate authorities that clients use when verifying server certificates. If DBServerCertificates is empty, TLS uses the host’s root CA set.



130
131
132
# File 'lib/akeyless/models/ds_producer_details.rb', line 130

def db_server_certificates
  @db_server_certificates
end

#db_server_nameObject

(Optional) ServerName is used to verify the hostname on the returned certificates unless InsecureSkipVerify is given. It is also included in the client’s handshake to support virtual hosting unless it is an IP address.



133
134
135
# File 'lib/akeyless/models/ds_producer_details.rb', line 133

def db_server_name
  @db_server_name
end

#db_user_nameObject

Returns the value of attribute db_user_name.



135
136
137
# File 'lib/akeyless/models/ds_producer_details.rb', line 135

def db_user_name
  @db_user_name
end

#delete_protectionObject

Returns the value of attribute delete_protection.



137
138
139
# File 'lib/akeyless/models/ds_producer_details.rb', line 137

def delete_protection
  @delete_protection
end

#dynamic_secret_idObject

Returns the value of attribute dynamic_secret_id.



139
140
141
# File 'lib/akeyless/models/ds_producer_details.rb', line 139

def dynamic_secret_id
  @dynamic_secret_id
end

#dynamic_secret_keyObject

Returns the value of attribute dynamic_secret_key.



141
142
143
# File 'lib/akeyless/models/ds_producer_details.rb', line 141

def dynamic_secret_key
  @dynamic_secret_key
end

#dynamic_secret_nameObject

Returns the value of attribute dynamic_secret_name.



143
144
145
# File 'lib/akeyless/models/ds_producer_details.rb', line 143

def dynamic_secret_name
  @dynamic_secret_name
end

#dynamic_secret_typeObject

Returns the value of attribute dynamic_secret_type.



145
146
147
# File 'lib/akeyless/models/ds_producer_details.rb', line 145

def dynamic_secret_type
  @dynamic_secret_type
end

#eks_access_key_idObject

Returns the value of attribute eks_access_key_id.



147
148
149
# File 'lib/akeyless/models/ds_producer_details.rb', line 147

def eks_access_key_id
  @eks_access_key_id
end

#eks_assume_roleObject

Returns the value of attribute eks_assume_role.



149
150
151
# File 'lib/akeyless/models/ds_producer_details.rb', line 149

def eks_assume_role
  @eks_assume_role
end

#eks_cluster_ca_certificateObject

Returns the value of attribute eks_cluster_ca_certificate.



151
152
153
# File 'lib/akeyless/models/ds_producer_details.rb', line 151

def eks_cluster_ca_certificate
  @eks_cluster_ca_certificate
end

#eks_cluster_endpointObject

Returns the value of attribute eks_cluster_endpoint.



153
154
155
# File 'lib/akeyless/models/ds_producer_details.rb', line 153

def eks_cluster_endpoint
  @eks_cluster_endpoint
end

#eks_cluster_nameObject

Returns the value of attribute eks_cluster_name.



155
156
157
# File 'lib/akeyless/models/ds_producer_details.rb', line 155

def eks_cluster_name
  @eks_cluster_name
end

#eks_regionObject

Returns the value of attribute eks_region.



157
158
159
# File 'lib/akeyless/models/ds_producer_details.rb', line 157

def eks_region
  @eks_region
end

#eks_secret_access_keyObject

Returns the value of attribute eks_secret_access_key.



159
160
161
# File 'lib/akeyless/models/ds_producer_details.rb', line 159

def eks_secret_access_key
  @eks_secret_access_key
end

#enable_admin_rotationObject

Returns the value of attribute enable_admin_rotation.



161
162
163
# File 'lib/akeyless/models/ds_producer_details.rb', line 161

def enable_admin_rotation
  @enable_admin_rotation
end

#enforce_replay_preventionObject

relevant for PRIVATE_KEY_JWT client authentication type



164
165
166
# File 'lib/akeyless/models/ds_producer_details.rb', line 164

def enforce_replay_prevention
  @enforce_replay_prevention
end

#externally_provided_userObject

Returns the value of attribute externally_provided_user.



166
167
168
# File 'lib/akeyless/models/ds_producer_details.rb', line 166

def externally_provided_user
  @externally_provided_user
end

#failure_messageObject

Returns the value of attribute failure_message.



168
169
170
# File 'lib/akeyless/models/ds_producer_details.rb', line 168

def failure_message
  @failure_message
end

#fixed_user_onlyObject

Returns the value of attribute fixed_user_only.



170
171
172
# File 'lib/akeyless/models/ds_producer_details.rb', line 170

def fixed_user_only
  @fixed_user_only
end

#gcp_key_algoObject

Returns the value of attribute gcp_key_algo.



172
173
174
# File 'lib/akeyless/models/ds_producer_details.rb', line 172

def gcp_key_algo
  @gcp_key_algo
end

#gcp_role_bindingsObject

Returns the value of attribute gcp_role_bindings.



174
175
176
# File 'lib/akeyless/models/ds_producer_details.rb', line 174

def gcp_role_bindings
  @gcp_role_bindings
end

#gcp_service_account_emailObject

GCPServiceAccountEmail overrides the deprecated field from the target



177
178
179
# File 'lib/akeyless/models/ds_producer_details.rb', line 177

def 
  @gcp_service_account_email
end

#gcp_service_account_keyObject

Returns the value of attribute gcp_service_account_key.



179
180
181
# File 'lib/akeyless/models/ds_producer_details.rb', line 179

def 
  @gcp_service_account_key
end

#gcp_service_account_typeObject

Returns the value of attribute gcp_service_account_type.



181
182
183
# File 'lib/akeyless/models/ds_producer_details.rb', line 181

def 
  @gcp_service_account_type
end

#gcp_tmp_service_account_nameObject

Returns the value of attribute gcp_tmp_service_account_name.



183
184
185
# File 'lib/akeyless/models/ds_producer_details.rb', line 183

def 
  @gcp_tmp_service_account_name
end

#gcp_token_lifetimeObject

Returns the value of attribute gcp_token_lifetime.



185
186
187
# File 'lib/akeyless/models/ds_producer_details.rb', line 185

def gcp_token_lifetime
  @gcp_token_lifetime
end

#gcp_token_scopeObject

Returns the value of attribute gcp_token_scope.



187
188
189
# File 'lib/akeyless/models/ds_producer_details.rb', line 187

def gcp_token_scope
  @gcp_token_scope
end

#gcp_token_typeObject

Returns the value of attribute gcp_token_type.



189
190
191
# File 'lib/akeyless/models/ds_producer_details.rb', line 189

def gcp_token_type
  @gcp_token_type
end

#github_app_idObject

Returns the value of attribute github_app_id.



191
192
193
# File 'lib/akeyless/models/ds_producer_details.rb', line 191

def github_app_id
  @github_app_id
end

#github_app_private_keyObject

Returns the value of attribute github_app_private_key.



193
194
195
# File 'lib/akeyless/models/ds_producer_details.rb', line 193

def github_app_private_key
  @github_app_private_key
end

#github_base_urlObject

Returns the value of attribute github_base_url.



195
196
197
# File 'lib/akeyless/models/ds_producer_details.rb', line 195

def github_base_url
  @github_base_url
end

#github_installation_idObject

Returns the value of attribute github_installation_id.



197
198
199
# File 'lib/akeyless/models/ds_producer_details.rb', line 197

def github_installation_id
  @github_installation_id
end

#github_installation_token_permissionsObject

Returns the value of attribute github_installation_token_permissions.



199
200
201
# File 'lib/akeyless/models/ds_producer_details.rb', line 199

def github_installation_token_permissions
  @github_installation_token_permissions
end

#github_installation_token_repositoriesObject

Returns the value of attribute github_installation_token_repositories.



201
202
203
# File 'lib/akeyless/models/ds_producer_details.rb', line 201

def github_installation_token_repositories
  @github_installation_token_repositories
end

#github_installation_token_repositories_idsObject

Returns the value of attribute github_installation_token_repositories_ids.



203
204
205
# File 'lib/akeyless/models/ds_producer_details.rb', line 203

def github_installation_token_repositories_ids
  @github_installation_token_repositories_ids
end

#github_repository_pathObject

Returns the value of attribute github_repository_path.



205
206
207
# File 'lib/akeyless/models/ds_producer_details.rb', line 205

def github_repository_path
  @github_repository_path
end

#gke_cluster_ca_certificateObject

Returns the value of attribute gke_cluster_ca_certificate.



207
208
209
# File 'lib/akeyless/models/ds_producer_details.rb', line 207

def gke_cluster_ca_certificate
  @gke_cluster_ca_certificate
end

#gke_cluster_endpointObject

Returns the value of attribute gke_cluster_endpoint.



209
210
211
# File 'lib/akeyless/models/ds_producer_details.rb', line 209

def gke_cluster_endpoint
  @gke_cluster_endpoint
end

#gke_cluster_nameObject

Returns the value of attribute gke_cluster_name.



211
212
213
# File 'lib/akeyless/models/ds_producer_details.rb', line 211

def gke_cluster_name
  @gke_cluster_name
end

#gke_service_account_keyObject

Returns the value of attribute gke_service_account_key.



213
214
215
# File 'lib/akeyless/models/ds_producer_details.rb', line 213

def 
  @gke_service_account_key
end

#gke_service_account_nameObject

Returns the value of attribute gke_service_account_name.



215
216
217
# File 'lib/akeyless/models/ds_producer_details.rb', line 215

def 
  @gke_service_account_name
end

#grant_typesObject

Returns the value of attribute grant_types.



217
218
219
# File 'lib/akeyless/models/ds_producer_details.rb', line 217

def grant_types
  @grant_types
end

#groupsObject

Returns the value of attribute groups.



219
220
221
# File 'lib/akeyless/models/ds_producer_details.rb', line 219

def groups
  @groups
end

#hanadb_creation_statementsObject

Returns the value of attribute hanadb_creation_statements.



221
222
223
# File 'lib/akeyless/models/ds_producer_details.rb', line 221

def hanadb_creation_statements
  @hanadb_creation_statements
end

#hanadb_revocation_statementsObject

Returns the value of attribute hanadb_revocation_statements.



223
224
225
# File 'lib/akeyless/models/ds_producer_details.rb', line 223

def hanadb_revocation_statements
  @hanadb_revocation_statements
end

#host_nameObject

Returns the value of attribute host_name.



225
226
227
# File 'lib/akeyless/models/ds_producer_details.rb', line 225

def host_name
  @host_name
end

#host_portObject

Returns the value of attribute host_port.



227
228
229
# File 'lib/akeyless/models/ds_producer_details.rb', line 227

def host_port
  @host_port
end

#implementation_typeObject

Returns the value of attribute implementation_type.



229
230
231
# File 'lib/akeyless/models/ds_producer_details.rb', line 229

def implementation_type
  @implementation_type
end

#is_fixed_userObject

Returns the value of attribute is_fixed_user.



231
232
233
# File 'lib/akeyless/models/ds_producer_details.rb', line 231

def is_fixed_user
  @is_fixed_user
end

#issuerObject

relevant for CLIENT_TLS_CERTIFICATE client authentication type



234
235
236
# File 'lib/akeyless/models/ds_producer_details.rb', line 234

def issuer
  @issuer
end

#item_targets_assocObject

Returns the value of attribute item_targets_assoc.



236
237
238
# File 'lib/akeyless/models/ds_producer_details.rb', line 236

def item_targets_assoc
  @item_targets_assoc
end

#jwksObject

Returns the value of attribute jwks.



238
239
240
# File 'lib/akeyless/models/ds_producer_details.rb', line 238

def jwks
  @jwks
end

#jwks_urlObject

Returns the value of attribute jwks_url.



240
241
242
# File 'lib/akeyless/models/ds_producer_details.rb', line 240

def jwks_url
  @jwks_url
end

#k8s_allowed_namespacesObject

comma-separated list of allowed namespaces. Can hold just * which signifies that any namespace is allowed



243
244
245
# File 'lib/akeyless/models/ds_producer_details.rb', line 243

def k8s_allowed_namespaces
  @k8s_allowed_namespaces
end

#k8s_bearer_tokenObject

Returns the value of attribute k8s_bearer_token.



245
246
247
# File 'lib/akeyless/models/ds_producer_details.rb', line 245

def k8s_bearer_token
  @k8s_bearer_token
end

#k8s_cluster_ca_certificateObject

Returns the value of attribute k8s_cluster_ca_certificate.



247
248
249
# File 'lib/akeyless/models/ds_producer_details.rb', line 247

def k8s_cluster_ca_certificate
  @k8s_cluster_ca_certificate
end

#k8s_cluster_endpointObject

Returns the value of attribute k8s_cluster_endpoint.



249
250
251
# File 'lib/akeyless/models/ds_producer_details.rb', line 249

def k8s_cluster_endpoint
  @k8s_cluster_endpoint
end

#k8s_dynamic_modeObject

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



252
253
254
# File 'lib/akeyless/models/ds_producer_details.rb', line 252

def k8s_dynamic_mode
  @k8s_dynamic_mode
end

#k8s_namespaceObject

Returns the value of attribute k8s_namespace.



254
255
256
# File 'lib/akeyless/models/ds_producer_details.rb', line 254

def k8s_namespace
  @k8s_namespace
end

#k8s_role_nameObject

Name of the pre-existing Role or ClusterRole to bind a generated service account to.



257
258
259
# File 'lib/akeyless/models/ds_producer_details.rb', line 257

def k8s_role_name
  @k8s_role_name
end

#k8s_role_typeObject

Returns the value of attribute k8s_role_type.



259
260
261
# File 'lib/akeyless/models/ds_producer_details.rb', line 259

def k8s_role_type
  @k8s_role_type
end

#k8s_service_accountObject

Returns the value of attribute k8s_service_account.



261
262
263
# File 'lib/akeyless/models/ds_producer_details.rb', line 261

def 
  @k8s_service_account
end

#k8s_temp_role_binding_definitionObject

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



264
265
266
# File 'lib/akeyless/models/ds_producer_details.rb', line 264

def k8s_temp_role_binding_definition
  @k8s_temp_role_binding_definition
end

#k8s_temp_role_definitionObject

Yaml/Json definition of temporary role that will be created and deleted when TTL is due



267
268
269
# File 'lib/akeyless/models/ds_producer_details.rb', line 267

def k8s_temp_role_definition
  @k8s_temp_role_definition
end

#last_admin_rotationObject

Returns the value of attribute last_admin_rotation.



269
270
271
# File 'lib/akeyless/models/ds_producer_details.rb', line 269

def last_admin_rotation
  @last_admin_rotation
end

#ldap_audienceObject

Returns the value of attribute ldap_audience.



271
272
273
# File 'lib/akeyless/models/ds_producer_details.rb', line 271

def ldap_audience
  @ldap_audience
end

#ldap_bind_dnObject

Returns the value of attribute ldap_bind_dn.



273
274
275
# File 'lib/akeyless/models/ds_producer_details.rb', line 273

def ldap_bind_dn
  @ldap_bind_dn
end

#ldap_bind_passwordObject

Returns the value of attribute ldap_bind_password.



275
276
277
# File 'lib/akeyless/models/ds_producer_details.rb', line 275

def ldap_bind_password
  @ldap_bind_password
end

#ldap_certificateObject

Returns the value of attribute ldap_certificate.



277
278
279
# File 'lib/akeyless/models/ds_producer_details.rb', line 277

def ldap_certificate
  @ldap_certificate
end

#ldap_token_expirationObject

Returns the value of attribute ldap_token_expiration.



279
280
281
# File 'lib/akeyless/models/ds_producer_details.rb', line 279

def ldap_token_expiration
  @ldap_token_expiration
end

#ldap_urlObject

Returns the value of attribute ldap_url.



281
282
283
# File 'lib/akeyless/models/ds_producer_details.rb', line 281

def ldap_url
  @ldap_url
end

#ldap_user_attrObject

Returns the value of attribute ldap_user_attr.



283
284
285
# File 'lib/akeyless/models/ds_producer_details.rb', line 283

def ldap_user_attr
  @ldap_user_attr
end

#ldap_user_dnObject

Returns the value of attribute ldap_user_dn.



285
286
287
# File 'lib/akeyless/models/ds_producer_details.rb', line 285

def ldap_user_dn
  @ldap_user_dn
end

#metadataObject

Returns the value of attribute metadata.



287
288
289
# File 'lib/akeyless/models/ds_producer_details.rb', line 287

def 
  @metadata
end

#mongodb_atlas_api_private_keyObject

Returns the value of attribute mongodb_atlas_api_private_key.



289
290
291
# File 'lib/akeyless/models/ds_producer_details.rb', line 289

def mongodb_atlas_api_private_key
  @mongodb_atlas_api_private_key
end

#mongodb_atlas_api_public_keyObject

Returns the value of attribute mongodb_atlas_api_public_key.



291
292
293
# File 'lib/akeyless/models/ds_producer_details.rb', line 291

def mongodb_atlas_api_public_key
  @mongodb_atlas_api_public_key
end

#mongodb_atlas_project_idObject

mongodb atlas fields



294
295
296
# File 'lib/akeyless/models/ds_producer_details.rb', line 294

def mongodb_atlas_project_id
  @mongodb_atlas_project_id
end

#mongodb_custom_dataObject

Returns the value of attribute mongodb_custom_data.



296
297
298
# File 'lib/akeyless/models/ds_producer_details.rb', line 296

def mongodb_custom_data
  @mongodb_custom_data
end

#mongodb_db_nameObject

common fields



299
300
301
# File 'lib/akeyless/models/ds_producer_details.rb', line 299

def mongodb_db_name
  @mongodb_db_name
end

#mongodb_default_auth_dbObject

Returns the value of attribute mongodb_default_auth_db.



301
302
303
# File 'lib/akeyless/models/ds_producer_details.rb', line 301

def mongodb_default_auth_db
  @mongodb_default_auth_db
end

#mongodb_host_portObject

Returns the value of attribute mongodb_host_port.



303
304
305
# File 'lib/akeyless/models/ds_producer_details.rb', line 303

def mongodb_host_port
  @mongodb_host_port
end

#mongodb_is_atlasObject

Returns the value of attribute mongodb_is_atlas.



305
306
307
# File 'lib/akeyless/models/ds_producer_details.rb', line 305

def mongodb_is_atlas
  @mongodb_is_atlas
end

#mongodb_passwordObject

Returns the value of attribute mongodb_password.



307
308
309
# File 'lib/akeyless/models/ds_producer_details.rb', line 307

def mongodb_password
  @mongodb_password
end

#mongodb_rolesObject

common fields



310
311
312
# File 'lib/akeyless/models/ds_producer_details.rb', line 310

def mongodb_roles
  @mongodb_roles
end

#mongodb_uri_connectionObject

mongodb fields



313
314
315
# File 'lib/akeyless/models/ds_producer_details.rb', line 313

def mongodb_uri_connection
  @mongodb_uri_connection
end

#mongodb_uri_optionsObject

Returns the value of attribute mongodb_uri_options.



315
316
317
# File 'lib/akeyless/models/ds_producer_details.rb', line 315

def mongodb_uri_options
  @mongodb_uri_options
end

#mongodb_usernameObject

Returns the value of attribute mongodb_username.



317
318
319
# File 'lib/akeyless/models/ds_producer_details.rb', line 317

def mongodb_username
  @mongodb_username
end

#mssql_creation_statementsObject

Returns the value of attribute mssql_creation_statements.



319
320
321
# File 'lib/akeyless/models/ds_producer_details.rb', line 319

def mssql_creation_statements
  @mssql_creation_statements
end

#mssql_revocation_statementsObject

Returns the value of attribute mssql_revocation_statements.



321
322
323
# File 'lib/akeyless/models/ds_producer_details.rb', line 321

def mssql_revocation_statements
  @mssql_revocation_statements
end

#mysql_creation_statementsObject

Returns the value of attribute mysql_creation_statements.



323
324
325
# File 'lib/akeyless/models/ds_producer_details.rb', line 323

def mysql_creation_statements
  @mysql_creation_statements
end

#oracle_creation_statementsObject

Returns the value of attribute oracle_creation_statements.



325
326
327
# File 'lib/akeyless/models/ds_producer_details.rb', line 325

def oracle_creation_statements
  @oracle_creation_statements
end

#passwordObject

Returns the value of attribute password.



327
328
329
# File 'lib/akeyless/models/ds_producer_details.rb', line 327

def password
  @password
end

#password_lengthObject

Returns the value of attribute password_length.



329
330
331
# File 'lib/akeyless/models/ds_producer_details.rb', line 329

def password_length
  @password_length
end

#password_policyObject

Returns the value of attribute password_policy.



331
332
333
# File 'lib/akeyless/models/ds_producer_details.rb', line 331

def password_policy
  @password_policy
end

#payloadObject

Returns the value of attribute payload.



333
334
335
# File 'lib/akeyless/models/ds_producer_details.rb', line 333

def payload
  @payload
end

#ping_urlObject

Returns the value of attribute ping_url.



335
336
337
# File 'lib/akeyless/models/ds_producer_details.rb', line 335

def ping_url
  @ping_url
end

#postgres_creation_statementsObject

Returns the value of attribute postgres_creation_statements.



337
338
339
# File 'lib/akeyless/models/ds_producer_details.rb', line 337

def postgres_creation_statements
  @postgres_creation_statements
end

#postgres_revocation_statementsObject

Returns the value of attribute postgres_revocation_statements.



339
340
341
# File 'lib/akeyless/models/ds_producer_details.rb', line 339

def postgres_revocation_statements
  @postgres_revocation_statements
end

#privileged_userObject

Returns the value of attribute privileged_user.



341
342
343
# File 'lib/akeyless/models/ds_producer_details.rb', line 341

def privileged_user
  @privileged_user
end

#rabbitmq_server_passwordObject

Returns the value of attribute rabbitmq_server_password.



343
344
345
# File 'lib/akeyless/models/ds_producer_details.rb', line 343

def rabbitmq_server_password
  @rabbitmq_server_password
end

#rabbitmq_server_uriObject

Returns the value of attribute rabbitmq_server_uri.



345
346
347
# File 'lib/akeyless/models/ds_producer_details.rb', line 345

def rabbitmq_server_uri
  @rabbitmq_server_uri
end

#rabbitmq_server_userObject

Returns the value of attribute rabbitmq_server_user.



347
348
349
# File 'lib/akeyless/models/ds_producer_details.rb', line 347

def rabbitmq_server_user
  @rabbitmq_server_user
end

#rabbitmq_user_conf_permissionObject

Returns the value of attribute rabbitmq_user_conf_permission.



349
350
351
# File 'lib/akeyless/models/ds_producer_details.rb', line 349

def rabbitmq_user_conf_permission
  @rabbitmq_user_conf_permission
end

#rabbitmq_user_read_permissionObject

Returns the value of attribute rabbitmq_user_read_permission.



351
352
353
# File 'lib/akeyless/models/ds_producer_details.rb', line 351

def rabbitmq_user_read_permission
  @rabbitmq_user_read_permission
end

#rabbitmq_user_tagsObject

Returns the value of attribute rabbitmq_user_tags.



353
354
355
# File 'lib/akeyless/models/ds_producer_details.rb', line 353

def rabbitmq_user_tags
  @rabbitmq_user_tags
end

#rabbitmq_user_vhostObject

Returns the value of attribute rabbitmq_user_vhost.



355
356
357
# File 'lib/akeyless/models/ds_producer_details.rb', line 355

def rabbitmq_user_vhost
  @rabbitmq_user_vhost
end

#rabbitmq_user_write_permissionObject

Returns the value of attribute rabbitmq_user_write_permission.



357
358
359
# File 'lib/akeyless/models/ds_producer_details.rb', line 357

def rabbitmq_user_write_permission
  @rabbitmq_user_write_permission
end

#redirect_urisObject

Returns the value of attribute redirect_uris.



359
360
361
# File 'lib/akeyless/models/ds_producer_details.rb', line 359

def redirect_uris
  @redirect_uris
end

#redshift_creation_statementsObject

Returns the value of attribute redshift_creation_statements.



361
362
363
# File 'lib/akeyless/models/ds_producer_details.rb', line 361

def redshift_creation_statements
  @redshift_creation_statements
end

#restricted_scopesObject

Returns the value of attribute restricted_scopes.



363
364
365
# File 'lib/akeyless/models/ds_producer_details.rb', line 363

def restricted_scopes
  @restricted_scopes
end

#revoke_sync_urlObject

Returns the value of attribute revoke_sync_url.



365
366
367
# File 'lib/akeyless/models/ds_producer_details.rb', line 365

def revoke_sync_url
  @revoke_sync_url
end

#rotate_sync_urlObject

Returns the value of attribute rotate_sync_url.



367
368
369
# File 'lib/akeyless/models/ds_producer_details.rb', line 367

def rotate_sync_url
  @rotate_sync_url
end

#scopesObject

Returns the value of attribute scopes.



369
370
371
# File 'lib/akeyless/models/ds_producer_details.rb', line 369

def scopes
  @scopes
end

#secure_remote_access_detailsObject

Returns the value of attribute secure_remote_access_details.



371
372
373
# File 'lib/akeyless/models/ds_producer_details.rb', line 371

def secure_remote_access_details
  @secure_remote_access_details
end

#session_extension_warn_interval_minObject

Returns the value of attribute session_extension_warn_interval_min.



373
374
375
# File 'lib/akeyless/models/ds_producer_details.rb', line 373

def session_extension_warn_interval_min
  @session_extension_warn_interval_min
end

#sf_accountObject

Returns the value of attribute sf_account.



375
376
377
# File 'lib/akeyless/models/ds_producer_details.rb', line 375

def 
  @sf_account
end

#sf_user_roleObject

generated users info



378
379
380
# File 'lib/akeyless/models/ds_producer_details.rb', line 378

def sf_user_role
  @sf_user_role
end

#sf_warehouse_nameObject

Returns the value of attribute sf_warehouse_name.



380
381
382
# File 'lib/akeyless/models/ds_producer_details.rb', line 380

def sf_warehouse_name
  @sf_warehouse_name
end

#should_stopObject

TODO delete this after migration



383
384
385
# File 'lib/akeyless/models/ds_producer_details.rb', line 383

def should_stop
  @should_stop
end

#signing_algorithmObject

Returns the value of attribute signing_algorithm.



385
386
387
# File 'lib/akeyless/models/ds_producer_details.rb', line 385

def signing_algorithm
  @signing_algorithm
end

#ssl_connection_certificateObject

(Optional) SSLConnectionCertificate defines the certificate for SSL connection. Must be base64 certificate loaded by UI using file loader field



388
389
390
# File 'lib/akeyless/models/ds_producer_details.rb', line 388

def ssl_connection_certificate
  @ssl_connection_certificate
end

#ssl_connection_modeObject

(Optional) SSLConnectionMode defines if SSL mode will be used to connect to DB



391
392
393
# File 'lib/akeyless/models/ds_producer_details.rb', line 391

def ssl_connection_mode
  @ssl_connection_mode
end

#subject_dnObject

Returns the value of attribute subject_dn.



393
394
395
# File 'lib/akeyless/models/ds_producer_details.rb', line 393

def subject_dn
  @subject_dn
end

#tagsObject

Returns the value of attribute tags.



395
396
397
# File 'lib/akeyless/models/ds_producer_details.rb', line 395

def tags
  @tags
end

#timeout_secondsObject

Returns the value of attribute timeout_seconds.



397
398
399
# File 'lib/akeyless/models/ds_producer_details.rb', line 397

def timeout_seconds
  @timeout_seconds
end

#use_gw_cloud_identityObject

Returns the value of attribute use_gw_cloud_identity.



399
400
401
# File 'lib/akeyless/models/ds_producer_details.rb', line 399

def use_gw_cloud_identity
  @use_gw_cloud_identity
end

#user_nameObject

Returns the value of attribute user_name.



401
402
403
# File 'lib/akeyless/models/ds_producer_details.rb', line 401

def user_name
  @user_name
end

#user_passwordObject

Returns the value of attribute user_password.



403
404
405
# File 'lib/akeyless/models/ds_producer_details.rb', line 403

def user_password
  @user_password
end

#user_principal_nameObject

Returns the value of attribute user_principal_name.



405
406
407
# File 'lib/akeyless/models/ds_producer_details.rb', line 405

def user_principal_name
  @user_principal_name
end

#user_ttlObject

Returns the value of attribute user_ttl.



407
408
409
# File 'lib/akeyless/models/ds_producer_details.rb', line 407

def user_ttl
  @user_ttl
end

#username_lengthObject

Returns the value of attribute username_length.



409
410
411
# File 'lib/akeyless/models/ds_producer_details.rb', line 409

def username_length
  @username_length
end

#username_policyObject

Returns the value of attribute username_policy.



411
412
413
# File 'lib/akeyless/models/ds_producer_details.rb', line 411

def username_policy
  @username_policy
end

#venafi_allow_subdomainsObject

Returns the value of attribute venafi_allow_subdomains.



413
414
415
# File 'lib/akeyless/models/ds_producer_details.rb', line 413

def venafi_allow_subdomains
  @venafi_allow_subdomains
end

#venafi_allowed_domainsObject

Returns the value of attribute venafi_allowed_domains.



415
416
417
# File 'lib/akeyless/models/ds_producer_details.rb', line 415

def venafi_allowed_domains
  @venafi_allowed_domains
end

#venafi_api_keyObject

Returns the value of attribute venafi_api_key.



417
418
419
# File 'lib/akeyless/models/ds_producer_details.rb', line 417

def venafi_api_key
  @venafi_api_key
end

#venafi_auto_generated_folderObject

Returns the value of attribute venafi_auto_generated_folder.



419
420
421
# File 'lib/akeyless/models/ds_producer_details.rb', line 419

def venafi_auto_generated_folder
  @venafi_auto_generated_folder
end

#venafi_base_urlObject

Returns the value of attribute venafi_base_url.



421
422
423
# File 'lib/akeyless/models/ds_producer_details.rb', line 421

def venafi_base_url
  @venafi_base_url
end

#venafi_root_first_in_chainObject

Returns the value of attribute venafi_root_first_in_chain.



423
424
425
# File 'lib/akeyless/models/ds_producer_details.rb', line 423

def venafi_root_first_in_chain
  @venafi_root_first_in_chain
end

#venafi_sign_using_akeyless_pkiObject

Returns the value of attribute venafi_sign_using_akeyless_pki.



425
426
427
# File 'lib/akeyless/models/ds_producer_details.rb', line 425

def venafi_sign_using_akeyless_pki
  @venafi_sign_using_akeyless_pki
end

#venafi_signer_key_nameObject

Returns the value of attribute venafi_signer_key_name.



427
428
429
# File 'lib/akeyless/models/ds_producer_details.rb', line 427

def venafi_signer_key_name
  @venafi_signer_key_name
end

#venafi_store_private_keyObject

Returns the value of attribute venafi_store_private_key.



429
430
431
# File 'lib/akeyless/models/ds_producer_details.rb', line 429

def venafi_store_private_key
  @venafi_store_private_key
end

#venafi_tpp_passwordObject

Returns the value of attribute venafi_tpp_password.



431
432
433
# File 'lib/akeyless/models/ds_producer_details.rb', line 431

def venafi_tpp_password
  @venafi_tpp_password
end

#venafi_tpp_usernameObject

Returns the value of attribute venafi_tpp_username.



433
434
435
# File 'lib/akeyless/models/ds_producer_details.rb', line 433

def venafi_tpp_username
  @venafi_tpp_username
end

#venafi_use_tppObject

Returns the value of attribute venafi_use_tpp.



435
436
437
# File 'lib/akeyless/models/ds_producer_details.rb', line 435

def venafi_use_tpp
  @venafi_use_tpp
end

#venafi_zoneObject

Returns the value of attribute venafi_zone.



437
438
439
# File 'lib/akeyless/models/ds_producer_details.rb', line 437

def venafi_zone
  @venafi_zone
end

#warn_before_user_expiration_minObject

Returns the value of attribute warn_before_user_expiration_min.



439
440
441
# File 'lib/akeyless/models/ds_producer_details.rb', line 439

def warn_before_user_expiration_min
  @warn_before_user_expiration_min
end

Class Method Details

.acceptable_attributesObject

Returns all the JSON keys this model knows about



650
651
652
# File 'lib/akeyless/models/ds_producer_details.rb', line 650

def self.acceptable_attributes
  attribute_map.values
end

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
# File 'lib/akeyless/models/ds_producer_details.rb', line 442

def self.attribute_map
  {
    :'access_token_manager_id' => :'access_token_manager_id',
    :'active' => :'active',
    :'admin_name' => :'admin_name',
    :'admin_pwd' => :'admin_pwd',
    :'admin_rotation_interval_days' => :'admin_rotation_interval_days',
    :'administrative_port' => :'administrative_port',
    :'artifactory_admin_apikey' => :'artifactory_admin_apikey',
    :'artifactory_admin_username' => :'artifactory_admin_username',
    :'artifactory_base_url' => :'artifactory_base_url',
    :'artifactory_token_audience' => :'artifactory_token_audience',
    :'artifactory_token_scope' => :'artifactory_token_scope',
    :'authorization_port' => :'authorization_port',
    :'aws_access_key_id' => :'aws_access_key_id',
    :'aws_access_mode' => :'aws_access_mode',
    :'aws_region' => :'aws_region',
    :'aws_role_arns' => :'aws_role_arns',
    :'aws_secret_access_key' => :'aws_secret_access_key',
    :'aws_session_token' => :'aws_session_token',
    :'aws_user_console_access' => :'aws_user_console_access',
    :'aws_user_groups' => :'aws_user_groups',
    :'aws_user_policies' => :'aws_user_policies',
    :'aws_user_programmatic_access' => :'aws_user_programmatic_access',
    :'azure_app_object_id' => :'azure_app_object_id',
    :'azure_client_id' => :'azure_client_id',
    :'azure_client_secret' => :'azure_client_secret',
    :'azure_fixed_user_name_sub_claim_key' => :'azure_fixed_user_name_sub_claim_key',
    :'azure_fixed_user_only' => :'azure_fixed_user_only',
    :'azure_resource_group_name' => :'azure_resource_group_name',
    :'azure_resource_name' => :'azure_resource_name',
    :'azure_subscription_id' => :'azure_subscription_id',
    :'azure_tenant_id' => :'azure_tenant_id',
    :'azure_user_groups_obj_id' => :'azure_user_groups_obj_id',
    :'azure_user_portal_access' => :'azure_user_portal_access',
    :'azure_user_programmatic_access' => :'azure_user_programmatic_access',
    :'azure_user_roles_template_id' => :'azure_user_roles_template_id',
    :'cassandra_creation_statements' => :'cassandra_creation_statements',
    :'chef_organizations' => :'chef_organizations',
    :'chef_server_access_mode' => :'chef_server_access_mode',
    :'chef_server_host_name' => :'chef_server_host_name',
    :'chef_server_key' => :'chef_server_key',
    :'chef_server_port' => :'chef_server_port',
    :'chef_server_url' => :'chef_server_url',
    :'chef_server_username' => :'chef_server_username',
    :'chef_skip_ssl' => :'chef_skip_ssl',
    :'client_authentication_type' => :'client_authentication_type',
    :'create_sync_url' => :'create_sync_url',
    :'db_host_name' => :'db_host_name',
    :'db_isolation_level' => :'db_isolation_level',
    :'db_max_idle_conns' => :'db_max_idle_conns',
    :'db_max_open_conns' => :'db_max_open_conns',
    :'db_name' => :'db_name',
    :'db_port' => :'db_port',
    :'db_private_key' => :'db_private_key',
    :'db_private_key_passphrase' => :'db_private_key_passphrase',
    :'db_pwd' => :'db_pwd',
    :'db_server_certificates' => :'db_server_certificates',
    :'db_server_name' => :'db_server_name',
    :'db_user_name' => :'db_user_name',
    :'delete_protection' => :'delete_protection',
    :'dynamic_secret_id' => :'dynamic_secret_id',
    :'dynamic_secret_key' => :'dynamic_secret_key',
    :'dynamic_secret_name' => :'dynamic_secret_name',
    :'dynamic_secret_type' => :'dynamic_secret_type',
    :'eks_access_key_id' => :'eks_access_key_id',
    :'eks_assume_role' => :'eks_assume_role',
    :'eks_cluster_ca_certificate' => :'eks_cluster_ca_certificate',
    :'eks_cluster_endpoint' => :'eks_cluster_endpoint',
    :'eks_cluster_name' => :'eks_cluster_name',
    :'eks_region' => :'eks_region',
    :'eks_secret_access_key' => :'eks_secret_access_key',
    :'enable_admin_rotation' => :'enable_admin_rotation',
    :'enforce_replay_prevention' => :'enforce_replay_prevention',
    :'externally_provided_user' => :'externally_provided_user',
    :'failure_message' => :'failure_message',
    :'fixed_user_only' => :'fixed_user_only',
    :'gcp_key_algo' => :'gcp_key_algo',
    :'gcp_role_bindings' => :'gcp_role_bindings',
    :'gcp_service_account_email' => :'gcp_service_account_email',
    :'gcp_service_account_key' => :'gcp_service_account_key',
    :'gcp_service_account_type' => :'gcp_service_account_type',
    :'gcp_tmp_service_account_name' => :'gcp_tmp_service_account_name',
    :'gcp_token_lifetime' => :'gcp_token_lifetime',
    :'gcp_token_scope' => :'gcp_token_scope',
    :'gcp_token_type' => :'gcp_token_type',
    :'github_app_id' => :'github_app_id',
    :'github_app_private_key' => :'github_app_private_key',
    :'github_base_url' => :'github_base_url',
    :'github_installation_id' => :'github_installation_id',
    :'github_installation_token_permissions' => :'github_installation_token_permissions',
    :'github_installation_token_repositories' => :'github_installation_token_repositories',
    :'github_installation_token_repositories_ids' => :'github_installation_token_repositories_ids',
    :'github_repository_path' => :'github_repository_path',
    :'gke_cluster_ca_certificate' => :'gke_cluster_ca_certificate',
    :'gke_cluster_endpoint' => :'gke_cluster_endpoint',
    :'gke_cluster_name' => :'gke_cluster_name',
    :'gke_service_account_key' => :'gke_service_account_key',
    :'gke_service_account_name' => :'gke_service_account_name',
    :'grant_types' => :'grant_types',
    :'groups' => :'groups',
    :'hanadb_creation_statements' => :'hanadb_creation_statements',
    :'hanadb_revocation_statements' => :'hanadb_revocation_statements',
    :'host_name' => :'host_name',
    :'host_port' => :'host_port',
    :'implementation_type' => :'implementation_type',
    :'is_fixed_user' => :'is_fixed_user',
    :'issuer' => :'issuer',
    :'item_targets_assoc' => :'item_targets_assoc',
    :'jwks' => :'jwks',
    :'jwks_url' => :'jwks_url',
    :'k8s_allowed_namespaces' => :'k8s_allowed_namespaces',
    :'k8s_bearer_token' => :'k8s_bearer_token',
    :'k8s_cluster_ca_certificate' => :'k8s_cluster_ca_certificate',
    :'k8s_cluster_endpoint' => :'k8s_cluster_endpoint',
    :'k8s_dynamic_mode' => :'k8s_dynamic_mode',
    :'k8s_namespace' => :'k8s_namespace',
    :'k8s_role_name' => :'k8s_role_name',
    :'k8s_role_type' => :'k8s_role_type',
    :'k8s_service_account' => :'k8s_service_account',
    :'k8s_temp_role_binding_definition' => :'k8s_temp_role_binding_definition',
    :'k8s_temp_role_definition' => :'k8s_temp_role_definition',
    :'last_admin_rotation' => :'last_admin_rotation',
    :'ldap_audience' => :'ldap_audience',
    :'ldap_bind_dn' => :'ldap_bind_dn',
    :'ldap_bind_password' => :'ldap_bind_password',
    :'ldap_certificate' => :'ldap_certificate',
    :'ldap_token_expiration' => :'ldap_token_expiration',
    :'ldap_url' => :'ldap_url',
    :'ldap_user_attr' => :'ldap_user_attr',
    :'ldap_user_dn' => :'ldap_user_dn',
    :'metadata' => :'metadata',
    :'mongodb_atlas_api_private_key' => :'mongodb_atlas_api_private_key',
    :'mongodb_atlas_api_public_key' => :'mongodb_atlas_api_public_key',
    :'mongodb_atlas_project_id' => :'mongodb_atlas_project_id',
    :'mongodb_custom_data' => :'mongodb_custom_data',
    :'mongodb_db_name' => :'mongodb_db_name',
    :'mongodb_default_auth_db' => :'mongodb_default_auth_db',
    :'mongodb_host_port' => :'mongodb_host_port',
    :'mongodb_is_atlas' => :'mongodb_is_atlas',
    :'mongodb_password' => :'mongodb_password',
    :'mongodb_roles' => :'mongodb_roles',
    :'mongodb_uri_connection' => :'mongodb_uri_connection',
    :'mongodb_uri_options' => :'mongodb_uri_options',
    :'mongodb_username' => :'mongodb_username',
    :'mssql_creation_statements' => :'mssql_creation_statements',
    :'mssql_revocation_statements' => :'mssql_revocation_statements',
    :'mysql_creation_statements' => :'mysql_creation_statements',
    :'oracle_creation_statements' => :'oracle_creation_statements',
    :'password' => :'password',
    :'password_length' => :'password_length',
    :'password_policy' => :'password_policy',
    :'payload' => :'payload',
    :'ping_url' => :'ping_url',
    :'postgres_creation_statements' => :'postgres_creation_statements',
    :'postgres_revocation_statements' => :'postgres_revocation_statements',
    :'privileged_user' => :'privileged_user',
    :'rabbitmq_server_password' => :'rabbitmq_server_password',
    :'rabbitmq_server_uri' => :'rabbitmq_server_uri',
    :'rabbitmq_server_user' => :'rabbitmq_server_user',
    :'rabbitmq_user_conf_permission' => :'rabbitmq_user_conf_permission',
    :'rabbitmq_user_read_permission' => :'rabbitmq_user_read_permission',
    :'rabbitmq_user_tags' => :'rabbitmq_user_tags',
    :'rabbitmq_user_vhost' => :'rabbitmq_user_vhost',
    :'rabbitmq_user_write_permission' => :'rabbitmq_user_write_permission',
    :'redirect_uris' => :'redirect_uris',
    :'redshift_creation_statements' => :'redshift_creation_statements',
    :'restricted_scopes' => :'restricted_scopes',
    :'revoke_sync_url' => :'revoke_sync_url',
    :'rotate_sync_url' => :'rotate_sync_url',
    :'scopes' => :'scopes',
    :'secure_remote_access_details' => :'secure_remote_access_details',
    :'session_extension_warn_interval_min' => :'session_extension_warn_interval_min',
    :'sf_account' => :'sf_account',
    :'sf_user_role' => :'sf_user_role',
    :'sf_warehouse_name' => :'sf_warehouse_name',
    :'should_stop' => :'should_stop',
    :'signing_algorithm' => :'signing_algorithm',
    :'ssl_connection_certificate' => :'ssl_connection_certificate',
    :'ssl_connection_mode' => :'ssl_connection_mode',
    :'subject_dn' => :'subject_dn',
    :'tags' => :'tags',
    :'timeout_seconds' => :'timeout_seconds',
    :'use_gw_cloud_identity' => :'use_gw_cloud_identity',
    :'user_name' => :'user_name',
    :'user_password' => :'user_password',
    :'user_principal_name' => :'user_principal_name',
    :'user_ttl' => :'user_ttl',
    :'username_length' => :'username_length',
    :'username_policy' => :'username_policy',
    :'venafi_allow_subdomains' => :'venafi_allow_subdomains',
    :'venafi_allowed_domains' => :'venafi_allowed_domains',
    :'venafi_api_key' => :'venafi_api_key',
    :'venafi_auto_generated_folder' => :'venafi_auto_generated_folder',
    :'venafi_base_url' => :'venafi_base_url',
    :'venafi_root_first_in_chain' => :'venafi_root_first_in_chain',
    :'venafi_sign_using_akeyless_pki' => :'venafi_sign_using_akeyless_pki',
    :'venafi_signer_key_name' => :'venafi_signer_key_name',
    :'venafi_store_private_key' => :'venafi_store_private_key',
    :'venafi_tpp_password' => :'venafi_tpp_password',
    :'venafi_tpp_username' => :'venafi_tpp_username',
    :'venafi_use_tpp' => :'venafi_use_tpp',
    :'venafi_zone' => :'venafi_zone',
    :'warn_before_user_expiration_min' => :'warn_before_user_expiration_min'
  }
end

.build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



1955
1956
1957
# File 'lib/akeyless/models/ds_producer_details.rb', line 1955

def self.build_from_hash(attributes)
  new.build_from_hash(attributes)
end

.openapi_nullableObject

List of attributes with nullable: true



863
864
865
866
# File 'lib/akeyless/models/ds_producer_details.rb', line 863

def self.openapi_nullable
  Set.new([
  ])
end

.openapi_typesObject

Attribute type mapping.



655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
# File 'lib/akeyless/models/ds_producer_details.rb', line 655

def self.openapi_types
  {
    :'access_token_manager_id' => :'String',
    :'active' => :'Boolean',
    :'admin_name' => :'String',
    :'admin_pwd' => :'String',
    :'admin_rotation_interval_days' => :'Integer',
    :'administrative_port' => :'String',
    :'artifactory_admin_apikey' => :'String',
    :'artifactory_admin_username' => :'String',
    :'artifactory_base_url' => :'String',
    :'artifactory_token_audience' => :'String',
    :'artifactory_token_scope' => :'String',
    :'authorization_port' => :'String',
    :'aws_access_key_id' => :'String',
    :'aws_access_mode' => :'String',
    :'aws_region' => :'String',
    :'aws_role_arns' => :'String',
    :'aws_secret_access_key' => :'String',
    :'aws_session_token' => :'String',
    :'aws_user_console_access' => :'Boolean',
    :'aws_user_groups' => :'String',
    :'aws_user_policies' => :'String',
    :'aws_user_programmatic_access' => :'Boolean',
    :'azure_app_object_id' => :'String',
    :'azure_client_id' => :'String',
    :'azure_client_secret' => :'String',
    :'azure_fixed_user_name_sub_claim_key' => :'String',
    :'azure_fixed_user_only' => :'Boolean',
    :'azure_resource_group_name' => :'String',
    :'azure_resource_name' => :'String',
    :'azure_subscription_id' => :'String',
    :'azure_tenant_id' => :'String',
    :'azure_user_groups_obj_id' => :'String',
    :'azure_user_portal_access' => :'Boolean',
    :'azure_user_programmatic_access' => :'Boolean',
    :'azure_user_roles_template_id' => :'String',
    :'cassandra_creation_statements' => :'String',
    :'chef_organizations' => :'String',
    :'chef_server_access_mode' => :'String',
    :'chef_server_host_name' => :'String',
    :'chef_server_key' => :'String',
    :'chef_server_port' => :'String',
    :'chef_server_url' => :'String',
    :'chef_server_username' => :'String',
    :'chef_skip_ssl' => :'Boolean',
    :'client_authentication_type' => :'String',
    :'create_sync_url' => :'String',
    :'db_host_name' => :'String',
    :'db_isolation_level' => :'String',
    :'db_max_idle_conns' => :'String',
    :'db_max_open_conns' => :'String',
    :'db_name' => :'String',
    :'db_port' => :'String',
    :'db_private_key' => :'String',
    :'db_private_key_passphrase' => :'String',
    :'db_pwd' => :'String',
    :'db_server_certificates' => :'String',
    :'db_server_name' => :'String',
    :'db_user_name' => :'String',
    :'delete_protection' => :'Boolean',
    :'dynamic_secret_id' => :'Integer',
    :'dynamic_secret_key' => :'String',
    :'dynamic_secret_name' => :'String',
    :'dynamic_secret_type' => :'String',
    :'eks_access_key_id' => :'String',
    :'eks_assume_role' => :'String',
    :'eks_cluster_ca_certificate' => :'String',
    :'eks_cluster_endpoint' => :'String',
    :'eks_cluster_name' => :'String',
    :'eks_region' => :'String',
    :'eks_secret_access_key' => :'String',
    :'enable_admin_rotation' => :'Boolean',
    :'enforce_replay_prevention' => :'Boolean',
    :'externally_provided_user' => :'String',
    :'failure_message' => :'String',
    :'fixed_user_only' => :'String',
    :'gcp_key_algo' => :'String',
    :'gcp_role_bindings' => :'Hash<String, Array<String>>',
    :'gcp_service_account_email' => :'String',
    :'gcp_service_account_key' => :'String',
    :'gcp_service_account_type' => :'String',
    :'gcp_tmp_service_account_name' => :'String',
    :'gcp_token_lifetime' => :'String',
    :'gcp_token_scope' => :'String',
    :'gcp_token_type' => :'String',
    :'github_app_id' => :'Integer',
    :'github_app_private_key' => :'String',
    :'github_base_url' => :'String',
    :'github_installation_id' => :'Integer',
    :'github_installation_token_permissions' => :'Hash<String, String>',
    :'github_installation_token_repositories' => :'Array<String>',
    :'github_installation_token_repositories_ids' => :'Array<Integer>',
    :'github_repository_path' => :'String',
    :'gke_cluster_ca_certificate' => :'String',
    :'gke_cluster_endpoint' => :'String',
    :'gke_cluster_name' => :'String',
    :'gke_service_account_key' => :'String',
    :'gke_service_account_name' => :'String',
    :'grant_types' => :'Array<String>',
    :'groups' => :'String',
    :'hanadb_creation_statements' => :'String',
    :'hanadb_revocation_statements' => :'String',
    :'host_name' => :'String',
    :'host_port' => :'String',
    :'implementation_type' => :'String',
    :'is_fixed_user' => :'String',
    :'issuer' => :'String',
    :'item_targets_assoc' => :'Array<ItemTargetAssociation>',
    :'jwks' => :'String',
    :'jwks_url' => :'String',
    :'k8s_allowed_namespaces' => :'String',
    :'k8s_bearer_token' => :'String',
    :'k8s_cluster_ca_certificate' => :'String',
    :'k8s_cluster_endpoint' => :'String',
    :'k8s_dynamic_mode' => :'Boolean',
    :'k8s_namespace' => :'String',
    :'k8s_role_name' => :'String',
    :'k8s_role_type' => :'String',
    :'k8s_service_account' => :'String',
    :'k8s_temp_role_binding_definition' => :'Array<Integer>',
    :'k8s_temp_role_definition' => :'Array<Integer>',
    :'last_admin_rotation' => :'Integer',
    :'ldap_audience' => :'String',
    :'ldap_bind_dn' => :'String',
    :'ldap_bind_password' => :'String',
    :'ldap_certificate' => :'String',
    :'ldap_token_expiration' => :'String',
    :'ldap_url' => :'String',
    :'ldap_user_attr' => :'String',
    :'ldap_user_dn' => :'String',
    :'metadata' => :'String',
    :'mongodb_atlas_api_private_key' => :'String',
    :'mongodb_atlas_api_public_key' => :'String',
    :'mongodb_atlas_project_id' => :'String',
    :'mongodb_custom_data' => :'String',
    :'mongodb_db_name' => :'String',
    :'mongodb_default_auth_db' => :'String',
    :'mongodb_host_port' => :'String',
    :'mongodb_is_atlas' => :'Boolean',
    :'mongodb_password' => :'String',
    :'mongodb_roles' => :'String',
    :'mongodb_uri_connection' => :'String',
    :'mongodb_uri_options' => :'String',
    :'mongodb_username' => :'String',
    :'mssql_creation_statements' => :'String',
    :'mssql_revocation_statements' => :'String',
    :'mysql_creation_statements' => :'String',
    :'oracle_creation_statements' => :'String',
    :'password' => :'String',
    :'password_length' => :'Integer',
    :'password_policy' => :'String',
    :'payload' => :'String',
    :'ping_url' => :'String',
    :'postgres_creation_statements' => :'String',
    :'postgres_revocation_statements' => :'String',
    :'privileged_user' => :'String',
    :'rabbitmq_server_password' => :'String',
    :'rabbitmq_server_uri' => :'String',
    :'rabbitmq_server_user' => :'String',
    :'rabbitmq_user_conf_permission' => :'String',
    :'rabbitmq_user_read_permission' => :'String',
    :'rabbitmq_user_tags' => :'String',
    :'rabbitmq_user_vhost' => :'String',
    :'rabbitmq_user_write_permission' => :'String',
    :'redirect_uris' => :'Array<String>',
    :'redshift_creation_statements' => :'String',
    :'restricted_scopes' => :'Array<String>',
    :'revoke_sync_url' => :'String',
    :'rotate_sync_url' => :'String',
    :'scopes' => :'Array<String>',
    :'secure_remote_access_details' => :'SecureRemoteAccess',
    :'session_extension_warn_interval_min' => :'Integer',
    :'sf_account' => :'String',
    :'sf_user_role' => :'String',
    :'sf_warehouse_name' => :'String',
    :'should_stop' => :'String',
    :'signing_algorithm' => :'String',
    :'ssl_connection_certificate' => :'String',
    :'ssl_connection_mode' => :'Boolean',
    :'subject_dn' => :'String',
    :'tags' => :'Array<String>',
    :'timeout_seconds' => :'Integer',
    :'use_gw_cloud_identity' => :'Boolean',
    :'user_name' => :'String',
    :'user_password' => :'String',
    :'user_principal_name' => :'String',
    :'user_ttl' => :'String',
    :'username_length' => :'Integer',
    :'username_policy' => :'String',
    :'venafi_allow_subdomains' => :'Boolean',
    :'venafi_allowed_domains' => :'Array<String>',
    :'venafi_api_key' => :'String',
    :'venafi_auto_generated_folder' => :'String',
    :'venafi_base_url' => :'String',
    :'venafi_root_first_in_chain' => :'Boolean',
    :'venafi_sign_using_akeyless_pki' => :'Boolean',
    :'venafi_signer_key_name' => :'String',
    :'venafi_store_private_key' => :'Boolean',
    :'venafi_tpp_password' => :'String',
    :'venafi_tpp_username' => :'String',
    :'venafi_use_tpp' => :'Boolean',
    :'venafi_zone' => :'String',
    :'warn_before_user_expiration_min' => :'Integer'
  }
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
# File 'lib/akeyless/models/ds_producer_details.rb', line 1733

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      access_token_manager_id == o.access_token_manager_id &&
      active == o.active &&
      admin_name == o.admin_name &&
      admin_pwd == o.admin_pwd &&
      admin_rotation_interval_days == o.admin_rotation_interval_days &&
      administrative_port == o.administrative_port &&
      artifactory_admin_apikey == o.artifactory_admin_apikey &&
      artifactory_admin_username == o.artifactory_admin_username &&
      artifactory_base_url == o.artifactory_base_url &&
      artifactory_token_audience == o.artifactory_token_audience &&
      artifactory_token_scope == o.artifactory_token_scope &&
      authorization_port == o.authorization_port &&
      aws_access_key_id == o.aws_access_key_id &&
      aws_access_mode == o.aws_access_mode &&
      aws_region == o.aws_region &&
      aws_role_arns == o.aws_role_arns &&
      aws_secret_access_key == o.aws_secret_access_key &&
      aws_session_token == o.aws_session_token &&
      aws_user_console_access == o.aws_user_console_access &&
      aws_user_groups == o.aws_user_groups &&
      aws_user_policies == o.aws_user_policies &&
      aws_user_programmatic_access == o.aws_user_programmatic_access &&
      azure_app_object_id == o.azure_app_object_id &&
      azure_client_id == o.azure_client_id &&
      azure_client_secret == o.azure_client_secret &&
      azure_fixed_user_name_sub_claim_key == o.azure_fixed_user_name_sub_claim_key &&
      azure_fixed_user_only == o.azure_fixed_user_only &&
      azure_resource_group_name == o.azure_resource_group_name &&
      azure_resource_name == o.azure_resource_name &&
      azure_subscription_id == o.azure_subscription_id &&
      azure_tenant_id == o.azure_tenant_id &&
      azure_user_groups_obj_id == o.azure_user_groups_obj_id &&
      azure_user_portal_access == o.azure_user_portal_access &&
      azure_user_programmatic_access == o.azure_user_programmatic_access &&
      azure_user_roles_template_id == o.azure_user_roles_template_id &&
      cassandra_creation_statements == o.cassandra_creation_statements &&
      chef_organizations == o.chef_organizations &&
      chef_server_access_mode == o.chef_server_access_mode &&
      chef_server_host_name == o.chef_server_host_name &&
      chef_server_key == o.chef_server_key &&
      chef_server_port == o.chef_server_port &&
      chef_server_url == o.chef_server_url &&
      chef_server_username == o.chef_server_username &&
      chef_skip_ssl == o.chef_skip_ssl &&
      client_authentication_type == o.client_authentication_type &&
      create_sync_url == o.create_sync_url &&
      db_host_name == o.db_host_name &&
      db_isolation_level == o.db_isolation_level &&
      db_max_idle_conns == o.db_max_idle_conns &&
      db_max_open_conns == o.db_max_open_conns &&
      db_name == o.db_name &&
      db_port == o.db_port &&
      db_private_key == o.db_private_key &&
      db_private_key_passphrase == o.db_private_key_passphrase &&
      db_pwd == o.db_pwd &&
      db_server_certificates == o.db_server_certificates &&
      db_server_name == o.db_server_name &&
      db_user_name == o.db_user_name &&
      delete_protection == o.delete_protection &&
      dynamic_secret_id == o.dynamic_secret_id &&
      dynamic_secret_key == o.dynamic_secret_key &&
      dynamic_secret_name == o.dynamic_secret_name &&
      dynamic_secret_type == o.dynamic_secret_type &&
      eks_access_key_id == o.eks_access_key_id &&
      eks_assume_role == o.eks_assume_role &&
      eks_cluster_ca_certificate == o.eks_cluster_ca_certificate &&
      eks_cluster_endpoint == o.eks_cluster_endpoint &&
      eks_cluster_name == o.eks_cluster_name &&
      eks_region == o.eks_region &&
      eks_secret_access_key == o.eks_secret_access_key &&
      enable_admin_rotation == o.enable_admin_rotation &&
      enforce_replay_prevention == o.enforce_replay_prevention &&
      externally_provided_user == o.externally_provided_user &&
      failure_message == o.failure_message &&
      fixed_user_only == o.fixed_user_only &&
      gcp_key_algo == o.gcp_key_algo &&
      gcp_role_bindings == o.gcp_role_bindings &&
       == o. &&
       == o. &&
       == o. &&
       == o. &&
      gcp_token_lifetime == o.gcp_token_lifetime &&
      gcp_token_scope == o.gcp_token_scope &&
      gcp_token_type == o.gcp_token_type &&
      github_app_id == o.github_app_id &&
      github_app_private_key == o.github_app_private_key &&
      github_base_url == o.github_base_url &&
      github_installation_id == o.github_installation_id &&
      github_installation_token_permissions == o.github_installation_token_permissions &&
      github_installation_token_repositories == o.github_installation_token_repositories &&
      github_installation_token_repositories_ids == o.github_installation_token_repositories_ids &&
      github_repository_path == o.github_repository_path &&
      gke_cluster_ca_certificate == o.gke_cluster_ca_certificate &&
      gke_cluster_endpoint == o.gke_cluster_endpoint &&
      gke_cluster_name == o.gke_cluster_name &&
       == o. &&
       == o. &&
      grant_types == o.grant_types &&
      groups == o.groups &&
      hanadb_creation_statements == o.hanadb_creation_statements &&
      hanadb_revocation_statements == o.hanadb_revocation_statements &&
      host_name == o.host_name &&
      host_port == o.host_port &&
      implementation_type == o.implementation_type &&
      is_fixed_user == o.is_fixed_user &&
      issuer == o.issuer &&
      item_targets_assoc == o.item_targets_assoc &&
      jwks == o.jwks &&
      jwks_url == o.jwks_url &&
      k8s_allowed_namespaces == o.k8s_allowed_namespaces &&
      k8s_bearer_token == o.k8s_bearer_token &&
      k8s_cluster_ca_certificate == o.k8s_cluster_ca_certificate &&
      k8s_cluster_endpoint == o.k8s_cluster_endpoint &&
      k8s_dynamic_mode == o.k8s_dynamic_mode &&
      k8s_namespace == o.k8s_namespace &&
      k8s_role_name == o.k8s_role_name &&
      k8s_role_type == o.k8s_role_type &&
       == o. &&
      k8s_temp_role_binding_definition == o.k8s_temp_role_binding_definition &&
      k8s_temp_role_definition == o.k8s_temp_role_definition &&
      last_admin_rotation == o.last_admin_rotation &&
      ldap_audience == o.ldap_audience &&
      ldap_bind_dn == o.ldap_bind_dn &&
      ldap_bind_password == o.ldap_bind_password &&
      ldap_certificate == o.ldap_certificate &&
      ldap_token_expiration == o.ldap_token_expiration &&
      ldap_url == o.ldap_url &&
      ldap_user_attr == o.ldap_user_attr &&
      ldap_user_dn == o.ldap_user_dn &&
       == o. &&
      mongodb_atlas_api_private_key == o.mongodb_atlas_api_private_key &&
      mongodb_atlas_api_public_key == o.mongodb_atlas_api_public_key &&
      mongodb_atlas_project_id == o.mongodb_atlas_project_id &&
      mongodb_custom_data == o.mongodb_custom_data &&
      mongodb_db_name == o.mongodb_db_name &&
      mongodb_default_auth_db == o.mongodb_default_auth_db &&
      mongodb_host_port == o.mongodb_host_port &&
      mongodb_is_atlas == o.mongodb_is_atlas &&
      mongodb_password == o.mongodb_password &&
      mongodb_roles == o.mongodb_roles &&
      mongodb_uri_connection == o.mongodb_uri_connection &&
      mongodb_uri_options == o.mongodb_uri_options &&
      mongodb_username == o.mongodb_username &&
      mssql_creation_statements == o.mssql_creation_statements &&
      mssql_revocation_statements == o.mssql_revocation_statements &&
      mysql_creation_statements == o.mysql_creation_statements &&
      oracle_creation_statements == o.oracle_creation_statements &&
      password == o.password &&
      password_length == o.password_length &&
      password_policy == o.password_policy &&
      payload == o.payload &&
      ping_url == o.ping_url &&
      postgres_creation_statements == o.postgres_creation_statements &&
      postgres_revocation_statements == o.postgres_revocation_statements &&
      privileged_user == o.privileged_user &&
      rabbitmq_server_password == o.rabbitmq_server_password &&
      rabbitmq_server_uri == o.rabbitmq_server_uri &&
      rabbitmq_server_user == o.rabbitmq_server_user &&
      rabbitmq_user_conf_permission == o.rabbitmq_user_conf_permission &&
      rabbitmq_user_read_permission == o.rabbitmq_user_read_permission &&
      rabbitmq_user_tags == o.rabbitmq_user_tags &&
      rabbitmq_user_vhost == o.rabbitmq_user_vhost &&
      rabbitmq_user_write_permission == o.rabbitmq_user_write_permission &&
      redirect_uris == o.redirect_uris &&
      redshift_creation_statements == o.redshift_creation_statements &&
      restricted_scopes == o.restricted_scopes &&
      revoke_sync_url == o.revoke_sync_url &&
      rotate_sync_url == o.rotate_sync_url &&
      scopes == o.scopes &&
      secure_remote_access_details == o.secure_remote_access_details &&
      session_extension_warn_interval_min == o.session_extension_warn_interval_min &&
       == o. &&
      sf_user_role == o.sf_user_role &&
      sf_warehouse_name == o.sf_warehouse_name &&
      should_stop == o.should_stop &&
      signing_algorithm == o.signing_algorithm &&
      ssl_connection_certificate == o.ssl_connection_certificate &&
      ssl_connection_mode == o.ssl_connection_mode &&
      subject_dn == o.subject_dn &&
      tags == o.tags &&
      timeout_seconds == o.timeout_seconds &&
      use_gw_cloud_identity == o.use_gw_cloud_identity &&
      user_name == o.user_name &&
      user_password == o.user_password &&
      user_principal_name == o.user_principal_name &&
      user_ttl == o.user_ttl &&
      username_length == o.username_length &&
      username_policy == o.username_policy &&
      venafi_allow_subdomains == o.venafi_allow_subdomains &&
      venafi_allowed_domains == o.venafi_allowed_domains &&
      venafi_api_key == o.venafi_api_key &&
      venafi_auto_generated_folder == o.venafi_auto_generated_folder &&
      venafi_base_url == o.venafi_base_url &&
      venafi_root_first_in_chain == o.venafi_root_first_in_chain &&
      venafi_sign_using_akeyless_pki == o.venafi_sign_using_akeyless_pki &&
      venafi_signer_key_name == o.venafi_signer_key_name &&
      venafi_store_private_key == o.venafi_store_private_key &&
      venafi_tpp_password == o.venafi_tpp_password &&
      venafi_tpp_username == o.venafi_tpp_username &&
      venafi_use_tpp == o.venafi_use_tpp &&
      venafi_zone == o.venafi_zone &&
      warn_before_user_expiration_min == o.warn_before_user_expiration_min
end

#_deserialize(type, value) ⇒ Object

Deserializes the data based on type

Parameters:

  • string

    type Data type

  • string

    value Value to be deserialized

Returns:

  • (Object)

    Deserialized data



1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
# File 'lib/akeyless/models/ds_producer_details.rb', line 1986

def _deserialize(type, value)
  case type.to_sym
  when :Time
    Time.parse(value)
  when :Date
    Date.parse(value)
  when :String
    value.to_s
  when :Integer
    value.to_i
  when :Float
    value.to_f
  when :Boolean
    if value.to_s =~ /\A(true|t|yes|y|1)\z/i
      true
    else
      false
    end
  when :Object
    # generic object (usually a Hash), return directly
    value
  when /\AArray<(?<inner_type>.+)>\z/
    inner_type = Regexp.last_match[:inner_type]
    value.map { |v| _deserialize(inner_type, v) }
  when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
    k_type = Regexp.last_match[:k_type]
    v_type = Regexp.last_match[:v_type]
    {}.tap do |hash|
      value.each do |k, v|
        hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
      end
    end
  else # model
    # models (e.g. Pet) or oneOf
    klass = Akeyless.const_get(type)
    klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
  end
end

#_to_hash(value) ⇒ Hash

Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value

Parameters:

  • value (Object)

    Any valid value

Returns:

  • (Hash)

    Returns the value in the form of hash



2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
# File 'lib/akeyless/models/ds_producer_details.rb', line 2057

def _to_hash(value)
  if value.is_a?(Array)
    value.compact.map { |v| _to_hash(v) }
  elsif value.is_a?(Hash)
    {}.tap do |hash|
      value.each { |k, v| hash[k] = _to_hash(v) }
    end
  elsif value.respond_to? :to_hash
    value.to_hash
  else
    value
  end
end

#build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
# File 'lib/akeyless/models/ds_producer_details.rb', line 1962

def build_from_hash(attributes)
  return nil unless attributes.is_a?(Hash)
  attributes = attributes.transform_keys(&:to_sym)
  self.class.openapi_types.each_pair do |key, type|
    if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
      self.send("#{key}=", nil)
    elsif type =~ /\AArray<(.*)>/i
      # check to ensure the input is an array given that the attribute
      # is documented as an array but the input is not
      if attributes[self.class.attribute_map[key]].is_a?(Array)
        self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
      end
    elsif !attributes[self.class.attribute_map[key]].nil?
      self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
    end
  end

  self
end

#eql?(o) ⇒ Boolean

Parameters:

  • Object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


1942
1943
1944
# File 'lib/akeyless/models/ds_producer_details.rb', line 1942

def eql?(o)
  self == o
end

#hashInteger

Calculates hash code according to all attributes.

Returns:

  • (Integer)

    Hash code



1948
1949
1950
# File 'lib/akeyless/models/ds_producer_details.rb', line 1948

def hash
  [access_token_manager_id, active, admin_name, admin_pwd, admin_rotation_interval_days, administrative_port, artifactory_admin_apikey, artifactory_admin_username, artifactory_base_url, artifactory_token_audience, artifactory_token_scope, authorization_port, aws_access_key_id, aws_access_mode, aws_region, aws_role_arns, aws_secret_access_key, aws_session_token, aws_user_console_access, aws_user_groups, aws_user_policies, aws_user_programmatic_access, azure_app_object_id, azure_client_id, azure_client_secret, azure_fixed_user_name_sub_claim_key, azure_fixed_user_only, azure_resource_group_name, azure_resource_name, azure_subscription_id, azure_tenant_id, azure_user_groups_obj_id, azure_user_portal_access, azure_user_programmatic_access, azure_user_roles_template_id, cassandra_creation_statements, chef_organizations, chef_server_access_mode, chef_server_host_name, chef_server_key, chef_server_port, chef_server_url, chef_server_username, chef_skip_ssl, client_authentication_type, create_sync_url, db_host_name, db_isolation_level, db_max_idle_conns, db_max_open_conns, db_name, db_port, db_private_key, db_private_key_passphrase, db_pwd, db_server_certificates, db_server_name, db_user_name, delete_protection, dynamic_secret_id, dynamic_secret_key, dynamic_secret_name, dynamic_secret_type, eks_access_key_id, eks_assume_role, eks_cluster_ca_certificate, eks_cluster_endpoint, eks_cluster_name, eks_region, eks_secret_access_key, enable_admin_rotation, enforce_replay_prevention, externally_provided_user, failure_message, fixed_user_only, gcp_key_algo, gcp_role_bindings, , , , , gcp_token_lifetime, gcp_token_scope, gcp_token_type, github_app_id, github_app_private_key, github_base_url, github_installation_id, github_installation_token_permissions, github_installation_token_repositories, github_installation_token_repositories_ids, github_repository_path, gke_cluster_ca_certificate, gke_cluster_endpoint, gke_cluster_name, , , grant_types, groups, hanadb_creation_statements, hanadb_revocation_statements, host_name, host_port, implementation_type, is_fixed_user, issuer, item_targets_assoc, jwks, jwks_url, k8s_allowed_namespaces, k8s_bearer_token, k8s_cluster_ca_certificate, k8s_cluster_endpoint, k8s_dynamic_mode, k8s_namespace, k8s_role_name, k8s_role_type, , k8s_temp_role_binding_definition, k8s_temp_role_definition, last_admin_rotation, ldap_audience, ldap_bind_dn, ldap_bind_password, ldap_certificate, ldap_token_expiration, ldap_url, ldap_user_attr, ldap_user_dn, , mongodb_atlas_api_private_key, mongodb_atlas_api_public_key, mongodb_atlas_project_id, mongodb_custom_data, mongodb_db_name, mongodb_default_auth_db, mongodb_host_port, mongodb_is_atlas, mongodb_password, mongodb_roles, mongodb_uri_connection, mongodb_uri_options, mongodb_username, mssql_creation_statements, mssql_revocation_statements, mysql_creation_statements, oracle_creation_statements, password, password_length, password_policy, payload, ping_url, postgres_creation_statements, postgres_revocation_statements, privileged_user, rabbitmq_server_password, rabbitmq_server_uri, rabbitmq_server_user, rabbitmq_user_conf_permission, rabbitmq_user_read_permission, rabbitmq_user_tags, rabbitmq_user_vhost, rabbitmq_user_write_permission, redirect_uris, redshift_creation_statements, restricted_scopes, revoke_sync_url, rotate_sync_url, scopes, secure_remote_access_details, session_extension_warn_interval_min, , sf_user_role, sf_warehouse_name, should_stop, signing_algorithm, ssl_connection_certificate, ssl_connection_mode, subject_dn, tags, timeout_seconds, use_gw_cloud_identity, user_name, user_password, user_principal_name, user_ttl, username_length, username_policy, venafi_allow_subdomains, venafi_allowed_domains, venafi_api_key, venafi_auto_generated_folder, venafi_base_url, venafi_root_first_in_chain, venafi_sign_using_akeyless_pki, venafi_signer_key_name, venafi_store_private_key, venafi_tpp_password, venafi_tpp_username, venafi_use_tpp, venafi_zone, warn_before_user_expiration_min].hash
end

#list_invalid_propertiesObject

Show invalid properties with the reasons. Usually used together with valid?

Returns:

  • Array for valid properties with the reasons



1720
1721
1722
1723
# File 'lib/akeyless/models/ds_producer_details.rb', line 1720

def list_invalid_properties
  invalid_properties = Array.new
  invalid_properties
end

#to_bodyHash

to_body is an alias to to_hash (backward compatibility)

Returns:

  • (Hash)

    Returns the object in the form of hash



2033
2034
2035
# File 'lib/akeyless/models/ds_producer_details.rb', line 2033

def to_body
  to_hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
# File 'lib/akeyless/models/ds_producer_details.rb', line 2039

def to_hash
  hash = {}
  self.class.attribute_map.each_pair do |attr, param|
    value = self.send(attr)
    if value.nil?
      is_nullable = self.class.openapi_nullable.include?(attr)
      next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
    end

    hash[param] = _to_hash(value)
  end
  hash
end

#to_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



2027
2028
2029
# File 'lib/akeyless/models/ds_producer_details.rb', line 2027

def to_s
  to_hash.to_s
end

#valid?Boolean

Check to see if the all the properties in the model are valid

Returns:

  • (Boolean)

    true if the model is valid



1727
1728
1729
# File 'lib/akeyless/models/ds_producer_details.rb', line 1727

def valid?
  true
end