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



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
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
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
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
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
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
# File 'lib/akeyless/models/ds_producer_details.rb', line 1264

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  if attributes.key?(:'api_key_id')
    self.api_key_id = attributes[:'api_key_id']
  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?(:'auth_mode')
    self.auth_mode = attributes[:'auth_mode']
  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_external_id')
    self.aws_external_id = attributes[:'aws_external_id']
  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_name')
    self.aws_user_name = attributes[:'aws_user_name']
  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_administrative_unit')
    self.azure_administrative_unit = attributes[:'azure_administrative_unit']
  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_cloud')
    self.azure_cloud = attributes[:'azure_cloud']
  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?(:'client_certificate')
    self.client_certificate = attributes[:'client_certificate']
  end

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

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

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

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

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

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

  if attributes.key?(:'gcp_project_id')
    self.gcp_project_id = attributes[:'gcp_project_id']
  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_role_names')
    self.gcp_role_names = attributes[:'gcp_role_names']
  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_fixed_user_name_sub_claim_key')
    self.google_workspace_fixed_user_name_sub_claim_key = attributes[:'google_workspace_fixed_user_name_sub_claim_key']
  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?(:'grace_rotated_secret_key')
    self.grace_rotated_secret_key = attributes[:'grace_rotated_secret_key']
  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?(:'gw_cloud_identity_external_id_opt')
    self.gw_cloud_identity_external_id_opt = attributes[:'gw_cloud_identity_external_id_opt']
  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_custom_fields_details')
    if (value = attributes[:'item_custom_fields_details']).is_a?(Array)
      self.item_custom_fields_details = value
    end
  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_fixed_user_name_sub_claim_key')
    self.ldap_fixed_user_name_sub_claim_key = attributes[:'ldap_fixed_user_name_sub_claim_key']
  end

  if attributes.key?(:'ldap_fixed_user_type')
    self.ldap_fixed_user_type = attributes[:'ldap_fixed_user_type']
  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_scopes')
    self.mongodb_scopes = attributes[:'mongodb_scopes']
  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_allowed_db_names')
    self.mssql_allowed_db_names = attributes[:'mssql_allowed_db_names']
  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?(:'oauth_access_token')
    self.oauth_access_token = attributes[:'oauth_access_token']
  end

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

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

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

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

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

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

  if attributes.key?(:'project_id')
    self.project_id = attributes[:'project_id']
  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?(:'rdp_fixed_user_name_sub_claim_key')
    self.rdp_fixed_user_name_sub_claim_key = attributes[:'rdp_fixed_user_name_sub_claim_key']
  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_auth_mode')
    self.sf_auth_mode = attributes[:'sf_auth_mode']
  end

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

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

#aerospike_admin_usernameObject

Returns the value of attribute aerospike_admin_username.



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

def aerospike_admin_username
  @aerospike_admin_username
end

#aerospike_client_certificateObject

Returns the value of attribute aerospike_client_certificate.



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

def aerospike_client_certificate
  @aerospike_client_certificate
end

#aerospike_client_idObject

Returns the value of attribute aerospike_client_id.



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

def aerospike_client_id
  @aerospike_client_id
end

#aerospike_client_private_keyObject

Returns the value of attribute aerospike_client_private_key.



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

def aerospike_client_private_key
  @aerospike_client_private_key
end

#aerospike_client_secretObject

Returns the value of attribute aerospike_client_secret.



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

def aerospike_client_secret
  @aerospike_client_secret
end

#aerospike_cloudObject

Returns the value of attribute aerospike_cloud.



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

def aerospike_cloud
  @aerospike_cloud
end

#aerospike_cluster_idObject

Returns the value of attribute aerospike_cluster_id.



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

def aerospike_cluster_id
  @aerospike_cluster_id
end

#aerospike_db_server_nameObject

Returns the value of attribute aerospike_db_server_name.



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

def aerospike_db_server_name
  @aerospike_db_server_name
end

#aerospike_enable_mtlsObject

Returns the value of attribute aerospike_enable_mtls.



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

def aerospike_enable_mtls
  @aerospike_enable_mtls
end

#aerospike_hostnameObject

Returns the value of attribute aerospike_hostname.



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

def aerospike_hostname
  @aerospike_hostname
end

#aerospike_namespaceObject

Returns the value of attribute aerospike_namespace.



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

def aerospike_namespace
  @aerospike_namespace
end

#aerospike_passwordObject

Returns the value of attribute aerospike_password.



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

def aerospike_password
  @aerospike_password
end

#aerospike_portObject

Returns the value of attribute aerospike_port.



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

def aerospike_port
  @aerospike_port
end

#aerospike_rolesObject

Returns the value of attribute aerospike_roles.



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

def aerospike_roles
  @aerospike_roles
end

#aerospike_skip_server_name_validationObject

Returns the value of attribute aerospike_skip_server_name_validation.



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

def aerospike_skip_server_name_validation
  @aerospike_skip_server_name_validation
end

#aerospike_ssl_connection_certificateObject

Returns the value of attribute aerospike_ssl_connection_certificate.



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

def aerospike_ssl_connection_certificate
  @aerospike_ssl_connection_certificate
end

#aerospike_ssl_connection_modeObject

Returns the value of attribute aerospike_ssl_connection_mode.



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

def aerospike_ssl_connection_mode
  @aerospike_ssl_connection_mode
end

#agentic_rulesObject

Returns the value of attribute agentic_rules.



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

def agentic_rules
  @agentic_rules
end

#api_keyObject

Returns the value of attribute api_key.



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

def api_key
  @api_key
end

#api_key_idObject

Returns the value of attribute api_key_id.



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

def api_key_id
  @api_key_id
end

#artifactory_admin_apikeyObject

Returns the value of attribute artifactory_admin_apikey.



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

def artifactory_admin_apikey
  @artifactory_admin_apikey
end

#artifactory_admin_usernameObject

Returns the value of attribute artifactory_admin_username.



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

def artifactory_admin_username
  @artifactory_admin_username
end

#artifactory_base_urlObject

Returns the value of attribute artifactory_base_url.



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

def artifactory_base_url
  @artifactory_base_url
end

#artifactory_token_audienceObject

Returns the value of attribute artifactory_token_audience.



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

def artifactory_token_audience
  @artifactory_token_audience
end

#artifactory_token_scopeObject

Returns the value of attribute artifactory_token_scope.



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

def artifactory_token_scope
  @artifactory_token_scope
end

#auth_modeObject

AuthMode selects how this target authenticates. Empty (default) uses ApiKey as a static bearer token against BaseURL, matching all pre-existing behavior. OpenAIAuthModeChatGPTOAuth instead uses the OAuth* fields below.



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

def auth_mode
  @auth_mode
end

#authorization_portObject

Returns the value of attribute authorization_port.



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

def authorization_port
  @authorization_port
end

#aws_access_key_idObject

Returns the value of attribute aws_access_key_id.



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

def aws_access_key_id
  @aws_access_key_id
end

#aws_access_modeObject

Returns the value of attribute aws_access_mode.



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

def aws_access_mode
  @aws_access_mode
end

#aws_external_idObject

Returns the value of attribute aws_external_id.



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

def aws_external_id
  @aws_external_id
end

#aws_regionObject

Returns the value of attribute aws_region.



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

def aws_region
  @aws_region
end

#aws_role_arnsObject

Returns the value of attribute aws_role_arns.



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

def aws_role_arns
  @aws_role_arns
end

#aws_secret_access_keyObject

Returns the value of attribute aws_secret_access_key.



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

def aws_secret_access_key
  @aws_secret_access_key
end

#aws_session_tagsObject

Returns the value of attribute aws_session_tags.



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

def aws_session_tags
  @aws_session_tags
end

#aws_session_tokenObject

Returns the value of attribute aws_session_token.



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

def aws_session_token
  @aws_session_token
end

#aws_transitive_tag_keysObject

Returns the value of attribute aws_transitive_tag_keys.



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

def aws_transitive_tag_keys
  @aws_transitive_tag_keys
end

#aws_user_console_accessObject

Returns the value of attribute aws_user_console_access.



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

def aws_user_console_access
  @aws_user_console_access
end

#aws_user_groupsObject

Returns the value of attribute aws_user_groups.



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

def aws_user_groups
  @aws_user_groups
end

#aws_user_nameObject

Returns the value of attribute aws_user_name.



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

def aws_user_name
  @aws_user_name
end

#aws_user_policiesObject

Returns the value of attribute aws_user_policies.



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

def aws_user_policies
  @aws_user_policies
end

#aws_user_programmatic_accessObject

Returns the value of attribute aws_user_programmatic_access.



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

def aws_user_programmatic_access
  @aws_user_programmatic_access
end

#azure_administrative_unitObject

Returns the value of attribute azure_administrative_unit.



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

def azure_administrative_unit
  @azure_administrative_unit
end

#azure_app_object_idObject

Returns the value of attribute azure_app_object_id.



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

def azure_app_object_id
  @azure_app_object_id
end

#azure_client_idObject

Returns the value of attribute azure_client_id.



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

def azure_client_id
  @azure_client_id
end

#azure_client_secretObject

Returns the value of attribute azure_client_secret.



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

def azure_client_secret
  @azure_client_secret
end

#azure_cloudObject

Returns the value of attribute azure_cloud.



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

def azure_cloud
  @azure_cloud
end

#azure_fixed_user_name_sub_claim_keyObject

Returns the value of attribute azure_fixed_user_name_sub_claim_key.



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

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.



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

def azure_fixed_user_only
  @azure_fixed_user_only
end

#azure_resource_group_nameObject

Returns the value of attribute azure_resource_group_name.



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

def azure_resource_group_name
  @azure_resource_group_name
end

#azure_resource_nameObject

Returns the value of attribute azure_resource_name.



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

def azure_resource_name
  @azure_resource_name
end

#azure_subscription_idObject

Returns the value of attribute azure_subscription_id.



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

def azure_subscription_id
  @azure_subscription_id
end

#azure_tenant_idObject

Returns the value of attribute azure_tenant_id.



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

def azure_tenant_id
  @azure_tenant_id
end

#azure_user_groups_obj_idObject

Returns the value of attribute azure_user_groups_obj_id.



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

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.



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

def azure_user_portal_access
  @azure_user_portal_access
end

#azure_user_programmatic_accessObject

Returns the value of attribute azure_user_programmatic_access.



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

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.



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

def azure_user_roles_template_id
  @azure_user_roles_template_id
end

#azure_usernameObject

Returns the value of attribute azure_username.



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

def azure_username
  @azure_username
end

#cassandra_creation_statementsObject

Returns the value of attribute cassandra_creation_statements.



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

def cassandra_creation_statements
  @cassandra_creation_statements
end

#chef_organizationsObject

Returns the value of attribute chef_organizations.



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

def chef_organizations
  @chef_organizations
end

#chef_server_access_modeObject

Returns the value of attribute chef_server_access_mode.



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

def chef_server_access_mode
  @chef_server_access_mode
end

#chef_server_host_nameObject

Returns the value of attribute chef_server_host_name.



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

def chef_server_host_name
  @chef_server_host_name
end

#chef_server_keyObject

Returns the value of attribute chef_server_key.



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

def chef_server_key
  @chef_server_key
end

#chef_server_portObject

Returns the value of attribute chef_server_port.



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

def chef_server_port
  @chef_server_port
end

#chef_server_urlObject

Returns the value of attribute chef_server_url.



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

def chef_server_url
  @chef_server_url
end

#chef_server_usernameObject

Returns the value of attribute chef_server_username.



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

def chef_server_username
  @chef_server_username
end

#chef_skip_sslObject

Returns the value of attribute chef_skip_ssl.



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

def chef_skip_ssl
  @chef_skip_ssl
end

#client_authentication_typeObject

Returns the value of attribute client_authentication_type.



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

def client_authentication_type
  @client_authentication_type
end

#client_certificateObject

(Optional) ClientCertificate defines the client certificate for mutual TLS. Must be base64 certificate loaded by UI using file loader field



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

def client_certificate
  @client_certificate
end

#client_key_passphraseObject

(Optional) ClientKeyPassphrase defines the passphrase for the client private key



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

def client_key_passphrase
  @client_key_passphrase
end

#client_private_keyObject

(Optional) ClientPrivateKey defines the client private key for mutual TLS. Must be base64 private key loaded by UI using file loader field



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

def client_private_key
  @client_private_key
end

#cloud_service_providerObject

Returns the value of attribute cloud_service_provider.



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

def cloud_service_provider
  @cloud_service_provider
end

#cluster_modeObject

Returns the value of attribute cluster_mode.



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

def cluster_mode
  @cluster_mode
end

#connection_typeObject

Returns the value of attribute connection_type.



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

def connection_type
  @connection_type
end

#create_sync_urlObject

Returns the value of attribute create_sync_url.



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

def create_sync_url
  @create_sync_url
end

#db_client_idObject

Returns the value of attribute db_client_id.



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

def db_client_id
  @db_client_id
end

#db_client_secretObject

Returns the value of attribute db_client_secret.



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

def db_client_secret
  @db_client_secret
end

#db_host_nameObject

Returns the value of attribute db_host_name.



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

def db_host_name
  @db_host_name
end

#db_isolation_levelObject

Returns the value of attribute db_isolation_level.



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

def db_isolation_level
  @db_isolation_level
end

#db_max_idle_connsObject

Returns the value of attribute db_max_idle_conns.



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

def db_max_idle_conns
  @db_max_idle_conns
end

#db_max_open_connsObject

Returns the value of attribute db_max_open_conns.



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

def db_max_open_conns
  @db_max_open_conns
end

#db_nameObject

Returns the value of attribute db_name.



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

def db_name
  @db_name
end

#db_portObject

Returns the value of attribute db_port.



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

def db_port
  @db_port
end

#db_private_keyObject

(Optional) Private Key in PEM format



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

def db_private_key
  @db_private_key
end

#db_private_key_passphraseObject

Returns the value of attribute db_private_key_passphrase.



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

def db_private_key_passphrase
  @db_private_key_passphrase
end

#db_pwdObject

Returns the value of attribute db_pwd.



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

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.



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

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.



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

def db_server_name
  @db_server_name
end

#db_tenant_idObject

Returns the value of attribute db_tenant_id.



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

def db_tenant_id
  @db_tenant_id
end

#db_user_nameObject

Returns the value of attribute db_user_name.



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

def db_user_name
  @db_user_name
end

#delete_protectionObject

Returns the value of attribute delete_protection.



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

def delete_protection
  @delete_protection
end

#dynamic_secret_idObject

Returns the value of attribute dynamic_secret_id.



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

def dynamic_secret_id
  @dynamic_secret_id
end

#dynamic_secret_keyObject

Returns the value of attribute dynamic_secret_key.



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

def dynamic_secret_key
  @dynamic_secret_key
end

#dynamic_secret_nameObject

Returns the value of attribute dynamic_secret_name.



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

def dynamic_secret_name
  @dynamic_secret_name
end

#dynamic_secret_typeObject

Returns the value of attribute dynamic_secret_type.



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

def dynamic_secret_type
  @dynamic_secret_type
end

#eks_access_key_idObject

Returns the value of attribute eks_access_key_id.



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

def eks_access_key_id
  @eks_access_key_id
end

#eks_assume_roleObject

Returns the value of attribute eks_assume_role.



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

def eks_assume_role
  @eks_assume_role
end

#eks_cluster_ca_certificateObject

Returns the value of attribute eks_cluster_ca_certificate.



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

def eks_cluster_ca_certificate
  @eks_cluster_ca_certificate
end

#eks_cluster_endpointObject

Returns the value of attribute eks_cluster_endpoint.



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

def eks_cluster_endpoint
  @eks_cluster_endpoint
end

#eks_cluster_nameObject

Returns the value of attribute eks_cluster_name.



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

def eks_cluster_name
  @eks_cluster_name
end

#eks_regionObject

Returns the value of attribute eks_region.



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

def eks_region
  @eks_region
end

#eks_secret_access_keyObject

Returns the value of attribute eks_secret_access_key.



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

def eks_secret_access_key
  @eks_secret_access_key
end

#enable_admin_rotationObject

Returns the value of attribute enable_admin_rotation.



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

def enable_admin_rotation
  @enable_admin_rotation
end

#enable_mtlsObject

(Optional) EnableMTLS defines if mutual TLS will be used to connect to DB



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

def enable_mtls
  @enable_mtls
end

#enforce_replay_preventionObject

relevant for PRIVATE_KEY_JWT client authentication type



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

def enforce_replay_prevention
  @enforce_replay_prevention
end

#expiration_dateObject

Returns the value of attribute expiration_date.



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

def expiration_date
  @expiration_date
end

#externally_provided_userObject

Returns the value of attribute externally_provided_user.



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

def externally_provided_user
  @externally_provided_user
end

#failure_messageObject

Returns the value of attribute failure_message.



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

def failure_message
  @failure_message
end

#fixed_user_onlyObject

Returns the value of attribute fixed_user_only.



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

def fixed_user_only
  @fixed_user_only
end

#gcp_access_typeObject

Returns the value of attribute gcp_access_type.



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

def gcp_access_type
  @gcp_access_type
end

#gcp_fixed_user_claim_keynameObject

Returns the value of attribute gcp_fixed_user_claim_keyname.



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

def gcp_fixed_user_claim_keyname
  @gcp_fixed_user_claim_keyname
end

#gcp_key_algoObject

Returns the value of attribute gcp_key_algo.



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

def gcp_key_algo
  @gcp_key_algo
end

#gcp_project_idObject

Returns the value of attribute gcp_project_id.



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

def gcp_project_id
  @gcp_project_id
end

#gcp_role_bindingsObject

Returns the value of attribute gcp_role_bindings.



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

def gcp_role_bindings
  @gcp_role_bindings
end

#gcp_role_namesObject

Returns the value of attribute gcp_role_names.



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

def gcp_role_names
  @gcp_role_names
end

#gcp_service_account_emailObject

GCPServiceAccountEmail overrides the deprecated field from the target



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

def 
  @gcp_service_account_email
end

#gcp_service_account_keyObject

Returns the value of attribute gcp_service_account_key.



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

def 
  @gcp_service_account_key
end

#gcp_service_account_key_base64Object

Returns the value of attribute gcp_service_account_key_base64.



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

def 
  @gcp_service_account_key_base64
end

#gcp_service_account_key_idObject

Returns the value of attribute gcp_service_account_key_id.



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

def 
  @gcp_service_account_key_id
end

#gcp_service_account_typeObject

Returns the value of attribute gcp_service_account_type.



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

def 
  @gcp_service_account_type
end

#gcp_tmp_service_account_nameObject

Returns the value of attribute gcp_tmp_service_account_name.



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

def 
  @gcp_tmp_service_account_name
end

#gcp_token_lifetimeObject

Returns the value of attribute gcp_token_lifetime.



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

def gcp_token_lifetime
  @gcp_token_lifetime
end

#gcp_token_scopeObject

Returns the value of attribute gcp_token_scope.



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

def gcp_token_scope
  @gcp_token_scope
end

#gcp_token_typeObject

Returns the value of attribute gcp_token_type.



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

def gcp_token_type
  @gcp_token_type
end

#github_app_idObject

Returns the value of attribute github_app_id.



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

def github_app_id
  @github_app_id
end

#github_app_private_keyObject

Returns the value of attribute github_app_private_key.



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

def github_app_private_key
  @github_app_private_key
end

#github_base_urlObject

Returns the value of attribute github_base_url.



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

def github_base_url
  @github_base_url
end

#github_installation_idObject

Returns the value of attribute github_installation_id.



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

def github_installation_id
  @github_installation_id
end

#github_installation_token_permissionsObject

Returns the value of attribute github_installation_token_permissions.



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

def github_installation_token_permissions
  @github_installation_token_permissions
end

#github_installation_token_repositoriesObject

Returns the value of attribute github_installation_token_repositories.



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

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.



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

def github_installation_token_repositories_ids
  @github_installation_token_repositories_ids
end

#github_organization_nameObject

Returns the value of attribute github_organization_name.



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

def github_organization_name
  @github_organization_name
end

#github_repository_pathObject

Returns the value of attribute github_repository_path.



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

def github_repository_path
  @github_repository_path
end

#gitlab_access_tokenObject

Returns the value of attribute gitlab_access_token.



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

def gitlab_access_token
  @gitlab_access_token
end

#gitlab_access_typeObject

Returns the value of attribute gitlab_access_type.



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

def gitlab_access_type
  @gitlab_access_type
end

#gitlab_certificateObject

Returns the value of attribute gitlab_certificate.



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

def gitlab_certificate
  @gitlab_certificate
end

#gitlab_group_nameObject

Returns the value of attribute gitlab_group_name.



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

def gitlab_group_name
  @gitlab_group_name
end

#gitlab_project_nameObject

Returns the value of attribute gitlab_project_name.



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

def gitlab_project_name
  @gitlab_project_name
end

#gitlab_roleObject

Returns the value of attribute gitlab_role.



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

def gitlab_role
  @gitlab_role
end

#gitlab_token_scopeObject

Returns the value of attribute gitlab_token_scope.



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

def gitlab_token_scope
  @gitlab_token_scope
end

#gitlab_urlObject

Returns the value of attribute gitlab_url.



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

def gitlab_url
  @gitlab_url
end

#gke_cluster_ca_certificateObject

Returns the value of attribute gke_cluster_ca_certificate.



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

def gke_cluster_ca_certificate
  @gke_cluster_ca_certificate
end

#gke_cluster_endpointObject

Returns the value of attribute gke_cluster_endpoint.



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

def gke_cluster_endpoint
  @gke_cluster_endpoint
end

#gke_cluster_nameObject

Returns the value of attribute gke_cluster_name.



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

def gke_cluster_name
  @gke_cluster_name
end

#gke_service_account_keyObject

Returns the value of attribute gke_service_account_key.



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

def 
  @gke_service_account_key
end

#gke_service_account_nameObject

Returns the value of attribute gke_service_account_name.



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

def 
  @gke_service_account_name
end

#google_workspace_access_modeObject

Returns the value of attribute google_workspace_access_mode.



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

def google_workspace_access_mode
  @google_workspace_access_mode
end

#google_workspace_admin_nameObject

Returns the value of attribute google_workspace_admin_name.



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

def google_workspace_admin_name
  @google_workspace_admin_name
end

#google_workspace_fixed_user_name_sub_claim_keyObject

Returns the value of attribute google_workspace_fixed_user_name_sub_claim_key.



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

def google_workspace_fixed_user_name_sub_claim_key
  @google_workspace_fixed_user_name_sub_claim_key
end

#google_workspace_group_nameObject

Returns the value of attribute google_workspace_group_name.



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

def google_workspace_group_name
  @google_workspace_group_name
end

#google_workspace_group_roleObject

Returns the value of attribute google_workspace_group_role.



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

def google_workspace_group_role
  @google_workspace_group_role
end

#google_workspace_role_nameObject

Returns the value of attribute google_workspace_role_name.



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

def google_workspace_role_name
  @google_workspace_role_name
end

#google_workspace_role_scopeObject

Returns the value of attribute google_workspace_role_scope.



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

def google_workspace_role_scope
  @google_workspace_role_scope
end

#grace_rotated_secret_keyObject

Returns the value of attribute grace_rotated_secret_key.



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

def grace_rotated_secret_key
  @grace_rotated_secret_key
end

#grant_typesObject

Returns the value of attribute grant_types.



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

def grant_types
  @grant_types
end

#groupsObject

Returns the value of attribute groups.



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

def groups
  @groups
end

#gw_cloud_identity_external_id_optObject

Returns the value of attribute gw_cloud_identity_external_id_opt.



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

def gw_cloud_identity_external_id_opt
  @gw_cloud_identity_external_id_opt
end

#hanadb_creation_statementsObject

Returns the value of attribute hanadb_creation_statements.



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

def hanadb_creation_statements
  @hanadb_creation_statements
end

#hanadb_revocation_statementsObject

Returns the value of attribute hanadb_revocation_statements.



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

def hanadb_revocation_statements
  @hanadb_revocation_statements
end

#host_nameObject

Returns the value of attribute host_name.



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

def host_name
  @host_name
end

#host_portObject

Returns the value of attribute host_port.



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

def host_port
  @host_port
end

#implementation_typeObject

Returns the value of attribute implementation_type.



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

def implementation_type
  @implementation_type
end

#is_fixed_userObject

Returns the value of attribute is_fixed_user.



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

def is_fixed_user
  @is_fixed_user
end

#issuerObject

relevant for CLIENT_TLS_CERTIFICATE client authentication type



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

def issuer
  @issuer
end

#item_custom_fields_detailsObject

Returns the value of attribute item_custom_fields_details.



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

def item_custom_fields_details
  @item_custom_fields_details
end

#item_targets_assocObject

Returns the value of attribute item_targets_assoc.



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

def item_targets_assoc
  @item_targets_assoc
end

#jwksObject

Returns the value of attribute jwks.



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

def jwks
  @jwks
end

#jwks_urlObject

Returns the value of attribute jwks_url.



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

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



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

def k8s_allowed_namespaces
  @k8s_allowed_namespaces
end

#k8s_auth_typeObject

Returns the value of attribute k8s_auth_type.



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

def k8s_auth_type
  @k8s_auth_type
end

#k8s_bearer_tokenObject

Returns the value of attribute k8s_bearer_token.



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

def k8s_bearer_token
  @k8s_bearer_token
end

#k8s_client_cert_dataObject

For K8s Client certificates authentication



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

def k8s_client_cert_data
  @k8s_client_cert_data
end

#k8s_client_key_dataObject

Returns the value of attribute k8s_client_key_data.



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

def k8s_client_key_data
  @k8s_client_key_data
end

#k8s_cluster_ca_certificateObject

Returns the value of attribute k8s_cluster_ca_certificate.



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

def k8s_cluster_ca_certificate
  @k8s_cluster_ca_certificate
end

#k8s_cluster_endpointObject

Returns the value of attribute k8s_cluster_endpoint.



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

def k8s_cluster_endpoint
  @k8s_cluster_endpoint
end

#k8s_cluster_nameObject

Returns the value of attribute k8s_cluster_name.



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

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



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

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



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

def k8s_multiple_doc_yaml_temp_definition
  @k8s_multiple_doc_yaml_temp_definition
end

#k8s_namespaceObject

Returns the value of attribute k8s_namespace.



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

def k8s_namespace
  @k8s_namespace
end

#k8s_role_nameObject

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



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

def k8s_role_name
  @k8s_role_name
end

#k8s_role_typeObject

Returns the value of attribute k8s_role_type.



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

def k8s_role_type
  @k8s_role_type
end

#k8s_service_accountObject

Returns the value of attribute k8s_service_account.



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

def 
  @k8s_service_account
end

#last_admin_rotationObject

Returns the value of attribute last_admin_rotation.



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

def last_admin_rotation
  @last_admin_rotation
end

#ldap_audienceObject

Returns the value of attribute ldap_audience.



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

def ldap_audience
  @ldap_audience
end

#ldap_bind_dnObject

Returns the value of attribute ldap_bind_dn.



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

def ldap_bind_dn
  @ldap_bind_dn
end

#ldap_bind_passwordObject

Returns the value of attribute ldap_bind_password.



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

def ldap_bind_password
  @ldap_bind_password
end

#ldap_certificateObject

Returns the value of attribute ldap_certificate.



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

def ldap_certificate
  @ldap_certificate
end

#ldap_fixed_user_name_sub_claim_keyObject

Returns the value of attribute ldap_fixed_user_name_sub_claim_key.



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

def ldap_fixed_user_name_sub_claim_key
  @ldap_fixed_user_name_sub_claim_key
end

#ldap_fixed_user_typeObject

Returns the value of attribute ldap_fixed_user_type.



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

def ldap_fixed_user_type
  @ldap_fixed_user_type
end

#ldap_group_dnObject

Returns the value of attribute ldap_group_dn.



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

def ldap_group_dn
  @ldap_group_dn
end

#ldap_token_expirationObject

Returns the value of attribute ldap_token_expiration.



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

def ldap_token_expiration
  @ldap_token_expiration
end

#ldap_urlObject

Returns the value of attribute ldap_url.



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

def ldap_url
  @ldap_url
end

#ldap_user_attrObject

Returns the value of attribute ldap_user_attr.



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

def ldap_user_attr
  @ldap_user_attr
end

#ldap_user_dnObject

Returns the value of attribute ldap_user_dn.



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

def ldap_user_dn
  @ldap_user_dn
end

#metadataObject

Returns the value of attribute metadata.



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

def 
  @metadata
end

#mongodb_atlas_api_private_keyObject

Returns the value of attribute mongodb_atlas_api_private_key.



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

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.



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

def mongodb_atlas_api_public_key
  @mongodb_atlas_api_public_key
end

#mongodb_atlas_project_idObject

mongodb atlas fields



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

def mongodb_atlas_project_id
  @mongodb_atlas_project_id
end

#mongodb_custom_dataObject

Returns the value of attribute mongodb_custom_data.



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

def mongodb_custom_data
  @mongodb_custom_data
end

#mongodb_db_nameObject

common fields



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

def mongodb_db_name
  @mongodb_db_name
end

#mongodb_default_auth_dbObject

Returns the value of attribute mongodb_default_auth_db.



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

def mongodb_default_auth_db
  @mongodb_default_auth_db
end

#mongodb_host_portObject

Returns the value of attribute mongodb_host_port.



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

def mongodb_host_port
  @mongodb_host_port
end

#mongodb_is_atlasObject

Returns the value of attribute mongodb_is_atlas.



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

def mongodb_is_atlas
  @mongodb_is_atlas
end

#mongodb_passwordObject

Returns the value of attribute mongodb_password.



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

def mongodb_password
  @mongodb_password
end

#mongodb_rolesObject

common fields



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

def mongodb_roles
  @mongodb_roles
end

#mongodb_scopesObject

Returns the value of attribute mongodb_scopes.



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

def mongodb_scopes
  @mongodb_scopes
end

#mongodb_uri_connectionObject

mongodb fields



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

def mongodb_uri_connection
  @mongodb_uri_connection
end

#mongodb_uri_optionsObject

Returns the value of attribute mongodb_uri_options.



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

def mongodb_uri_options
  @mongodb_uri_options
end

#mongodb_usernameObject

Returns the value of attribute mongodb_username.



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

def mongodb_username
  @mongodb_username
end

#mssql_allowed_db_namesObject

Comma-separated list of allowed DB names for runtime selection when fetching the secret value. Empty string => use target DB name only (no override allowed) "*" => any DB name is allowed One or more names => user must select one of the provided names



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

def mssql_allowed_db_names
  @mssql_allowed_db_names
end

#mssql_creation_statementsObject

Returns the value of attribute mssql_creation_statements.



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

def mssql_creation_statements
  @mssql_creation_statements
end

#mssql_revocation_statementsObject

Returns the value of attribute mssql_revocation_statements.



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

def mssql_revocation_statements
  @mssql_revocation_statements
end

#mysql_creation_statementsObject

Returns the value of attribute mysql_creation_statements.



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

def mysql_creation_statements
  @mysql_creation_statements
end

#mysql_revocation_statementsObject

Returns the value of attribute mysql_revocation_statements.



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

def mysql_revocation_statements
  @mysql_revocation_statements
end

#oauth_access_tokenObject

OAuthAccessToken is the current ChatGPT-issued access token (the tokens.access_token field of the customer's local auth.json). Akeyless refreshes this automatically; do not treat it as long-lived.



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

def oauth_access_token
  @oauth_access_token
end

#oauth_account_idObject

OAuthAccountID is the ChatGPT workspace/account id (tokens.account_id in auth.json), required on every request to the ChatGPT backend.



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

def 
  @oauth_account_id
end

#oauth_last_refreshObject

OAuthLastRefresh is the RFC3339 timestamp of the last successful Akeyless-performed refresh; used as a fallback expiry heuristic when the access token's JWT exp claim can't be parsed.



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

def oauth_last_refresh
  @oauth_last_refresh
end

#oauth_refresh_tokenObject

OAuthRefreshToken mints new access tokens. It rotates on every refresh - Akeyless persists the new value after each successful refresh, so the previous value becomes invalid.



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

def oauth_refresh_token
  @oauth_refresh_token
end

#openai_urlObject

Returns the value of attribute openai_url.



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

def openai_url
  @openai_url
end

#oracle_creation_statementsObject

Returns the value of attribute oracle_creation_statements.



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

def oracle_creation_statements
  @oracle_creation_statements
end

#oracle_revocation_statementsObject

Returns the value of attribute oracle_revocation_statements.



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

def oracle_revocation_statements
  @oracle_revocation_statements
end

#oracle_wallet_detailsObject

Returns the value of attribute oracle_wallet_details.



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

def oracle_wallet_details
  @oracle_wallet_details
end

#organization_idObject

Returns the value of attribute organization_id.



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

def organization_id
  @organization_id
end

#passwordObject

Returns the value of attribute password.



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

def password
  @password
end

#password_lengthObject

Returns the value of attribute password_length.



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

def password_length
  @password_length
end

#password_policyObject

Returns the value of attribute password_policy.



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

def password_policy
  @password_policy
end

#password_policy_infoObject

Returns the value of attribute password_policy_info.



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

def password_policy_info
  @password_policy_info
end

#payloadObject

Returns the value of attribute payload.



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

def payload
  @payload
end

#ping_urlObject

Returns the value of attribute ping_url.



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

def ping_url
  @ping_url
end

#postgres_creation_statementsObject

Returns the value of attribute postgres_creation_statements.



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

def postgres_creation_statements
  @postgres_creation_statements
end

#postgres_revocation_statementsObject

Returns the value of attribute postgres_revocation_statements.



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

def postgres_revocation_statements
  @postgres_revocation_statements
end

#preserve_existing_password_settingsObject

Internal marker for DS update flows: when true, keep the persisted password settings and merge explicit rule updates on top.



518
519
520
# File 'lib/akeyless/models/ds_producer_details.rb', line 518

def preserve_existing_password_settings
  @preserve_existing_password_settings
end

#privileged_userObject

Returns the value of attribute privileged_user.



520
521
522
# File 'lib/akeyless/models/ds_producer_details.rb', line 520

def privileged_user
  @privileged_user
end

#project_idObject

Returns the value of attribute project_id.



522
523
524
# File 'lib/akeyless/models/ds_producer_details.rb', line 522

def project_id
  @project_id
end

#rabbitmq_server_passwordObject

Returns the value of attribute rabbitmq_server_password.



524
525
526
# File 'lib/akeyless/models/ds_producer_details.rb', line 524

def rabbitmq_server_password
  @rabbitmq_server_password
end

#rabbitmq_server_uriObject

Returns the value of attribute rabbitmq_server_uri.



526
527
528
# File 'lib/akeyless/models/ds_producer_details.rb', line 526

def rabbitmq_server_uri
  @rabbitmq_server_uri
end

#rabbitmq_server_userObject

Returns the value of attribute rabbitmq_server_user.



528
529
530
# File 'lib/akeyless/models/ds_producer_details.rb', line 528

def rabbitmq_server_user
  @rabbitmq_server_user
end

#rabbitmq_user_conf_permissionObject

Returns the value of attribute rabbitmq_user_conf_permission.



530
531
532
# File 'lib/akeyless/models/ds_producer_details.rb', line 530

def rabbitmq_user_conf_permission
  @rabbitmq_user_conf_permission
end

#rabbitmq_user_read_permissionObject

Returns the value of attribute rabbitmq_user_read_permission.



532
533
534
# File 'lib/akeyless/models/ds_producer_details.rb', line 532

def rabbitmq_user_read_permission
  @rabbitmq_user_read_permission
end

#rabbitmq_user_tagsObject

Returns the value of attribute rabbitmq_user_tags.



534
535
536
# File 'lib/akeyless/models/ds_producer_details.rb', line 534

def rabbitmq_user_tags
  @rabbitmq_user_tags
end

#rabbitmq_user_vhostObject

Returns the value of attribute rabbitmq_user_vhost.



536
537
538
# File 'lib/akeyless/models/ds_producer_details.rb', line 536

def rabbitmq_user_vhost
  @rabbitmq_user_vhost
end

#rabbitmq_user_write_permissionObject

Returns the value of attribute rabbitmq_user_write_permission.



538
539
540
# File 'lib/akeyless/models/ds_producer_details.rb', line 538

def rabbitmq_user_write_permission
  @rabbitmq_user_write_permission
end

#rdp_fixed_user_name_sub_claim_keyObject

Returns the value of attribute rdp_fixed_user_name_sub_claim_key.



540
541
542
# File 'lib/akeyless/models/ds_producer_details.rb', line 540

def rdp_fixed_user_name_sub_claim_key
  @rdp_fixed_user_name_sub_claim_key
end

#redirect_urisObject

Returns the value of attribute redirect_uris.



542
543
544
# File 'lib/akeyless/models/ds_producer_details.rb', line 542

def redirect_uris
  @redirect_uris
end

#redshift_creation_statementsObject

Returns the value of attribute redshift_creation_statements.



544
545
546
# File 'lib/akeyless/models/ds_producer_details.rb', line 544

def redshift_creation_statements
  @redshift_creation_statements
end

#restricted_scopesObject

Returns the value of attribute restricted_scopes.



546
547
548
# File 'lib/akeyless/models/ds_producer_details.rb', line 546

def restricted_scopes
  @restricted_scopes
end

#revoke_sync_urlObject

Returns the value of attribute revoke_sync_url.



548
549
550
# File 'lib/akeyless/models/ds_producer_details.rb', line 548

def revoke_sync_url
  @revoke_sync_url
end

#rotate_sync_urlObject

Returns the value of attribute rotate_sync_url.



550
551
552
# File 'lib/akeyless/models/ds_producer_details.rb', line 550

def rotate_sync_url
  @rotate_sync_url
end

#scopesObject

Returns the value of attribute scopes.



552
553
554
# File 'lib/akeyless/models/ds_producer_details.rb', line 552

def scopes
  @scopes
end

#secure_remote_access_detailsObject

Returns the value of attribute secure_remote_access_details.



554
555
556
# File 'lib/akeyless/models/ds_producer_details.rb', line 554

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.



556
557
558
# File 'lib/akeyless/models/ds_producer_details.rb', line 556

def session_extension_warn_interval_min
  @session_extension_warn_interval_min
end

#sf_accountObject

Returns the value of attribute sf_account.



558
559
560
# File 'lib/akeyless/models/ds_producer_details.rb', line 558

def 
  @sf_account
end

#sf_auth_modeObject

Returns the value of attribute sf_auth_mode.



560
561
562
# File 'lib/akeyless/models/ds_producer_details.rb', line 560

def sf_auth_mode
  @sf_auth_mode
end

#sf_key_algoObject

Returns the value of attribute sf_key_algo.



562
563
564
# File 'lib/akeyless/models/ds_producer_details.rb', line 562

def sf_key_algo
  @sf_key_algo
end

#sf_user_roleObject

generated users info



565
566
567
# File 'lib/akeyless/models/ds_producer_details.rb', line 565

def sf_user_role
  @sf_user_role
end

#sf_warehouse_nameObject

Returns the value of attribute sf_warehouse_name.



567
568
569
# File 'lib/akeyless/models/ds_producer_details.rb', line 567

def sf_warehouse_name
  @sf_warehouse_name
end

#should_stopObject

TODO delete this after migration



570
571
572
# File 'lib/akeyless/models/ds_producer_details.rb', line 570

def should_stop
  @should_stop
end

#signing_algorithmObject

Returns the value of attribute signing_algorithm.



572
573
574
# File 'lib/akeyless/models/ds_producer_details.rb', line 572

def signing_algorithm
  @signing_algorithm
end

#skip_dry_runObject

Returns the value of attribute skip_dry_run.



574
575
576
# File 'lib/akeyless/models/ds_producer_details.rb', line 574

def skip_dry_run
  @skip_dry_run
end

#skip_server_name_validationObject

(Optional) SkipServerNameValidation disables server name verification while still validating the certificate chain. Postgres treats empty as legacy "skip hostname validation"; MySQL treats empty as false.



577
578
579
# File 'lib/akeyless/models/ds_producer_details.rb', line 577

def skip_server_name_validation
  @skip_server_name_validation
end

#ssl_connection_certificateObject

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



580
581
582
# File 'lib/akeyless/models/ds_producer_details.rb', line 580

def ssl_connection_certificate
  @ssl_connection_certificate
end

#ssl_connection_modeObject

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



583
584
585
# File 'lib/akeyless/models/ds_producer_details.rb', line 583

def ssl_connection_mode
  @ssl_connection_mode
end

#subject_dnObject

Returns the value of attribute subject_dn.



585
586
587
# File 'lib/akeyless/models/ds_producer_details.rb', line 585

def subject_dn
  @subject_dn
end

#tagsObject

Returns the value of attribute tags.



587
588
589
# File 'lib/akeyless/models/ds_producer_details.rb', line 587

def tags
  @tags
end

#timeout_secondsObject

Returns the value of attribute timeout_seconds.



589
590
591
# File 'lib/akeyless/models/ds_producer_details.rb', line 589

def timeout_seconds
  @timeout_seconds
end

#use_gw_cloud_identityObject

Returns the value of attribute use_gw_cloud_identity.



591
592
593
# File 'lib/akeyless/models/ds_producer_details.rb', line 591

def use_gw_cloud_identity
  @use_gw_cloud_identity
end

#use_gw_service_accountObject

Returns the value of attribute use_gw_service_account.



593
594
595
# File 'lib/akeyless/models/ds_producer_details.rb', line 593

def 
  @use_gw_service_account
end

#user_nameObject

Returns the value of attribute user_name.



595
596
597
# File 'lib/akeyless/models/ds_producer_details.rb', line 595

def user_name
  @user_name
end

#user_passwordObject

Returns the value of attribute user_password.



597
598
599
# File 'lib/akeyless/models/ds_producer_details.rb', line 597

def user_password
  @user_password
end

#user_principal_nameObject

Returns the value of attribute user_principal_name.



599
600
601
# File 'lib/akeyless/models/ds_producer_details.rb', line 599

def user_principal_name
  @user_principal_name
end

#user_ttlObject

Returns the value of attribute user_ttl.



601
602
603
# File 'lib/akeyless/models/ds_producer_details.rb', line 601

def user_ttl
  @user_ttl
end

#username_lengthObject

Returns the value of attribute username_length.



603
604
605
# File 'lib/akeyless/models/ds_producer_details.rb', line 603

def username_length
  @username_length
end

#username_policyObject

Returns the value of attribute username_policy.



605
606
607
# File 'lib/akeyless/models/ds_producer_details.rb', line 605

def username_policy
  @username_policy
end

#username_templateObject

Returns the value of attribute username_template.



607
608
609
# File 'lib/akeyless/models/ds_producer_details.rb', line 607

def username_template
  @username_template
end

#venafi_allow_subdomainsObject

Returns the value of attribute venafi_allow_subdomains.



609
610
611
# File 'lib/akeyless/models/ds_producer_details.rb', line 609

def venafi_allow_subdomains
  @venafi_allow_subdomains
end

#venafi_allowed_domainsObject

Returns the value of attribute venafi_allowed_domains.



611
612
613
# File 'lib/akeyless/models/ds_producer_details.rb', line 611

def venafi_allowed_domains
  @venafi_allowed_domains
end

#venafi_api_keyObject

Returns the value of attribute venafi_api_key.



613
614
615
# File 'lib/akeyless/models/ds_producer_details.rb', line 613

def venafi_api_key
  @venafi_api_key
end

#venafi_auto_generated_folderObject

Returns the value of attribute venafi_auto_generated_folder.



615
616
617
# File 'lib/akeyless/models/ds_producer_details.rb', line 615

def venafi_auto_generated_folder
  @venafi_auto_generated_folder
end

#venafi_base_urlObject

Returns the value of attribute venafi_base_url.



617
618
619
# File 'lib/akeyless/models/ds_producer_details.rb', line 617

def venafi_base_url
  @venafi_base_url
end

#venafi_root_first_in_chainObject

Returns the value of attribute venafi_root_first_in_chain.



619
620
621
# File 'lib/akeyless/models/ds_producer_details.rb', line 619

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.



621
622
623
# File 'lib/akeyless/models/ds_producer_details.rb', line 621

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.



623
624
625
# File 'lib/akeyless/models/ds_producer_details.rb', line 623

def venafi_signer_key_name
  @venafi_signer_key_name
end

#venafi_store_private_keyObject

Returns the value of attribute venafi_store_private_key.



625
626
627
# File 'lib/akeyless/models/ds_producer_details.rb', line 625

def venafi_store_private_key
  @venafi_store_private_key
end

#venafi_tpp_access_tokenObject

Returns the value of attribute venafi_tpp_access_token.



627
628
629
# File 'lib/akeyless/models/ds_producer_details.rb', line 627

def venafi_tpp_access_token
  @venafi_tpp_access_token
end

#venafi_tpp_client_idObject

Returns the value of attribute venafi_tpp_client_id.



629
630
631
# File 'lib/akeyless/models/ds_producer_details.rb', line 629

def venafi_tpp_client_id
  @venafi_tpp_client_id
end

#venafi_tpp_passwordObject

Deprecated: VenafiAccessToken and VenafiRefreshToken should be used instead



632
633
634
# File 'lib/akeyless/models/ds_producer_details.rb', line 632

def venafi_tpp_password
  @venafi_tpp_password
end

#venafi_tpp_refresh_tokenObject

Returns the value of attribute venafi_tpp_refresh_token.



634
635
636
# File 'lib/akeyless/models/ds_producer_details.rb', line 634

def venafi_tpp_refresh_token
  @venafi_tpp_refresh_token
end

#venafi_tpp_usernameObject

Deprecated: VenafiAccessToken and VenafiRefreshToken should be used instead



637
638
639
# File 'lib/akeyless/models/ds_producer_details.rb', line 637

def venafi_tpp_username
  @venafi_tpp_username
end

#venafi_use_tppObject

Returns the value of attribute venafi_use_tpp.



639
640
641
# File 'lib/akeyless/models/ds_producer_details.rb', line 639

def venafi_use_tpp
  @venafi_use_tpp
end

#venafi_zoneObject

Returns the value of attribute venafi_zone.



641
642
643
# File 'lib/akeyless/models/ds_producer_details.rb', line 641

def venafi_zone
  @venafi_zone
end

#warn_before_user_expiration_minObject

Returns the value of attribute warn_before_user_expiration_min.



643
644
645
# File 'lib/akeyless/models/ds_producer_details.rb', line 643

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



2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
# File 'lib/akeyless/models/ds_producer_details.rb', line 2856

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



949
950
951
# File 'lib/akeyless/models/ds_producer_details.rb', line 949

def self.acceptable_attributes
  attribute_map.values
end

.attribute_mapObject

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



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
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
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
# File 'lib/akeyless/models/ds_producer_details.rb', line 646

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',
    :'aerospike_admin_username' => :'aerospike_admin_username',
    :'aerospike_client_certificate' => :'aerospike_client_certificate',
    :'aerospike_client_id' => :'aerospike_client_id',
    :'aerospike_client_private_key' => :'aerospike_client_private_key',
    :'aerospike_client_secret' => :'aerospike_client_secret',
    :'aerospike_cloud' => :'aerospike_cloud',
    :'aerospike_cluster_id' => :'aerospike_cluster_id',
    :'aerospike_db_server_name' => :'aerospike_db_server_name',
    :'aerospike_enable_mtls' => :'aerospike_enable_mtls',
    :'aerospike_hostname' => :'aerospike_hostname',
    :'aerospike_namespace' => :'aerospike_namespace',
    :'aerospike_password' => :'aerospike_password',
    :'aerospike_port' => :'aerospike_port',
    :'aerospike_roles' => :'aerospike_roles',
    :'aerospike_skip_server_name_validation' => :'aerospike_skip_server_name_validation',
    :'aerospike_ssl_connection_certificate' => :'aerospike_ssl_connection_certificate',
    :'aerospike_ssl_connection_mode' => :'aerospike_ssl_connection_mode',
    :'agentic_rules' => :'agentic_rules',
    :'api_key' => :'api_key',
    :'api_key_id' => :'api_key_id',
    :'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',
    :'auth_mode' => :'auth_mode',
    :'authorization_port' => :'authorization_port',
    :'aws_access_key_id' => :'aws_access_key_id',
    :'aws_access_mode' => :'aws_access_mode',
    :'aws_external_id' => :'aws_external_id',
    :'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_name' => :'aws_user_name',
    :'aws_user_policies' => :'aws_user_policies',
    :'aws_user_programmatic_access' => :'aws_user_programmatic_access',
    :'azure_administrative_unit' => :'azure_administrative_unit',
    :'azure_app_object_id' => :'azure_app_object_id',
    :'azure_client_id' => :'azure_client_id',
    :'azure_client_secret' => :'azure_client_secret',
    :'azure_cloud' => :'azure_cloud',
    :'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',
    :'client_certificate' => :'client_certificate',
    :'client_key_passphrase' => :'client_key_passphrase',
    :'client_private_key' => :'client_private_key',
    :'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',
    :'enable_mtls' => :'enable_mtls',
    :'enforce_replay_prevention' => :'enforce_replay_prevention',
    :'expiration_date' => :'expiration_date',
    :'externally_provided_user' => :'externally_provided_user',
    :'failure_message' => :'failure_message',
    :'fixed_user_only' => :'fixed_user_only',
    :'gcp_access_type' => :'gcp_access_type',
    :'gcp_fixed_user_claim_keyname' => :'gcp_fixed_user_claim_keyname',
    :'gcp_key_algo' => :'gcp_key_algo',
    :'gcp_project_id' => :'gcp_project_id',
    :'gcp_role_bindings' => :'gcp_role_bindings',
    :'gcp_role_names' => :'gcp_role_names',
    :'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_fixed_user_name_sub_claim_key' => :'google_workspace_fixed_user_name_sub_claim_key',
    :'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',
    :'grace_rotated_secret_key' => :'grace_rotated_secret_key',
    :'grant_types' => :'grant_types',
    :'groups' => :'groups',
    :'gw_cloud_identity_external_id_opt' => :'gw_cloud_identity_external_id_opt',
    :'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_custom_fields_details' => :'item_custom_fields_details',
    :'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_fixed_user_name_sub_claim_key' => :'ldap_fixed_user_name_sub_claim_key',
    :'ldap_fixed_user_type' => :'ldap_fixed_user_type',
    :'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_scopes' => :'mongodb_scopes',
    :'mongodb_uri_connection' => :'mongodb_uri_connection',
    :'mongodb_uri_options' => :'mongodb_uri_options',
    :'mongodb_username' => :'mongodb_username',
    :'mssql_allowed_db_names' => :'mssql_allowed_db_names',
    :'mssql_creation_statements' => :'mssql_creation_statements',
    :'mssql_revocation_statements' => :'mssql_revocation_statements',
    :'mysql_creation_statements' => :'mysql_creation_statements',
    :'mysql_revocation_statements' => :'mysql_revocation_statements',
    :'oauth_access_token' => :'oauth_access_token',
    :'oauth_account_id' => :'oauth_account_id',
    :'oauth_last_refresh' => :'oauth_last_refresh',
    :'oauth_refresh_token' => :'oauth_refresh_token',
    :'openai_url' => :'openai_url',
    :'oracle_creation_statements' => :'oracle_creation_statements',
    :'oracle_revocation_statements' => :'oracle_revocation_statements',
    :'oracle_wallet_details' => :'oracle_wallet_details',
    :'organization_id' => :'organization_id',
    :'password' => :'password',
    :'password_length' => :'password_length',
    :'password_policy' => :'password_policy',
    :'password_policy_info' => :'password_policy_info',
    :'payload' => :'payload',
    :'ping_url' => :'ping_url',
    :'postgres_creation_statements' => :'postgres_creation_statements',
    :'postgres_revocation_statements' => :'postgres_revocation_statements',
    :'preserve_existing_password_settings' => :'preserve_existing_password_settings',
    :'privileged_user' => :'privileged_user',
    :'project_id' => :'project_id',
    :'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',
    :'rdp_fixed_user_name_sub_claim_key' => :'rdp_fixed_user_name_sub_claim_key',
    :'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_auth_mode' => :'sf_auth_mode',
    :'sf_key_algo' => :'sf_key_algo',
    :'sf_user_role' => :'sf_user_role',
    :'sf_warehouse_name' => :'sf_warehouse_name',
    :'should_stop' => :'should_stop',
    :'signing_algorithm' => :'signing_algorithm',
    :'skip_dry_run' => :'skip_dry_run',
    :'skip_server_name_validation' => :'skip_server_name_validation',
    :'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',
    :'username_template' => :'username_template',
    :'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



2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
# File 'lib/akeyless/models/ds_producer_details.rb', line 2832

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



1257
1258
1259
1260
# File 'lib/akeyless/models/ds_producer_details.rb', line 1257

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

.openapi_typesObject

Attribute type mapping.



954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
# File 'lib/akeyless/models/ds_producer_details.rb', line 954

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',
    :'aerospike_admin_username' => :'String',
    :'aerospike_client_certificate' => :'String',
    :'aerospike_client_id' => :'String',
    :'aerospike_client_private_key' => :'String',
    :'aerospike_client_secret' => :'String',
    :'aerospike_cloud' => :'Boolean',
    :'aerospike_cluster_id' => :'String',
    :'aerospike_db_server_name' => :'String',
    :'aerospike_enable_mtls' => :'Boolean',
    :'aerospike_hostname' => :'String',
    :'aerospike_namespace' => :'String',
    :'aerospike_password' => :'String',
    :'aerospike_port' => :'String',
    :'aerospike_roles' => :'Array<String>',
    :'aerospike_skip_server_name_validation' => :'String',
    :'aerospike_ssl_connection_certificate' => :'String',
    :'aerospike_ssl_connection_mode' => :'Boolean',
    :'agentic_rules' => :'AgenticRules',
    :'api_key' => :'String',
    :'api_key_id' => :'String',
    :'artifactory_admin_apikey' => :'String',
    :'artifactory_admin_username' => :'String',
    :'artifactory_base_url' => :'String',
    :'artifactory_token_audience' => :'String',
    :'artifactory_token_scope' => :'String',
    :'auth_mode' => :'String',
    :'authorization_port' => :'String',
    :'aws_access_key_id' => :'String',
    :'aws_access_mode' => :'String',
    :'aws_external_id' => :'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_name' => :'String',
    :'aws_user_policies' => :'String',
    :'aws_user_programmatic_access' => :'Boolean',
    :'azure_administrative_unit' => :'String',
    :'azure_app_object_id' => :'String',
    :'azure_client_id' => :'String',
    :'azure_client_secret' => :'String',
    :'azure_cloud' => :'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',
    :'client_certificate' => :'String',
    :'client_key_passphrase' => :'String',
    :'client_private_key' => :'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',
    :'enable_mtls' => :'Boolean',
    :'enforce_replay_prevention' => :'Boolean',
    :'expiration_date' => :'Time',
    :'externally_provided_user' => :'String',
    :'failure_message' => :'String',
    :'fixed_user_only' => :'String',
    :'gcp_access_type' => :'String',
    :'gcp_fixed_user_claim_keyname' => :'String',
    :'gcp_key_algo' => :'String',
    :'gcp_project_id' => :'String',
    :'gcp_role_bindings' => :'Hash<String, Array<String>>',
    :'gcp_role_names' => :'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_fixed_user_name_sub_claim_key' => :'String',
    :'google_workspace_group_name' => :'String',
    :'google_workspace_group_role' => :'String',
    :'google_workspace_role_name' => :'String',
    :'google_workspace_role_scope' => :'String',
    :'grace_rotated_secret_key' => :'String',
    :'grant_types' => :'Array<String>',
    :'groups' => :'String',
    :'gw_cloud_identity_external_id_opt' => :'AWSGatewayCloudIdentityExternalIdOpt',
    :'hanadb_creation_statements' => :'String',
    :'hanadb_revocation_statements' => :'String',
    :'host_name' => :'String',
    :'host_port' => :'String',
    :'implementation_type' => :'String',
    :'is_fixed_user' => :'String',
    :'issuer' => :'String',
    :'item_custom_fields_details' => :'Array<ItemCustomFieldsDetails>',
    :'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_fixed_user_name_sub_claim_key' => :'String',
    :'ldap_fixed_user_type' => :'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_scopes' => :'String',
    :'mongodb_uri_connection' => :'String',
    :'mongodb_uri_options' => :'String',
    :'mongodb_username' => :'String',
    :'mssql_allowed_db_names' => :'String',
    :'mssql_creation_statements' => :'String',
    :'mssql_revocation_statements' => :'String',
    :'mysql_creation_statements' => :'String',
    :'mysql_revocation_statements' => :'String',
    :'oauth_access_token' => :'String',
    :'oauth_account_id' => :'String',
    :'oauth_last_refresh' => :'String',
    :'oauth_refresh_token' => :'String',
    :'openai_url' => :'String',
    :'oracle_creation_statements' => :'String',
    :'oracle_revocation_statements' => :'String',
    :'oracle_wallet_details' => :'WalletDetails',
    :'organization_id' => :'String',
    :'password' => :'String',
    :'password_length' => :'Integer',
    :'password_policy' => :'String',
    :'password_policy_info' => :'PasswordPolicyInfo',
    :'payload' => :'String',
    :'ping_url' => :'String',
    :'postgres_creation_statements' => :'String',
    :'postgres_revocation_statements' => :'String',
    :'preserve_existing_password_settings' => :'Boolean',
    :'privileged_user' => :'String',
    :'project_id' => :'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',
    :'rdp_fixed_user_name_sub_claim_key' => :'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_auth_mode' => :'String',
    :'sf_key_algo' => :'String',
    :'sf_user_role' => :'String',
    :'sf_warehouse_name' => :'String',
    :'should_stop' => :'String',
    :'signing_algorithm' => :'String',
    :'skip_dry_run' => :'Boolean',
    :'skip_server_name_validation' => :'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',
    :'username_template' => :'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



2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
# File 'lib/akeyless/models/ds_producer_details.rb', line 2515

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 &&
      aerospike_admin_username == o.aerospike_admin_username &&
      aerospike_client_certificate == o.aerospike_client_certificate &&
      aerospike_client_id == o.aerospike_client_id &&
      aerospike_client_private_key == o.aerospike_client_private_key &&
      aerospike_client_secret == o.aerospike_client_secret &&
      aerospike_cloud == o.aerospike_cloud &&
      aerospike_cluster_id == o.aerospike_cluster_id &&
      aerospike_db_server_name == o.aerospike_db_server_name &&
      aerospike_enable_mtls == o.aerospike_enable_mtls &&
      aerospike_hostname == o.aerospike_hostname &&
      aerospike_namespace == o.aerospike_namespace &&
      aerospike_password == o.aerospike_password &&
      aerospike_port == o.aerospike_port &&
      aerospike_roles == o.aerospike_roles &&
      aerospike_skip_server_name_validation == o.aerospike_skip_server_name_validation &&
      aerospike_ssl_connection_certificate == o.aerospike_ssl_connection_certificate &&
      aerospike_ssl_connection_mode == o.aerospike_ssl_connection_mode &&
      agentic_rules == o.agentic_rules &&
      api_key == o.api_key &&
      api_key_id == o.api_key_id &&
      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 &&
      auth_mode == o.auth_mode &&
      authorization_port == o.authorization_port &&
      aws_access_key_id == o.aws_access_key_id &&
      aws_access_mode == o.aws_access_mode &&
      aws_external_id == o.aws_external_id &&
      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_name == o.aws_user_name &&
      aws_user_policies == o.aws_user_policies &&
      aws_user_programmatic_access == o.aws_user_programmatic_access &&
      azure_administrative_unit == o.azure_administrative_unit &&
      azure_app_object_id == o.azure_app_object_id &&
      azure_client_id == o.azure_client_id &&
      azure_client_secret == o.azure_client_secret &&
      azure_cloud == o.azure_cloud &&
      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 &&
      client_certificate == o.client_certificate &&
      client_key_passphrase == o.client_key_passphrase &&
      client_private_key == o.client_private_key &&
      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 &&
      enable_mtls == o.enable_mtls &&
      enforce_replay_prevention == o.enforce_replay_prevention &&
      expiration_date == o.expiration_date &&
      externally_provided_user == o.externally_provided_user &&
      failure_message == o.failure_message &&
      fixed_user_only == o.fixed_user_only &&
      gcp_access_type == o.gcp_access_type &&
      gcp_fixed_user_claim_keyname == o.gcp_fixed_user_claim_keyname &&
      gcp_key_algo == o.gcp_key_algo &&
      gcp_project_id == o.gcp_project_id &&
      gcp_role_bindings == o.gcp_role_bindings &&
      gcp_role_names == o.gcp_role_names &&
       == 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_fixed_user_name_sub_claim_key == o.google_workspace_fixed_user_name_sub_claim_key &&
      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 &&
      grace_rotated_secret_key == o.grace_rotated_secret_key &&
      grant_types == o.grant_types &&
      groups == o.groups &&
      gw_cloud_identity_external_id_opt == o.gw_cloud_identity_external_id_opt &&
      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_custom_fields_details == o.item_custom_fields_details &&
      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_fixed_user_name_sub_claim_key == o.ldap_fixed_user_name_sub_claim_key &&
      ldap_fixed_user_type == o.ldap_fixed_user_type &&
      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_scopes == o.mongodb_scopes &&
      mongodb_uri_connection == o.mongodb_uri_connection &&
      mongodb_uri_options == o.mongodb_uri_options &&
      mongodb_username == o.mongodb_username &&
      mssql_allowed_db_names == o.mssql_allowed_db_names &&
      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 &&
      oauth_access_token == o.oauth_access_token &&
       == o. &&
      oauth_last_refresh == o.oauth_last_refresh &&
      oauth_refresh_token == o.oauth_refresh_token &&
      openai_url == o.openai_url &&
      oracle_creation_statements == o.oracle_creation_statements &&
      oracle_revocation_statements == o.oracle_revocation_statements &&
      oracle_wallet_details == o.oracle_wallet_details &&
      organization_id == o.organization_id &&
      password == o.password &&
      password_length == o.password_length &&
      password_policy == o.password_policy &&
      password_policy_info == o.password_policy_info &&
      payload == o.payload &&
      ping_url == o.ping_url &&
      postgres_creation_statements == o.postgres_creation_statements &&
      postgres_revocation_statements == o.postgres_revocation_statements &&
      preserve_existing_password_settings == o.preserve_existing_password_settings &&
      privileged_user == o.privileged_user &&
      project_id == o.project_id &&
      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 &&
      rdp_fixed_user_name_sub_claim_key == o.rdp_fixed_user_name_sub_claim_key &&
      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_auth_mode == o.sf_auth_mode &&
      sf_key_algo == o.sf_key_algo &&
      sf_user_role == o.sf_user_role &&
      sf_warehouse_name == o.sf_warehouse_name &&
      should_stop == o.should_stop &&
      signing_algorithm == o.signing_algorithm &&
      skip_dry_run == o.skip_dry_run &&
      skip_server_name_validation == o.skip_server_name_validation &&
      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 &&
      username_template == o.username_template &&
      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



2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
# File 'lib/akeyless/models/ds_producer_details.rb', line 2927

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


2819
2820
2821
# File 'lib/akeyless/models/ds_producer_details.rb', line 2819

def eql?(o)
  self == o
end

#hashInteger

Calculates hash code according to all attributes.

Returns:

  • (Integer)

    Hash code



2825
2826
2827
# File 'lib/akeyless/models/ds_producer_details.rb', line 2825

def hash
  [access_token_manager_id, acl_rules, active, admin_name, admin_pwd, admin_rotation_interval_days, administrative_port, aerospike_admin_username, aerospike_client_certificate, aerospike_client_id, aerospike_client_private_key, aerospike_client_secret, aerospike_cloud, aerospike_cluster_id, aerospike_db_server_name, aerospike_enable_mtls, aerospike_hostname, aerospike_namespace, aerospike_password, aerospike_port, aerospike_roles, aerospike_skip_server_name_validation, aerospike_ssl_connection_certificate, aerospike_ssl_connection_mode, agentic_rules, api_key, api_key_id, artifactory_admin_apikey, artifactory_admin_username, artifactory_base_url, artifactory_token_audience, artifactory_token_scope, auth_mode, authorization_port, aws_access_key_id, aws_access_mode, aws_external_id, 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_name, aws_user_policies, aws_user_programmatic_access, azure_administrative_unit, azure_app_object_id, azure_client_id, azure_client_secret, azure_cloud, 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, client_certificate, client_key_passphrase, client_private_key, 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, enable_mtls, enforce_replay_prevention, expiration_date, externally_provided_user, failure_message, fixed_user_only, gcp_access_type, gcp_fixed_user_claim_keyname, gcp_key_algo, gcp_project_id, gcp_role_bindings, gcp_role_names, , , , , , , 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_fixed_user_name_sub_claim_key, google_workspace_group_name, google_workspace_group_role, google_workspace_role_name, google_workspace_role_scope, grace_rotated_secret_key, grant_types, groups, gw_cloud_identity_external_id_opt, hanadb_creation_statements, hanadb_revocation_statements, host_name, host_port, implementation_type, is_fixed_user, issuer, item_custom_fields_details, 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_fixed_user_name_sub_claim_key, ldap_fixed_user_type, 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_scopes, mongodb_uri_connection, mongodb_uri_options, mongodb_username, mssql_allowed_db_names, mssql_creation_statements, mssql_revocation_statements, mysql_creation_statements, mysql_revocation_statements, oauth_access_token, , oauth_last_refresh, oauth_refresh_token, openai_url, oracle_creation_statements, oracle_revocation_statements, oracle_wallet_details, organization_id, password, password_length, password_policy, password_policy_info, payload, ping_url, postgres_creation_statements, postgres_revocation_statements, preserve_existing_password_settings, privileged_user, project_id, 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, rdp_fixed_user_name_sub_claim_key, redirect_uris, redshift_creation_statements, restricted_scopes, revoke_sync_url, rotate_sync_url, scopes, secure_remote_access_details, session_extension_warn_interval_min, , sf_auth_mode, sf_key_algo, sf_user_role, sf_warehouse_name, should_stop, signing_algorithm, skip_dry_run, skip_server_name_validation, 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, username_template, 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



2500
2501
2502
2503
2504
# File 'lib/akeyless/models/ds_producer_details.rb', line 2500

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



2903
2904
2905
# File 'lib/akeyless/models/ds_producer_details.rb', line 2903

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



2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
# File 'lib/akeyless/models/ds_producer_details.rb', line 2909

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



2897
2898
2899
# File 'lib/akeyless/models/ds_producer_details.rb', line 2897

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



2508
2509
2510
2511
# File 'lib/akeyless/models/ds_producer_details.rb', line 2508

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