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



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
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
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
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
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
# File 'lib/akeyless/models/ds_producer_details.rb', line 1020

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?(:'acl_rules')
    if (value = attributes[:'acl_rules']).is_a?(Array)
      self.acl_rules = value
    end
  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_tags')
    self.aws_session_tags = attributes[:'aws_session_tags']
  end

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

  if attributes.key?(:'aws_transitive_tag_keys')
    self.aws_transitive_tag_keys = attributes[:'aws_transitive_tag_keys']
  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?(:'azure_username')
    self.azure_username = attributes[:'azure_username']
  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?(:'cloud_service_provider')
    self.cloud_service_provider = attributes[:'cloud_service_provider']
  end

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

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

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

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

  if attributes.key?(:'db_client_secret')
    self.db_client_secret = attributes[:'db_client_secret']
  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_tenant_id')
    self.db_tenant_id = attributes[:'db_tenant_id']
  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_key_base64')
    self. = attributes[:'gcp_service_account_key_base64']
  end

  if attributes.key?(:'gcp_service_account_key_id')
    self. = attributes[:'gcp_service_account_key_id']
  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_organization_name')
    self.github_organization_name = attributes[:'github_organization_name']
  end

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

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

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

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

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

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

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

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

  if attributes.key?(:'gitlab_url')
    self.gitlab_url = attributes[:'gitlab_url']
  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?(:'google_workspace_access_mode')
    self.google_workspace_access_mode = attributes[:'google_workspace_access_mode']
  end

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

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

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

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

  if attributes.key?(:'google_workspace_role_scope')
    self.google_workspace_role_scope = attributes[:'google_workspace_role_scope']
  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_auth_type')
    self.k8s_auth_type = attributes[:'k8s_auth_type']
  end

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

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

  if attributes.key?(:'k8s_client_key_data')
    self.k8s_client_key_data = attributes[:'k8s_client_key_data']
  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_cluster_name')
    self.k8s_cluster_name = attributes[:'k8s_cluster_name']
  end

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

  if attributes.key?(:'k8s_multiple_doc_yaml_temp_definition')
    if (value = attributes[:'k8s_multiple_doc_yaml_temp_definition']).is_a?(Array)
      self.k8s_multiple_doc_yaml_temp_definition = value
    end
  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?(:'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_group_dn')
    self.ldap_group_dn = attributes[:'ldap_group_dn']
  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?(:'mysql_revocation_statements')
    self.mysql_revocation_statements = attributes[:'mysql_revocation_statements']
  end

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

  if attributes.key?(:'oracle_revocation_statements')
    self.oracle_revocation_statements = attributes[:'oracle_revocation_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?(:'use_gw_service_account')
    self. = attributes[:'use_gw_service_account']
  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_access_token')
    self.venafi_tpp_access_token = attributes[:'venafi_tpp_access_token']
  end

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

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

  if attributes.key?(:'venafi_tpp_refresh_token')
    self.venafi_tpp_refresh_token = attributes[:'venafi_tpp_refresh_token']
  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

#acl_rulesObject

Returns the value of attribute acl_rules.



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

def acl_rules
  @acl_rules
end

#activeObject

Returns the value of attribute active.



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

def active
  @active
end

#admin_nameObject

Returns the value of attribute admin_name.



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

def admin_name
  @admin_name
end

#admin_pwdObject

Returns the value of attribute admin_pwd.



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

def admin_pwd
  @admin_pwd
end

#admin_rotation_interval_daysObject

Returns the value of attribute admin_rotation_interval_days.



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

def admin_rotation_interval_days
  @admin_rotation_interval_days
end

#administrative_portObject

Returns the value of attribute administrative_port.



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

def administrative_port
  @administrative_port
end

#artifactory_admin_apikeyObject

Returns the value of attribute artifactory_admin_apikey.



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

def artifactory_admin_apikey
  @artifactory_admin_apikey
end

#artifactory_admin_usernameObject

Returns the value of attribute artifactory_admin_username.



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

def artifactory_admin_username
  @artifactory_admin_username
end

#artifactory_base_urlObject

Returns the value of attribute artifactory_base_url.



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

def artifactory_base_url
  @artifactory_base_url
end

#artifactory_token_audienceObject

Returns the value of attribute artifactory_token_audience.



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

def artifactory_token_audience
  @artifactory_token_audience
end

#artifactory_token_scopeObject

Returns the value of attribute artifactory_token_scope.



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

def artifactory_token_scope
  @artifactory_token_scope
end

#authorization_portObject

Returns the value of attribute authorization_port.



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

def authorization_port
  @authorization_port
end

#aws_access_key_idObject

Returns the value of attribute aws_access_key_id.



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

def aws_access_key_id
  @aws_access_key_id
end

#aws_access_modeObject

Returns the value of attribute aws_access_mode.



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

def aws_access_mode
  @aws_access_mode
end

#aws_regionObject

Returns the value of attribute aws_region.



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

def aws_region
  @aws_region
end

#aws_role_arnsObject

Returns the value of attribute aws_role_arns.



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

def aws_role_arns
  @aws_role_arns
end

#aws_secret_access_keyObject

Returns the value of attribute aws_secret_access_key.



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

def aws_secret_access_key
  @aws_secret_access_key
end

#aws_session_tagsObject

Returns the value of attribute aws_session_tags.



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

def aws_session_tags
  @aws_session_tags
end

#aws_session_tokenObject

Returns the value of attribute aws_session_token.



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

def aws_session_token
  @aws_session_token
end

#aws_transitive_tag_keysObject

Returns the value of attribute aws_transitive_tag_keys.



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

def aws_transitive_tag_keys
  @aws_transitive_tag_keys
end

#aws_user_console_accessObject

Returns the value of attribute aws_user_console_access.



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

def aws_user_console_access
  @aws_user_console_access
end

#aws_user_groupsObject

Returns the value of attribute aws_user_groups.



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

def aws_user_groups
  @aws_user_groups
end

#aws_user_policiesObject

Returns the value of attribute aws_user_policies.



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

def aws_user_policies
  @aws_user_policies
end

#aws_user_programmatic_accessObject

Returns the value of attribute aws_user_programmatic_access.



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

def aws_user_programmatic_access
  @aws_user_programmatic_access
end

#azure_app_object_idObject

Returns the value of attribute azure_app_object_id.



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

def azure_app_object_id
  @azure_app_object_id
end

#azure_client_idObject

Returns the value of attribute azure_client_id.



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

def azure_client_id
  @azure_client_id
end

#azure_client_secretObject

Returns the value of attribute azure_client_secret.



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

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.



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

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.



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

def azure_fixed_user_only
  @azure_fixed_user_only
end

#azure_resource_group_nameObject

Returns the value of attribute azure_resource_group_name.



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

def azure_resource_group_name
  @azure_resource_group_name
end

#azure_resource_nameObject

Returns the value of attribute azure_resource_name.



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

def azure_resource_name
  @azure_resource_name
end

#azure_subscription_idObject

Returns the value of attribute azure_subscription_id.



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

def azure_subscription_id
  @azure_subscription_id
end

#azure_tenant_idObject

Returns the value of attribute azure_tenant_id.



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

def azure_tenant_id
  @azure_tenant_id
end

#azure_user_groups_obj_idObject

Returns the value of attribute azure_user_groups_obj_id.



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

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.



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

def azure_user_portal_access
  @azure_user_portal_access
end

#azure_user_programmatic_accessObject

Returns the value of attribute azure_user_programmatic_access.



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

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.



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

def azure_user_roles_template_id
  @azure_user_roles_template_id
end

#azure_usernameObject

Returns the value of attribute azure_username.



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

def azure_username
  @azure_username
end

#cassandra_creation_statementsObject

Returns the value of attribute cassandra_creation_statements.



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

def cassandra_creation_statements
  @cassandra_creation_statements
end

#chef_organizationsObject

Returns the value of attribute chef_organizations.



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

def chef_organizations
  @chef_organizations
end

#chef_server_access_modeObject

Returns the value of attribute chef_server_access_mode.



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

def chef_server_access_mode
  @chef_server_access_mode
end

#chef_server_host_nameObject

Returns the value of attribute chef_server_host_name.



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

def chef_server_host_name
  @chef_server_host_name
end

#chef_server_keyObject

Returns the value of attribute chef_server_key.



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

def chef_server_key
  @chef_server_key
end

#chef_server_portObject

Returns the value of attribute chef_server_port.



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

def chef_server_port
  @chef_server_port
end

#chef_server_urlObject

Returns the value of attribute chef_server_url.



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

def chef_server_url
  @chef_server_url
end

#chef_server_usernameObject

Returns the value of attribute chef_server_username.



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

def chef_server_username
  @chef_server_username
end

#chef_skip_sslObject

Returns the value of attribute chef_skip_ssl.



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

def chef_skip_ssl
  @chef_skip_ssl
end

#client_authentication_typeObject

Returns the value of attribute client_authentication_type.



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

def client_authentication_type
  @client_authentication_type
end

#cloud_service_providerObject

Returns the value of attribute cloud_service_provider.



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

def cloud_service_provider
  @cloud_service_provider
end

#cluster_modeObject

Returns the value of attribute cluster_mode.



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

def cluster_mode
  @cluster_mode
end

#connection_typeObject

Returns the value of attribute connection_type.



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

def connection_type
  @connection_type
end

#create_sync_urlObject

Returns the value of attribute create_sync_url.



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

def create_sync_url
  @create_sync_url
end

#db_client_idObject

Returns the value of attribute db_client_id.



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

def db_client_id
  @db_client_id
end

#db_client_secretObject

Returns the value of attribute db_client_secret.



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

def db_client_secret
  @db_client_secret
end

#db_host_nameObject

Returns the value of attribute db_host_name.



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

def db_host_name
  @db_host_name
end

#db_isolation_levelObject

Returns the value of attribute db_isolation_level.



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

def db_isolation_level
  @db_isolation_level
end

#db_max_idle_connsObject

Returns the value of attribute db_max_idle_conns.



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

def db_max_idle_conns
  @db_max_idle_conns
end

#db_max_open_connsObject

Returns the value of attribute db_max_open_conns.



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

def db_max_open_conns
  @db_max_open_conns
end

#db_nameObject

Returns the value of attribute db_name.



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

def db_name
  @db_name
end

#db_portObject

Returns the value of attribute db_port.



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

def db_port
  @db_port
end

#db_private_keyObject

(Optional) Private Key in PEM format



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

def db_private_key
  @db_private_key
end

#db_private_key_passphraseObject

Returns the value of attribute db_private_key_passphrase.



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

def db_private_key_passphrase
  @db_private_key_passphrase
end

#db_pwdObject

Returns the value of attribute db_pwd.



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

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.



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

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.



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

def db_server_name
  @db_server_name
end

#db_tenant_idObject

Returns the value of attribute db_tenant_id.



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

def db_tenant_id
  @db_tenant_id
end

#db_user_nameObject

Returns the value of attribute db_user_name.



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

def db_user_name
  @db_user_name
end

#delete_protectionObject

Returns the value of attribute delete_protection.



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

def delete_protection
  @delete_protection
end

#dynamic_secret_idObject

Returns the value of attribute dynamic_secret_id.



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

def dynamic_secret_id
  @dynamic_secret_id
end

#dynamic_secret_keyObject

Returns the value of attribute dynamic_secret_key.



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

def dynamic_secret_key
  @dynamic_secret_key
end

#dynamic_secret_nameObject

Returns the value of attribute dynamic_secret_name.



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

def dynamic_secret_name
  @dynamic_secret_name
end

#dynamic_secret_typeObject

Returns the value of attribute dynamic_secret_type.



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

def dynamic_secret_type
  @dynamic_secret_type
end

#eks_access_key_idObject

Returns the value of attribute eks_access_key_id.



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

def eks_access_key_id
  @eks_access_key_id
end

#eks_assume_roleObject

Returns the value of attribute eks_assume_role.



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

def eks_assume_role
  @eks_assume_role
end

#eks_cluster_ca_certificateObject

Returns the value of attribute eks_cluster_ca_certificate.



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

def eks_cluster_ca_certificate
  @eks_cluster_ca_certificate
end

#eks_cluster_endpointObject

Returns the value of attribute eks_cluster_endpoint.



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

def eks_cluster_endpoint
  @eks_cluster_endpoint
end

#eks_cluster_nameObject

Returns the value of attribute eks_cluster_name.



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

def eks_cluster_name
  @eks_cluster_name
end

#eks_regionObject

Returns the value of attribute eks_region.



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

def eks_region
  @eks_region
end

#eks_secret_access_keyObject

Returns the value of attribute eks_secret_access_key.



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

def eks_secret_access_key
  @eks_secret_access_key
end

#enable_admin_rotationObject

Returns the value of attribute enable_admin_rotation.



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

def enable_admin_rotation
  @enable_admin_rotation
end

#enforce_replay_preventionObject

relevant for PRIVATE_KEY_JWT client authentication type



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

def enforce_replay_prevention
  @enforce_replay_prevention
end

#externally_provided_userObject

Returns the value of attribute externally_provided_user.



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

def externally_provided_user
  @externally_provided_user
end

#failure_messageObject

Returns the value of attribute failure_message.



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

def failure_message
  @failure_message
end

#fixed_user_onlyObject

Returns the value of attribute fixed_user_only.



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

def fixed_user_only
  @fixed_user_only
end

#gcp_key_algoObject

Returns the value of attribute gcp_key_algo.



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

def gcp_key_algo
  @gcp_key_algo
end

#gcp_role_bindingsObject

Returns the value of attribute gcp_role_bindings.



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

def gcp_role_bindings
  @gcp_role_bindings
end

#gcp_service_account_emailObject

GCPServiceAccountEmail overrides the deprecated field from the target



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

def 
  @gcp_service_account_email
end

#gcp_service_account_keyObject

Returns the value of attribute gcp_service_account_key.



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

def 
  @gcp_service_account_key
end

#gcp_service_account_key_base64Object

Returns the value of attribute gcp_service_account_key_base64.



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

def 
  @gcp_service_account_key_base64
end

#gcp_service_account_key_idObject

Returns the value of attribute gcp_service_account_key_id.



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

def 
  @gcp_service_account_key_id
end

#gcp_service_account_typeObject

Returns the value of attribute gcp_service_account_type.



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

def 
  @gcp_service_account_type
end

#gcp_tmp_service_account_nameObject

Returns the value of attribute gcp_tmp_service_account_name.



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

def 
  @gcp_tmp_service_account_name
end

#gcp_token_lifetimeObject

Returns the value of attribute gcp_token_lifetime.



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

def gcp_token_lifetime
  @gcp_token_lifetime
end

#gcp_token_scopeObject

Returns the value of attribute gcp_token_scope.



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

def gcp_token_scope
  @gcp_token_scope
end

#gcp_token_typeObject

Returns the value of attribute gcp_token_type.



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

def gcp_token_type
  @gcp_token_type
end

#github_app_idObject

Returns the value of attribute github_app_id.



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

def github_app_id
  @github_app_id
end

#github_app_private_keyObject

Returns the value of attribute github_app_private_key.



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

def github_app_private_key
  @github_app_private_key
end

#github_base_urlObject

Returns the value of attribute github_base_url.



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

def github_base_url
  @github_base_url
end

#github_installation_idObject

Returns the value of attribute github_installation_id.



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

def github_installation_id
  @github_installation_id
end

#github_installation_token_permissionsObject

Returns the value of attribute github_installation_token_permissions.



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

def github_installation_token_permissions
  @github_installation_token_permissions
end

#github_installation_token_repositoriesObject

Returns the value of attribute github_installation_token_repositories.



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

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.



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

def github_installation_token_repositories_ids
  @github_installation_token_repositories_ids
end

#github_organization_nameObject

Returns the value of attribute github_organization_name.



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

def github_organization_name
  @github_organization_name
end

#github_repository_pathObject

Returns the value of attribute github_repository_path.



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

def github_repository_path
  @github_repository_path
end

#gitlab_access_tokenObject

Returns the value of attribute gitlab_access_token.



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

def gitlab_access_token
  @gitlab_access_token
end

#gitlab_access_typeObject

Returns the value of attribute gitlab_access_type.



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

def gitlab_access_type
  @gitlab_access_type
end

#gitlab_certificateObject

Returns the value of attribute gitlab_certificate.



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

def gitlab_certificate
  @gitlab_certificate
end

#gitlab_group_nameObject

Returns the value of attribute gitlab_group_name.



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

def gitlab_group_name
  @gitlab_group_name
end

#gitlab_project_nameObject

Returns the value of attribute gitlab_project_name.



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

def gitlab_project_name
  @gitlab_project_name
end

#gitlab_roleObject

Returns the value of attribute gitlab_role.



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

def gitlab_role
  @gitlab_role
end

#gitlab_token_scopeObject

Returns the value of attribute gitlab_token_scope.



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

def gitlab_token_scope
  @gitlab_token_scope
end

#gitlab_urlObject

Returns the value of attribute gitlab_url.



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

def gitlab_url
  @gitlab_url
end

#gke_cluster_ca_certificateObject

Returns the value of attribute gke_cluster_ca_certificate.



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

def gke_cluster_ca_certificate
  @gke_cluster_ca_certificate
end

#gke_cluster_endpointObject

Returns the value of attribute gke_cluster_endpoint.



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

def gke_cluster_endpoint
  @gke_cluster_endpoint
end

#gke_cluster_nameObject

Returns the value of attribute gke_cluster_name.



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

def gke_cluster_name
  @gke_cluster_name
end

#gke_service_account_keyObject

Returns the value of attribute gke_service_account_key.



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

def 
  @gke_service_account_key
end

#gke_service_account_nameObject

Returns the value of attribute gke_service_account_name.



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

def 
  @gke_service_account_name
end

#google_workspace_access_modeObject

Returns the value of attribute google_workspace_access_mode.



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

def google_workspace_access_mode
  @google_workspace_access_mode
end

#google_workspace_admin_nameObject

Returns the value of attribute google_workspace_admin_name.



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

def google_workspace_admin_name
  @google_workspace_admin_name
end

#google_workspace_group_nameObject

Returns the value of attribute google_workspace_group_name.



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

def google_workspace_group_name
  @google_workspace_group_name
end

#google_workspace_group_roleObject

Returns the value of attribute google_workspace_group_role.



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

def google_workspace_group_role
  @google_workspace_group_role
end

#google_workspace_role_nameObject

Returns the value of attribute google_workspace_role_name.



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

def google_workspace_role_name
  @google_workspace_role_name
end

#google_workspace_role_scopeObject

Returns the value of attribute google_workspace_role_scope.



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

def google_workspace_role_scope
  @google_workspace_role_scope
end

#grant_typesObject

Returns the value of attribute grant_types.



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

def grant_types
  @grant_types
end

#groupsObject

Returns the value of attribute groups.



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

def groups
  @groups
end

#hanadb_creation_statementsObject

Returns the value of attribute hanadb_creation_statements.



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

def hanadb_creation_statements
  @hanadb_creation_statements
end

#hanadb_revocation_statementsObject

Returns the value of attribute hanadb_revocation_statements.



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

def hanadb_revocation_statements
  @hanadb_revocation_statements
end

#host_nameObject

Returns the value of attribute host_name.



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

def host_name
  @host_name
end

#host_portObject

Returns the value of attribute host_port.



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

def host_port
  @host_port
end

#implementation_typeObject

Returns the value of attribute implementation_type.



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

def implementation_type
  @implementation_type
end

#is_fixed_userObject

Returns the value of attribute is_fixed_user.



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

def is_fixed_user
  @is_fixed_user
end

#issuerObject

relevant for CLIENT_TLS_CERTIFICATE client authentication type



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

def issuer
  @issuer
end

#item_targets_assocObject

Returns the value of attribute item_targets_assoc.



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

def item_targets_assoc
  @item_targets_assoc
end

#jwksObject

Returns the value of attribute jwks.



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

def jwks
  @jwks
end

#jwks_urlObject

Returns the value of attribute jwks_url.



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

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



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

def k8s_allowed_namespaces
  @k8s_allowed_namespaces
end

#k8s_auth_typeObject

Returns the value of attribute k8s_auth_type.



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

def k8s_auth_type
  @k8s_auth_type
end

#k8s_bearer_tokenObject

Returns the value of attribute k8s_bearer_token.



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

def k8s_bearer_token
  @k8s_bearer_token
end

#k8s_client_cert_dataObject

For K8s Client certificates authentication



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

def k8s_client_cert_data
  @k8s_client_cert_data
end

#k8s_client_key_dataObject

Returns the value of attribute k8s_client_key_data.



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

def k8s_client_key_data
  @k8s_client_key_data
end

#k8s_cluster_ca_certificateObject

Returns the value of attribute k8s_cluster_ca_certificate.



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

def k8s_cluster_ca_certificate
  @k8s_cluster_ca_certificate
end

#k8s_cluster_endpointObject

Returns the value of attribute k8s_cluster_endpoint.



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

def k8s_cluster_endpoint
  @k8s_cluster_endpoint
end

#k8s_cluster_nameObject

Returns the value of attribute k8s_cluster_name.



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

def k8s_cluster_name
  @k8s_cluster_name
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



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

def k8s_dynamic_mode
  @k8s_dynamic_mode
end

#k8s_multiple_doc_yaml_temp_definitionObject

Yaml definition for creation of temporary objects. Field that can hold multiple docs from which following will be extracted: ServiceAccount, Role/ClusterRole and RoleBinding/ClusterRoleBinding. If ServiceAccount not specified - it will be generated automatically



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

def k8s_multiple_doc_yaml_temp_definition
  @k8s_multiple_doc_yaml_temp_definition
end

#k8s_namespaceObject

Returns the value of attribute k8s_namespace.



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

def k8s_namespace
  @k8s_namespace
end

#k8s_role_nameObject

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



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

def k8s_role_name
  @k8s_role_name
end

#k8s_role_typeObject

Returns the value of attribute k8s_role_type.



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

def k8s_role_type
  @k8s_role_type
end

#k8s_service_accountObject

Returns the value of attribute k8s_service_account.



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

def 
  @k8s_service_account
end

#last_admin_rotationObject

Returns the value of attribute last_admin_rotation.



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

def last_admin_rotation
  @last_admin_rotation
end

#ldap_audienceObject

Returns the value of attribute ldap_audience.



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

def ldap_audience
  @ldap_audience
end

#ldap_bind_dnObject

Returns the value of attribute ldap_bind_dn.



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

def ldap_bind_dn
  @ldap_bind_dn
end

#ldap_bind_passwordObject

Returns the value of attribute ldap_bind_password.



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

def ldap_bind_password
  @ldap_bind_password
end

#ldap_certificateObject

Returns the value of attribute ldap_certificate.



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

def ldap_certificate
  @ldap_certificate
end

#ldap_group_dnObject

Returns the value of attribute ldap_group_dn.



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

def ldap_group_dn
  @ldap_group_dn
end

#ldap_token_expirationObject

Returns the value of attribute ldap_token_expiration.



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

def ldap_token_expiration
  @ldap_token_expiration
end

#ldap_urlObject

Returns the value of attribute ldap_url.



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

def ldap_url
  @ldap_url
end

#ldap_user_attrObject

Returns the value of attribute ldap_user_attr.



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

def ldap_user_attr
  @ldap_user_attr
end

#ldap_user_dnObject

Returns the value of attribute ldap_user_dn.



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

def ldap_user_dn
  @ldap_user_dn
end

#metadataObject

Returns the value of attribute metadata.



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

def 
  @metadata
end

#mongodb_atlas_api_private_keyObject

Returns the value of attribute mongodb_atlas_api_private_key.



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

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.



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

def mongodb_atlas_api_public_key
  @mongodb_atlas_api_public_key
end

#mongodb_atlas_project_idObject

mongodb atlas fields



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

def mongodb_atlas_project_id
  @mongodb_atlas_project_id
end

#mongodb_custom_dataObject

Returns the value of attribute mongodb_custom_data.



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

def mongodb_custom_data
  @mongodb_custom_data
end

#mongodb_db_nameObject

common fields



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

def mongodb_db_name
  @mongodb_db_name
end

#mongodb_default_auth_dbObject

Returns the value of attribute mongodb_default_auth_db.



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

def mongodb_default_auth_db
  @mongodb_default_auth_db
end

#mongodb_host_portObject

Returns the value of attribute mongodb_host_port.



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

def mongodb_host_port
  @mongodb_host_port
end

#mongodb_is_atlasObject

Returns the value of attribute mongodb_is_atlas.



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

def mongodb_is_atlas
  @mongodb_is_atlas
end

#mongodb_passwordObject

Returns the value of attribute mongodb_password.



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

def mongodb_password
  @mongodb_password
end

#mongodb_rolesObject

common fields



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

def mongodb_roles
  @mongodb_roles
end

#mongodb_uri_connectionObject

mongodb fields



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

def mongodb_uri_connection
  @mongodb_uri_connection
end

#mongodb_uri_optionsObject

Returns the value of attribute mongodb_uri_options.



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

def mongodb_uri_options
  @mongodb_uri_options
end

#mongodb_usernameObject

Returns the value of attribute mongodb_username.



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

def mongodb_username
  @mongodb_username
end

#mssql_creation_statementsObject

Returns the value of attribute mssql_creation_statements.



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

def mssql_creation_statements
  @mssql_creation_statements
end

#mssql_revocation_statementsObject

Returns the value of attribute mssql_revocation_statements.



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

def mssql_revocation_statements
  @mssql_revocation_statements
end

#mysql_creation_statementsObject

Returns the value of attribute mysql_creation_statements.



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

def mysql_creation_statements
  @mysql_creation_statements
end

#mysql_revocation_statementsObject

Returns the value of attribute mysql_revocation_statements.



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

def mysql_revocation_statements
  @mysql_revocation_statements
end

#oracle_creation_statementsObject

Returns the value of attribute oracle_creation_statements.



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

def oracle_creation_statements
  @oracle_creation_statements
end

#oracle_revocation_statementsObject

Returns the value of attribute oracle_revocation_statements.



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

def oracle_revocation_statements
  @oracle_revocation_statements
end

#passwordObject

Returns the value of attribute password.



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

def password
  @password
end

#password_lengthObject

Returns the value of attribute password_length.



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

def password_length
  @password_length
end

#password_policyObject

Returns the value of attribute password_policy.



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

def password_policy
  @password_policy
end

#payloadObject

Returns the value of attribute payload.



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

def payload
  @payload
end

#ping_urlObject

Returns the value of attribute ping_url.



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

def ping_url
  @ping_url
end

#postgres_creation_statementsObject

Returns the value of attribute postgres_creation_statements.



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

def postgres_creation_statements
  @postgres_creation_statements
end

#postgres_revocation_statementsObject

Returns the value of attribute postgres_revocation_statements.



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

def postgres_revocation_statements
  @postgres_revocation_statements
end

#privileged_userObject

Returns the value of attribute privileged_user.



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

def privileged_user
  @privileged_user
end

#rabbitmq_server_passwordObject

Returns the value of attribute rabbitmq_server_password.



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

def rabbitmq_server_password
  @rabbitmq_server_password
end

#rabbitmq_server_uriObject

Returns the value of attribute rabbitmq_server_uri.



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

def rabbitmq_server_uri
  @rabbitmq_server_uri
end

#rabbitmq_server_userObject

Returns the value of attribute rabbitmq_server_user.



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

def rabbitmq_server_user
  @rabbitmq_server_user
end

#rabbitmq_user_conf_permissionObject

Returns the value of attribute rabbitmq_user_conf_permission.



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

def rabbitmq_user_conf_permission
  @rabbitmq_user_conf_permission
end

#rabbitmq_user_read_permissionObject

Returns the value of attribute rabbitmq_user_read_permission.



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

def rabbitmq_user_read_permission
  @rabbitmq_user_read_permission
end

#rabbitmq_user_tagsObject

Returns the value of attribute rabbitmq_user_tags.



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

def rabbitmq_user_tags
  @rabbitmq_user_tags
end

#rabbitmq_user_vhostObject

Returns the value of attribute rabbitmq_user_vhost.



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

def rabbitmq_user_vhost
  @rabbitmq_user_vhost
end

#rabbitmq_user_write_permissionObject

Returns the value of attribute rabbitmq_user_write_permission.



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

def rabbitmq_user_write_permission
  @rabbitmq_user_write_permission
end

#redirect_urisObject

Returns the value of attribute redirect_uris.



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

def redirect_uris
  @redirect_uris
end

#redshift_creation_statementsObject

Returns the value of attribute redshift_creation_statements.



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

def redshift_creation_statements
  @redshift_creation_statements
end

#restricted_scopesObject

Returns the value of attribute restricted_scopes.



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

def restricted_scopes
  @restricted_scopes
end

#revoke_sync_urlObject

Returns the value of attribute revoke_sync_url.



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

def revoke_sync_url
  @revoke_sync_url
end

#rotate_sync_urlObject

Returns the value of attribute rotate_sync_url.



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

def rotate_sync_url
  @rotate_sync_url
end

#scopesObject

Returns the value of attribute scopes.



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

def scopes
  @scopes
end

#secure_remote_access_detailsObject

Returns the value of attribute secure_remote_access_details.



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

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.



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

def session_extension_warn_interval_min
  @session_extension_warn_interval_min
end

#sf_accountObject

Returns the value of attribute sf_account.



441
442
443
# File 'lib/akeyless/models/ds_producer_details.rb', line 441

def 
  @sf_account
end

#sf_user_roleObject

generated users info



444
445
446
# File 'lib/akeyless/models/ds_producer_details.rb', line 444

def sf_user_role
  @sf_user_role
end

#sf_warehouse_nameObject

Returns the value of attribute sf_warehouse_name.



446
447
448
# File 'lib/akeyless/models/ds_producer_details.rb', line 446

def sf_warehouse_name
  @sf_warehouse_name
end

#should_stopObject

TODO delete this after migration



449
450
451
# File 'lib/akeyless/models/ds_producer_details.rb', line 449

def should_stop
  @should_stop
end

#signing_algorithmObject

Returns the value of attribute signing_algorithm.



451
452
453
# File 'lib/akeyless/models/ds_producer_details.rb', line 451

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



454
455
456
# File 'lib/akeyless/models/ds_producer_details.rb', line 454

def ssl_connection_certificate
  @ssl_connection_certificate
end

#ssl_connection_modeObject

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



457
458
459
# File 'lib/akeyless/models/ds_producer_details.rb', line 457

def ssl_connection_mode
  @ssl_connection_mode
end

#subject_dnObject

Returns the value of attribute subject_dn.



459
460
461
# File 'lib/akeyless/models/ds_producer_details.rb', line 459

def subject_dn
  @subject_dn
end

#tagsObject

Returns the value of attribute tags.



461
462
463
# File 'lib/akeyless/models/ds_producer_details.rb', line 461

def tags
  @tags
end

#timeout_secondsObject

Returns the value of attribute timeout_seconds.



463
464
465
# File 'lib/akeyless/models/ds_producer_details.rb', line 463

def timeout_seconds
  @timeout_seconds
end

#use_gw_cloud_identityObject

Returns the value of attribute use_gw_cloud_identity.



465
466
467
# File 'lib/akeyless/models/ds_producer_details.rb', line 465

def use_gw_cloud_identity
  @use_gw_cloud_identity
end

#use_gw_service_accountObject

Returns the value of attribute use_gw_service_account.



467
468
469
# File 'lib/akeyless/models/ds_producer_details.rb', line 467

def 
  @use_gw_service_account
end

#user_nameObject

Returns the value of attribute user_name.



469
470
471
# File 'lib/akeyless/models/ds_producer_details.rb', line 469

def user_name
  @user_name
end

#user_passwordObject

Returns the value of attribute user_password.



471
472
473
# File 'lib/akeyless/models/ds_producer_details.rb', line 471

def user_password
  @user_password
end

#user_principal_nameObject

Returns the value of attribute user_principal_name.



473
474
475
# File 'lib/akeyless/models/ds_producer_details.rb', line 473

def user_principal_name
  @user_principal_name
end

#user_ttlObject

Returns the value of attribute user_ttl.



475
476
477
# File 'lib/akeyless/models/ds_producer_details.rb', line 475

def user_ttl
  @user_ttl
end

#username_lengthObject

Returns the value of attribute username_length.



477
478
479
# File 'lib/akeyless/models/ds_producer_details.rb', line 477

def username_length
  @username_length
end

#username_policyObject

Returns the value of attribute username_policy.



479
480
481
# File 'lib/akeyless/models/ds_producer_details.rb', line 479

def username_policy
  @username_policy
end

#venafi_allow_subdomainsObject

Returns the value of attribute venafi_allow_subdomains.



481
482
483
# File 'lib/akeyless/models/ds_producer_details.rb', line 481

def venafi_allow_subdomains
  @venafi_allow_subdomains
end

#venafi_allowed_domainsObject

Returns the value of attribute venafi_allowed_domains.



483
484
485
# File 'lib/akeyless/models/ds_producer_details.rb', line 483

def venafi_allowed_domains
  @venafi_allowed_domains
end

#venafi_api_keyObject

Returns the value of attribute venafi_api_key.



485
486
487
# File 'lib/akeyless/models/ds_producer_details.rb', line 485

def venafi_api_key
  @venafi_api_key
end

#venafi_auto_generated_folderObject

Returns the value of attribute venafi_auto_generated_folder.



487
488
489
# File 'lib/akeyless/models/ds_producer_details.rb', line 487

def venafi_auto_generated_folder
  @venafi_auto_generated_folder
end

#venafi_base_urlObject

Returns the value of attribute venafi_base_url.



489
490
491
# File 'lib/akeyless/models/ds_producer_details.rb', line 489

def venafi_base_url
  @venafi_base_url
end

#venafi_root_first_in_chainObject

Returns the value of attribute venafi_root_first_in_chain.



491
492
493
# File 'lib/akeyless/models/ds_producer_details.rb', line 491

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.



493
494
495
# File 'lib/akeyless/models/ds_producer_details.rb', line 493

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.



495
496
497
# File 'lib/akeyless/models/ds_producer_details.rb', line 495

def venafi_signer_key_name
  @venafi_signer_key_name
end

#venafi_store_private_keyObject

Returns the value of attribute venafi_store_private_key.



497
498
499
# File 'lib/akeyless/models/ds_producer_details.rb', line 497

def venafi_store_private_key
  @venafi_store_private_key
end

#venafi_tpp_access_tokenObject

Returns the value of attribute venafi_tpp_access_token.



499
500
501
# File 'lib/akeyless/models/ds_producer_details.rb', line 499

def venafi_tpp_access_token
  @venafi_tpp_access_token
end

#venafi_tpp_client_idObject

Returns the value of attribute venafi_tpp_client_id.



501
502
503
# File 'lib/akeyless/models/ds_producer_details.rb', line 501

def venafi_tpp_client_id
  @venafi_tpp_client_id
end

#venafi_tpp_passwordObject

Deprecated: VenafiAccessToken and VenafiRefreshToken should be used instead



504
505
506
# File 'lib/akeyless/models/ds_producer_details.rb', line 504

def venafi_tpp_password
  @venafi_tpp_password
end

#venafi_tpp_refresh_tokenObject

Returns the value of attribute venafi_tpp_refresh_token.



506
507
508
# File 'lib/akeyless/models/ds_producer_details.rb', line 506

def venafi_tpp_refresh_token
  @venafi_tpp_refresh_token
end

#venafi_tpp_usernameObject

Deprecated: VenafiAccessToken and VenafiRefreshToken should be used instead



509
510
511
# File 'lib/akeyless/models/ds_producer_details.rb', line 509

def venafi_tpp_username
  @venafi_tpp_username
end

#venafi_use_tppObject

Returns the value of attribute venafi_use_tpp.



511
512
513
# File 'lib/akeyless/models/ds_producer_details.rb', line 511

def venafi_use_tpp
  @venafi_use_tpp
end

#venafi_zoneObject

Returns the value of attribute venafi_zone.



513
514
515
# File 'lib/akeyless/models/ds_producer_details.rb', line 513

def venafi_zone
  @venafi_zone
end

#warn_before_user_expiration_minObject

Returns the value of attribute warn_before_user_expiration_min.



515
516
517
# File 'lib/akeyless/models/ds_producer_details.rb', line 515

def warn_before_user_expiration_min
  @warn_before_user_expiration_min
end

Class Method Details

._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



2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
# File 'lib/akeyless/models/ds_producer_details.rb', line 2318

def self._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_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
  end
end

.acceptable_attributesObject

Returns all the JSON keys this model knows about



763
764
765
# File 'lib/akeyless/models/ds_producer_details.rb', line 763

def self.acceptable_attributes
  attribute_map.values
end

.attribute_mapObject

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



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
648
649
650
651
652
653
654
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
# File 'lib/akeyless/models/ds_producer_details.rb', line 518

def self.attribute_map
  {
    :'access_token_manager_id' => :'access_token_manager_id',
    :'acl_rules' => :'acl_rules',
    :'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_tags' => :'aws_session_tags',
    :'aws_session_token' => :'aws_session_token',
    :'aws_transitive_tag_keys' => :'aws_transitive_tag_keys',
    :'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',
    :'azure_username' => :'azure_username',
    :'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',
    :'cloud_service_provider' => :'cloud_service_provider',
    :'cluster_mode' => :'cluster_mode',
    :'connection_type' => :'connection_type',
    :'create_sync_url' => :'create_sync_url',
    :'db_client_id' => :'db_client_id',
    :'db_client_secret' => :'db_client_secret',
    :'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_tenant_id' => :'db_tenant_id',
    :'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_key_base64' => :'gcp_service_account_key_base64',
    :'gcp_service_account_key_id' => :'gcp_service_account_key_id',
    :'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_organization_name' => :'github_organization_name',
    :'github_repository_path' => :'github_repository_path',
    :'gitlab_access_token' => :'gitlab_access_token',
    :'gitlab_access_type' => :'gitlab_access_type',
    :'gitlab_certificate' => :'gitlab_certificate',
    :'gitlab_group_name' => :'gitlab_group_name',
    :'gitlab_project_name' => :'gitlab_project_name',
    :'gitlab_role' => :'gitlab_role',
    :'gitlab_token_scope' => :'gitlab_token_scope',
    :'gitlab_url' => :'gitlab_url',
    :'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',
    :'google_workspace_access_mode' => :'google_workspace_access_mode',
    :'google_workspace_admin_name' => :'google_workspace_admin_name',
    :'google_workspace_group_name' => :'google_workspace_group_name',
    :'google_workspace_group_role' => :'google_workspace_group_role',
    :'google_workspace_role_name' => :'google_workspace_role_name',
    :'google_workspace_role_scope' => :'google_workspace_role_scope',
    :'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_auth_type' => :'k8s_auth_type',
    :'k8s_bearer_token' => :'k8s_bearer_token',
    :'k8s_client_cert_data' => :'k8s_client_cert_data',
    :'k8s_client_key_data' => :'k8s_client_key_data',
    :'k8s_cluster_ca_certificate' => :'k8s_cluster_ca_certificate',
    :'k8s_cluster_endpoint' => :'k8s_cluster_endpoint',
    :'k8s_cluster_name' => :'k8s_cluster_name',
    :'k8s_dynamic_mode' => :'k8s_dynamic_mode',
    :'k8s_multiple_doc_yaml_temp_definition' => :'k8s_multiple_doc_yaml_temp_definition',
    :'k8s_namespace' => :'k8s_namespace',
    :'k8s_role_name' => :'k8s_role_name',
    :'k8s_role_type' => :'k8s_role_type',
    :'k8s_service_account' => :'k8s_service_account',
    :'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_group_dn' => :'ldap_group_dn',
    :'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',
    :'mysql_revocation_statements' => :'mysql_revocation_statements',
    :'oracle_creation_statements' => :'oracle_creation_statements',
    :'oracle_revocation_statements' => :'oracle_revocation_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',
    :'use_gw_service_account' => :'use_gw_service_account',
    :'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_access_token' => :'venafi_tpp_access_token',
    :'venafi_tpp_client_id' => :'venafi_tpp_client_id',
    :'venafi_tpp_password' => :'venafi_tpp_password',
    :'venafi_tpp_refresh_token' => :'venafi_tpp_refresh_token',
    :'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



2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
# File 'lib/akeyless/models/ds_producer_details.rb', line 2294

def self.build_from_hash(attributes)
  return nil unless attributes.is_a?(Hash)
  attributes = attributes.transform_keys(&:to_sym)
  transformed_hash = {}
  openapi_types.each_pair do |key, type|
    if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
      transformed_hash["#{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[attribute_map[key]].is_a?(Array)
        transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
      end
    elsif !attributes[attribute_map[key]].nil?
      transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
    end
  end
  new(transformed_hash)
end

.openapi_nullableObject

List of attributes with nullable: true



1013
1014
1015
1016
# File 'lib/akeyless/models/ds_producer_details.rb', line 1013

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

.openapi_typesObject

Attribute type mapping.



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
861
862
863
864
865
866
867
868
869
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
# File 'lib/akeyless/models/ds_producer_details.rb', line 768

def self.openapi_types
  {
    :'access_token_manager_id' => :'String',
    :'acl_rules' => :'Array<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_tags' => :'String',
    :'aws_session_token' => :'String',
    :'aws_transitive_tag_keys' => :'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',
    :'azure_username' => :'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',
    :'cloud_service_provider' => :'String',
    :'cluster_mode' => :'Boolean',
    :'connection_type' => :'String',
    :'create_sync_url' => :'String',
    :'db_client_id' => :'String',
    :'db_client_secret' => :'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_tenant_id' => :'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_key_base64' => :'String',
    :'gcp_service_account_key_id' => :'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_organization_name' => :'String',
    :'github_repository_path' => :'String',
    :'gitlab_access_token' => :'String',
    :'gitlab_access_type' => :'String',
    :'gitlab_certificate' => :'String',
    :'gitlab_group_name' => :'String',
    :'gitlab_project_name' => :'String',
    :'gitlab_role' => :'String',
    :'gitlab_token_scope' => :'Array<String>',
    :'gitlab_url' => :'String',
    :'gke_cluster_ca_certificate' => :'String',
    :'gke_cluster_endpoint' => :'String',
    :'gke_cluster_name' => :'String',
    :'gke_service_account_key' => :'String',
    :'gke_service_account_name' => :'String',
    :'google_workspace_access_mode' => :'String',
    :'google_workspace_admin_name' => :'String',
    :'google_workspace_group_name' => :'String',
    :'google_workspace_group_role' => :'String',
    :'google_workspace_role_name' => :'String',
    :'google_workspace_role_scope' => :'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_auth_type' => :'String',
    :'k8s_bearer_token' => :'String',
    :'k8s_client_cert_data' => :'String',
    :'k8s_client_key_data' => :'String',
    :'k8s_cluster_ca_certificate' => :'String',
    :'k8s_cluster_endpoint' => :'String',
    :'k8s_cluster_name' => :'String',
    :'k8s_dynamic_mode' => :'Boolean',
    :'k8s_multiple_doc_yaml_temp_definition' => :'Array<Integer>',
    :'k8s_namespace' => :'String',
    :'k8s_role_name' => :'String',
    :'k8s_role_type' => :'String',
    :'k8s_service_account' => :'String',
    :'last_admin_rotation' => :'Integer',
    :'ldap_audience' => :'String',
    :'ldap_bind_dn' => :'String',
    :'ldap_bind_password' => :'String',
    :'ldap_certificate' => :'String',
    :'ldap_group_dn' => :'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',
    :'mysql_revocation_statements' => :'String',
    :'oracle_creation_statements' => :'String',
    :'oracle_revocation_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',
    :'use_gw_service_account' => :'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_access_token' => :'String',
    :'venafi_tpp_client_id' => :'String',
    :'venafi_tpp_password' => :'String',
    :'venafi_tpp_refresh_token' => :'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



2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
# File 'lib/akeyless/models/ds_producer_details.rb', line 2035

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      access_token_manager_id == o.access_token_manager_id &&
      acl_rules == o.acl_rules &&
      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_tags == o.aws_session_tags &&
      aws_session_token == o.aws_session_token &&
      aws_transitive_tag_keys == o.aws_transitive_tag_keys &&
      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 &&
      azure_username == o.azure_username &&
      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 &&
      cloud_service_provider == o.cloud_service_provider &&
      cluster_mode == o.cluster_mode &&
      connection_type == o.connection_type &&
      create_sync_url == o.create_sync_url &&
      db_client_id == o.db_client_id &&
      db_client_secret == o.db_client_secret &&
      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_tenant_id == o.db_tenant_id &&
      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. &&
       == 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_organization_name == o.github_organization_name &&
      github_repository_path == o.github_repository_path &&
      gitlab_access_token == o.gitlab_access_token &&
      gitlab_access_type == o.gitlab_access_type &&
      gitlab_certificate == o.gitlab_certificate &&
      gitlab_group_name == o.gitlab_group_name &&
      gitlab_project_name == o.gitlab_project_name &&
      gitlab_role == o.gitlab_role &&
      gitlab_token_scope == o.gitlab_token_scope &&
      gitlab_url == o.gitlab_url &&
      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. &&
      google_workspace_access_mode == o.google_workspace_access_mode &&
      google_workspace_admin_name == o.google_workspace_admin_name &&
      google_workspace_group_name == o.google_workspace_group_name &&
      google_workspace_group_role == o.google_workspace_group_role &&
      google_workspace_role_name == o.google_workspace_role_name &&
      google_workspace_role_scope == o.google_workspace_role_scope &&
      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_auth_type == o.k8s_auth_type &&
      k8s_bearer_token == o.k8s_bearer_token &&
      k8s_client_cert_data == o.k8s_client_cert_data &&
      k8s_client_key_data == o.k8s_client_key_data &&
      k8s_cluster_ca_certificate == o.k8s_cluster_ca_certificate &&
      k8s_cluster_endpoint == o.k8s_cluster_endpoint &&
      k8s_cluster_name == o.k8s_cluster_name &&
      k8s_dynamic_mode == o.k8s_dynamic_mode &&
      k8s_multiple_doc_yaml_temp_definition == o.k8s_multiple_doc_yaml_temp_definition &&
      k8s_namespace == o.k8s_namespace &&
      k8s_role_name == o.k8s_role_name &&
      k8s_role_type == o.k8s_role_type &&
       == o. &&
      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_group_dn == o.ldap_group_dn &&
      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 &&
      mysql_revocation_statements == o.mysql_revocation_statements &&
      oracle_creation_statements == o.oracle_creation_statements &&
      oracle_revocation_statements == o.oracle_revocation_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 &&
       == o. &&
      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_access_token == o.venafi_tpp_access_token &&
      venafi_tpp_client_id == o.venafi_tpp_client_id &&
      venafi_tpp_password == o.venafi_tpp_password &&
      venafi_tpp_refresh_token == o.venafi_tpp_refresh_token &&
      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

#_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



2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
# File 'lib/akeyless/models/ds_producer_details.rb', line 2389

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

#eql?(o) ⇒ Boolean

Parameters:

  • Object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


2281
2282
2283
# File 'lib/akeyless/models/ds_producer_details.rb', line 2281

def eql?(o)
  self == o
end

#hashInteger

Calculates hash code according to all attributes.

Returns:

  • (Integer)

    Hash code



2287
2288
2289
# File 'lib/akeyless/models/ds_producer_details.rb', line 2287

def hash
  [access_token_manager_id, acl_rules, 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_tags, aws_session_token, aws_transitive_tag_keys, 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, azure_username, 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, cloud_service_provider, cluster_mode, connection_type, create_sync_url, db_client_id, db_client_secret, 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_tenant_id, 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_organization_name, github_repository_path, gitlab_access_token, gitlab_access_type, gitlab_certificate, gitlab_group_name, gitlab_project_name, gitlab_role, gitlab_token_scope, gitlab_url, gke_cluster_ca_certificate, gke_cluster_endpoint, gke_cluster_name, , , google_workspace_access_mode, google_workspace_admin_name, google_workspace_group_name, google_workspace_group_role, google_workspace_role_name, google_workspace_role_scope, 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_auth_type, k8s_bearer_token, k8s_client_cert_data, k8s_client_key_data, k8s_cluster_ca_certificate, k8s_cluster_endpoint, k8s_cluster_name, k8s_dynamic_mode, k8s_multiple_doc_yaml_temp_definition, k8s_namespace, k8s_role_name, k8s_role_type, , last_admin_rotation, ldap_audience, ldap_bind_dn, ldap_bind_password, ldap_certificate, ldap_group_dn, 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, mysql_revocation_statements, oracle_creation_statements, oracle_revocation_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_access_token, venafi_tpp_client_id, venafi_tpp_password, venafi_tpp_refresh_token, 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



2020
2021
2022
2023
2024
# File 'lib/akeyless/models/ds_producer_details.rb', line 2020

def list_invalid_properties
  warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
  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



2365
2366
2367
# File 'lib/akeyless/models/ds_producer_details.rb', line 2365

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



2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
# File 'lib/akeyless/models/ds_producer_details.rb', line 2371

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



2359
2360
2361
# File 'lib/akeyless/models/ds_producer_details.rb', line 2359

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



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

def valid?
  warn '[DEPRECATED] the `valid?` method is obsolete'
  true
end