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



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
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
# File 'lib/akeyless/models/ds_producer_details.rb', line 753

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Instance Attribute Details

#activeObject

Returns the value of attribute active.



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

def active
  @active
end

#admin_nameObject

Returns the value of attribute admin_name.



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

def admin_name
  @admin_name
end

#admin_pwdObject

Returns the value of attribute admin_pwd.



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

def admin_pwd
  @admin_pwd
end

#admin_rotation_interval_daysObject

Returns the value of attribute admin_rotation_interval_days.



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

def admin_rotation_interval_days
  @admin_rotation_interval_days
end

#artifactory_admin_apikeyObject

Returns the value of attribute artifactory_admin_apikey.



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

def artifactory_admin_apikey
  @artifactory_admin_apikey
end

#artifactory_admin_usernameObject

Returns the value of attribute artifactory_admin_username.



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

def artifactory_admin_username
  @artifactory_admin_username
end

#artifactory_base_urlObject

Returns the value of attribute artifactory_base_url.



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

def artifactory_base_url
  @artifactory_base_url
end

#artifactory_token_audienceObject

Returns the value of attribute artifactory_token_audience.



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

def artifactory_token_audience
  @artifactory_token_audience
end

#artifactory_token_scopeObject

Returns the value of attribute artifactory_token_scope.



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

def artifactory_token_scope
  @artifactory_token_scope
end

#aws_access_key_idObject

Returns the value of attribute aws_access_key_id.



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

def aws_access_key_id
  @aws_access_key_id
end

#aws_access_modeObject

Returns the value of attribute aws_access_mode.



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

def aws_access_mode
  @aws_access_mode
end

#aws_regionObject

Returns the value of attribute aws_region.



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

def aws_region
  @aws_region
end

#aws_role_arnsObject

Returns the value of attribute aws_role_arns.



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

def aws_role_arns
  @aws_role_arns
end

#aws_secret_access_keyObject

Returns the value of attribute aws_secret_access_key.



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

def aws_secret_access_key
  @aws_secret_access_key
end

#aws_session_tokenObject

Returns the value of attribute aws_session_token.



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

def aws_session_token
  @aws_session_token
end

#aws_user_console_accessObject

Returns the value of attribute aws_user_console_access.



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

def aws_user_console_access
  @aws_user_console_access
end

#aws_user_groupsObject

Returns the value of attribute aws_user_groups.



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

def aws_user_groups
  @aws_user_groups
end

#aws_user_policiesObject

Returns the value of attribute aws_user_policies.



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

def aws_user_policies
  @aws_user_policies
end

#aws_user_programmatic_accessObject

Returns the value of attribute aws_user_programmatic_access.



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

def aws_user_programmatic_access
  @aws_user_programmatic_access
end

#azure_app_object_idObject

Returns the value of attribute azure_app_object_id.



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

def azure_app_object_id
  @azure_app_object_id
end

#azure_client_idObject

Returns the value of attribute azure_client_id.



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

def azure_client_id
  @azure_client_id
end

#azure_client_secretObject

Returns the value of attribute azure_client_secret.



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

def azure_client_secret
  @azure_client_secret
end

#azure_fixed_user_name_sub_claim_keyObject

Returns the value of attribute azure_fixed_user_name_sub_claim_key.



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

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.



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

def azure_fixed_user_only
  @azure_fixed_user_only
end

#azure_resource_group_nameObject

Returns the value of attribute azure_resource_group_name.



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

def azure_resource_group_name
  @azure_resource_group_name
end

#azure_resource_nameObject

Returns the value of attribute azure_resource_name.



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

def azure_resource_name
  @azure_resource_name
end

#azure_subscription_idObject

Returns the value of attribute azure_subscription_id.



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

def azure_subscription_id
  @azure_subscription_id
end

#azure_tenant_idObject

Returns the value of attribute azure_tenant_id.



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

def azure_tenant_id
  @azure_tenant_id
end

#azure_user_groups_obj_idObject

Returns the value of attribute azure_user_groups_obj_id.



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

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.



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

def azure_user_portal_access
  @azure_user_portal_access
end

#azure_user_programmatic_accessObject

Returns the value of attribute azure_user_programmatic_access.



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

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.



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

def azure_user_roles_template_id
  @azure_user_roles_template_id
end

#cassandra_creation_statementsObject

Returns the value of attribute cassandra_creation_statements.



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

def cassandra_creation_statements
  @cassandra_creation_statements
end

#chef_organizationsObject

Returns the value of attribute chef_organizations.



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

def chef_organizations
  @chef_organizations
end

#chef_server_access_modeObject

Returns the value of attribute chef_server_access_mode.



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

def chef_server_access_mode
  @chef_server_access_mode
end

#chef_server_host_nameObject

Returns the value of attribute chef_server_host_name.



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

def chef_server_host_name
  @chef_server_host_name
end

#chef_server_keyObject

Returns the value of attribute chef_server_key.



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

def chef_server_key
  @chef_server_key
end

#chef_server_portObject

Returns the value of attribute chef_server_port.



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

def chef_server_port
  @chef_server_port
end

#chef_server_urlObject

Returns the value of attribute chef_server_url.



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

def chef_server_url
  @chef_server_url
end

#chef_server_usernameObject

Returns the value of attribute chef_server_username.



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

def chef_server_username
  @chef_server_username
end

#chef_skip_sslObject

Returns the value of attribute chef_skip_ssl.



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

def chef_skip_ssl
  @chef_skip_ssl
end

#create_sync_urlObject

Returns the value of attribute create_sync_url.



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

def create_sync_url
  @create_sync_url
end

#db_host_nameObject

Returns the value of attribute db_host_name.



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

def db_host_name
  @db_host_name
end

#db_isolation_levelObject

Returns the value of attribute db_isolation_level.



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

def db_isolation_level
  @db_isolation_level
end

#db_max_idle_connsObject

Returns the value of attribute db_max_idle_conns.



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

def db_max_idle_conns
  @db_max_idle_conns
end

#db_max_open_connsObject

Returns the value of attribute db_max_open_conns.



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

def db_max_open_conns
  @db_max_open_conns
end

#db_nameObject

Returns the value of attribute db_name.



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

def db_name
  @db_name
end

#db_portObject

Returns the value of attribute db_port.



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

def db_port
  @db_port
end

#db_pwdObject

Returns the value of attribute db_pwd.



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

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.



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

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.



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

def db_server_name
  @db_server_name
end

#db_user_nameObject

Returns the value of attribute db_user_name.



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

def db_user_name
  @db_user_name
end

#delete_protectionObject

Returns the value of attribute delete_protection.



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

def delete_protection
  @delete_protection
end

#dynamic_secret_idObject

Returns the value of attribute dynamic_secret_id.



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

def dynamic_secret_id
  @dynamic_secret_id
end

#dynamic_secret_keyObject

Returns the value of attribute dynamic_secret_key.



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

def dynamic_secret_key
  @dynamic_secret_key
end

#dynamic_secret_nameObject

Returns the value of attribute dynamic_secret_name.



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

def dynamic_secret_name
  @dynamic_secret_name
end

#dynamic_secret_typeObject

Returns the value of attribute dynamic_secret_type.



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

def dynamic_secret_type
  @dynamic_secret_type
end

#eks_access_key_idObject

Returns the value of attribute eks_access_key_id.



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

def eks_access_key_id
  @eks_access_key_id
end

#eks_assume_roleObject

Returns the value of attribute eks_assume_role.



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

def eks_assume_role
  @eks_assume_role
end

#eks_cluster_ca_certificateObject

Returns the value of attribute eks_cluster_ca_certificate.



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

def eks_cluster_ca_certificate
  @eks_cluster_ca_certificate
end

#eks_cluster_endpointObject

Returns the value of attribute eks_cluster_endpoint.



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

def eks_cluster_endpoint
  @eks_cluster_endpoint
end

#eks_cluster_nameObject

Returns the value of attribute eks_cluster_name.



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

def eks_cluster_name
  @eks_cluster_name
end

#eks_regionObject

Returns the value of attribute eks_region.



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

def eks_region
  @eks_region
end

#eks_secret_access_keyObject

Returns the value of attribute eks_secret_access_key.



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

def eks_secret_access_key
  @eks_secret_access_key
end

#enable_admin_rotationObject

Returns the value of attribute enable_admin_rotation.



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

def enable_admin_rotation
  @enable_admin_rotation
end

#externally_provided_userObject

Returns the value of attribute externally_provided_user.



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

def externally_provided_user
  @externally_provided_user
end

#failure_messageObject

Returns the value of attribute failure_message.



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

def failure_message
  @failure_message
end

#fixed_user_onlyObject

Returns the value of attribute fixed_user_only.



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

def fixed_user_only
  @fixed_user_only
end

#gcp_key_algoObject

Returns the value of attribute gcp_key_algo.



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

def gcp_key_algo
  @gcp_key_algo
end

#gcp_service_account_emailObject

Returns the value of attribute gcp_service_account_email.



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

def 
  @gcp_service_account_email
end

#gcp_service_account_keyObject

Returns the value of attribute gcp_service_account_key.



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

def 
  @gcp_service_account_key
end

#gcp_token_lifetimeObject

Returns the value of attribute gcp_token_lifetime.



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

def gcp_token_lifetime
  @gcp_token_lifetime
end

#gcp_token_scopeObject

Returns the value of attribute gcp_token_scope.



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

def gcp_token_scope
  @gcp_token_scope
end

#gcp_token_typeObject

Returns the value of attribute gcp_token_type.



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

def gcp_token_type
  @gcp_token_type
end

#github_app_idObject

Returns the value of attribute github_app_id.



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

def github_app_id
  @github_app_id
end

#github_app_private_keyObject

Returns the value of attribute github_app_private_key.



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

def github_app_private_key
  @github_app_private_key
end

#github_base_urlObject

Returns the value of attribute github_base_url.



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

def github_base_url
  @github_base_url
end

#github_installation_idObject

Returns the value of attribute github_installation_id.



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

def github_installation_id
  @github_installation_id
end

#github_installation_token_permissionsObject

Returns the value of attribute github_installation_token_permissions.



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

def github_installation_token_permissions
  @github_installation_token_permissions
end

#github_installation_token_repositoriesObject

Returns the value of attribute github_installation_token_repositories.



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

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.



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

def github_installation_token_repositories_ids
  @github_installation_token_repositories_ids
end

#github_repository_pathObject

Returns the value of attribute github_repository_path.



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

def github_repository_path
  @github_repository_path
end

#gke_cluster_ca_certificateObject

Returns the value of attribute gke_cluster_ca_certificate.



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

def gke_cluster_ca_certificate
  @gke_cluster_ca_certificate
end

#gke_cluster_endpointObject

Returns the value of attribute gke_cluster_endpoint.



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

def gke_cluster_endpoint
  @gke_cluster_endpoint
end

#gke_cluster_nameObject

Returns the value of attribute gke_cluster_name.



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

def gke_cluster_name
  @gke_cluster_name
end

#gke_service_account_keyObject

Returns the value of attribute gke_service_account_key.



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

def 
  @gke_service_account_key
end

#gke_service_account_nameObject

Returns the value of attribute gke_service_account_name.



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

def 
  @gke_service_account_name
end

#groupsObject

Returns the value of attribute groups.



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

def groups
  @groups
end

#hanadb_creation_statementsObject

Returns the value of attribute hanadb_creation_statements.



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

def hanadb_creation_statements
  @hanadb_creation_statements
end

#hanadb_revocation_statementsObject

Returns the value of attribute hanadb_revocation_statements.



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

def hanadb_revocation_statements
  @hanadb_revocation_statements
end

#host_nameObject

Returns the value of attribute host_name.



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

def host_name
  @host_name
end

#host_portObject

Returns the value of attribute host_port.



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

def host_port
  @host_port
end

#implementation_typeObject

Returns the value of attribute implementation_type.



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

def implementation_type
  @implementation_type
end

#is_fixed_userObject

Returns the value of attribute is_fixed_user.



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

def is_fixed_user
  @is_fixed_user
end

#item_targets_assocObject

Returns the value of attribute item_targets_assoc.



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

def item_targets_assoc
  @item_targets_assoc
end

#k8s_bearer_tokenObject

Returns the value of attribute k8s_bearer_token.



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

def k8s_bearer_token
  @k8s_bearer_token
end

#k8s_cluster_ca_certificateObject

Returns the value of attribute k8s_cluster_ca_certificate.



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

def k8s_cluster_ca_certificate
  @k8s_cluster_ca_certificate
end

#k8s_cluster_endpointObject

Returns the value of attribute k8s_cluster_endpoint.



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

def k8s_cluster_endpoint
  @k8s_cluster_endpoint
end

#k8s_namespaceObject

Returns the value of attribute k8s_namespace.



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

def k8s_namespace
  @k8s_namespace
end

#k8s_service_accountObject

Returns the value of attribute k8s_service_account.



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

def 
  @k8s_service_account
end

#last_admin_rotationObject

Returns the value of attribute last_admin_rotation.



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

def last_admin_rotation
  @last_admin_rotation
end

#ldap_audienceObject

Returns the value of attribute ldap_audience.



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

def ldap_audience
  @ldap_audience
end

#ldap_bind_dnObject

Returns the value of attribute ldap_bind_dn.



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

def ldap_bind_dn
  @ldap_bind_dn
end

#ldap_bind_passwordObject

Returns the value of attribute ldap_bind_password.



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

def ldap_bind_password
  @ldap_bind_password
end

#ldap_certificateObject

Returns the value of attribute ldap_certificate.



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

def ldap_certificate
  @ldap_certificate
end

#ldap_token_expirationObject

Returns the value of attribute ldap_token_expiration.



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

def ldap_token_expiration
  @ldap_token_expiration
end

#ldap_urlObject

Returns the value of attribute ldap_url.



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

def ldap_url
  @ldap_url
end

#ldap_user_attrObject

Returns the value of attribute ldap_user_attr.



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

def ldap_user_attr
  @ldap_user_attr
end

#ldap_user_dnObject

Returns the value of attribute ldap_user_dn.



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

def ldap_user_dn
  @ldap_user_dn
end

#metadataObject

Returns the value of attribute metadata.



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

def 
  @metadata
end

#mongodb_atlas_api_private_keyObject

Returns the value of attribute mongodb_atlas_api_private_key.



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

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.



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

def mongodb_atlas_api_public_key
  @mongodb_atlas_api_public_key
end

#mongodb_atlas_project_idObject

mongodb atlas fields



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

def mongodb_atlas_project_id
  @mongodb_atlas_project_id
end

#mongodb_custom_dataObject

Returns the value of attribute mongodb_custom_data.



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

def mongodb_custom_data
  @mongodb_custom_data
end

#mongodb_db_nameObject

common fields



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

def mongodb_db_name
  @mongodb_db_name
end

#mongodb_default_auth_dbObject

Returns the value of attribute mongodb_default_auth_db.



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

def mongodb_default_auth_db
  @mongodb_default_auth_db
end

#mongodb_host_portObject

Returns the value of attribute mongodb_host_port.



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

def mongodb_host_port
  @mongodb_host_port
end

#mongodb_is_atlasObject

Returns the value of attribute mongodb_is_atlas.



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

def mongodb_is_atlas
  @mongodb_is_atlas
end

#mongodb_passwordObject

Returns the value of attribute mongodb_password.



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

def mongodb_password
  @mongodb_password
end

#mongodb_rolesObject

common fields



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

def mongodb_roles
  @mongodb_roles
end

#mongodb_uri_connectionObject

mongodb fields



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

def mongodb_uri_connection
  @mongodb_uri_connection
end

#mongodb_uri_optionsObject

Returns the value of attribute mongodb_uri_options.



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

def mongodb_uri_options
  @mongodb_uri_options
end

#mongodb_usernameObject

Returns the value of attribute mongodb_username.



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

def mongodb_username
  @mongodb_username
end

#mssql_creation_statementsObject

Returns the value of attribute mssql_creation_statements.



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

def mssql_creation_statements
  @mssql_creation_statements
end

#mssql_revocation_statementsObject

Returns the value of attribute mssql_revocation_statements.



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

def mssql_revocation_statements
  @mssql_revocation_statements
end

#mysql_creation_statementsObject

Returns the value of attribute mysql_creation_statements.



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

def mysql_creation_statements
  @mysql_creation_statements
end

#oracle_creation_statementsObject

Returns the value of attribute oracle_creation_statements.



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

def oracle_creation_statements
  @oracle_creation_statements
end

#passwordObject

Returns the value of attribute password.



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

def password
  @password
end

#password_lengthObject

Returns the value of attribute password_length.



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

def password_length
  @password_length
end

#password_policyObject

Returns the value of attribute password_policy.



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

def password_policy
  @password_policy
end

#payloadObject

Returns the value of attribute payload.



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

def payload
  @payload
end

#postgres_creation_statementsObject

Returns the value of attribute postgres_creation_statements.



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

def postgres_creation_statements
  @postgres_creation_statements
end

#postgres_revocation_statementsObject

Returns the value of attribute postgres_revocation_statements.



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

def postgres_revocation_statements
  @postgres_revocation_statements
end

#rabbitmq_server_passwordObject

Returns the value of attribute rabbitmq_server_password.



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

def rabbitmq_server_password
  @rabbitmq_server_password
end

#rabbitmq_server_uriObject

Returns the value of attribute rabbitmq_server_uri.



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

def rabbitmq_server_uri
  @rabbitmq_server_uri
end

#rabbitmq_server_userObject

Returns the value of attribute rabbitmq_server_user.



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

def rabbitmq_server_user
  @rabbitmq_server_user
end

#rabbitmq_user_conf_permissionObject

Returns the value of attribute rabbitmq_user_conf_permission.



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

def rabbitmq_user_conf_permission
  @rabbitmq_user_conf_permission
end

#rabbitmq_user_read_permissionObject

Returns the value of attribute rabbitmq_user_read_permission.



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

def rabbitmq_user_read_permission
  @rabbitmq_user_read_permission
end

#rabbitmq_user_tagsObject

Returns the value of attribute rabbitmq_user_tags.



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

def rabbitmq_user_tags
  @rabbitmq_user_tags
end

#rabbitmq_user_vhostObject

Returns the value of attribute rabbitmq_user_vhost.



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

def rabbitmq_user_vhost
  @rabbitmq_user_vhost
end

#rabbitmq_user_write_permissionObject

Returns the value of attribute rabbitmq_user_write_permission.



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

def rabbitmq_user_write_permission
  @rabbitmq_user_write_permission
end

#redshift_creation_statementsObject

Returns the value of attribute redshift_creation_statements.



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

def redshift_creation_statements
  @redshift_creation_statements
end

#revoke_sync_urlObject

Returns the value of attribute revoke_sync_url.



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

def revoke_sync_url
  @revoke_sync_url
end

#rotate_sync_urlObject

Returns the value of attribute rotate_sync_url.



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

def rotate_sync_url
  @rotate_sync_url
end

#scopesObject

Returns the value of attribute scopes.



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

def scopes
  @scopes
end

#secure_remote_access_detailsObject

Returns the value of attribute secure_remote_access_details.



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

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.



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

def session_extension_warn_interval_min
  @session_extension_warn_interval_min
end

#sf_accountObject

Returns the value of attribute sf_account.



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

def 
  @sf_account
end

#sf_user_roleObject

generated users info



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

def sf_user_role
  @sf_user_role
end

#sf_warehouse_nameObject

Returns the value of attribute sf_warehouse_name.



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

def sf_warehouse_name
  @sf_warehouse_name
end

#should_stopObject

TODO delete this after migration



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

def should_stop
  @should_stop
end

#ssl_connection_certificateObject

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



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

def ssl_connection_certificate
  @ssl_connection_certificate
end

#ssl_connection_modeObject

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



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

def ssl_connection_mode
  @ssl_connection_mode
end

#tagsObject

Returns the value of attribute tags.



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

def tags
  @tags
end

#timeout_secondsObject

Returns the value of attribute timeout_seconds.



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

def timeout_seconds
  @timeout_seconds
end

#use_gw_cloud_identityObject

Returns the value of attribute use_gw_cloud_identity.



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

def use_gw_cloud_identity
  @use_gw_cloud_identity
end

#user_nameObject

Returns the value of attribute user_name.



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

def user_name
  @user_name
end

#user_principal_nameObject

Returns the value of attribute user_principal_name.



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

def user_principal_name
  @user_principal_name
end

#user_ttlObject

Returns the value of attribute user_ttl.



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

def user_ttl
  @user_ttl
end

#username_lengthObject

Returns the value of attribute username_length.



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

def username_length
  @username_length
end

#username_policyObject

Returns the value of attribute username_policy.



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

def username_policy
  @username_policy
end

#venafi_allow_subdomainsObject

Returns the value of attribute venafi_allow_subdomains.



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

def venafi_allow_subdomains
  @venafi_allow_subdomains
end

#venafi_allowed_domainsObject

Returns the value of attribute venafi_allowed_domains.



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

def venafi_allowed_domains
  @venafi_allowed_domains
end

#venafi_api_keyObject

Returns the value of attribute venafi_api_key.



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

def venafi_api_key
  @venafi_api_key
end

#venafi_auto_generated_folderObject

Returns the value of attribute venafi_auto_generated_folder.



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

def venafi_auto_generated_folder
  @venafi_auto_generated_folder
end

#venafi_base_urlObject

Returns the value of attribute venafi_base_url.



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

def venafi_base_url
  @venafi_base_url
end

#venafi_root_first_in_chainObject

Returns the value of attribute venafi_root_first_in_chain.



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

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.



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

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.



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

def venafi_signer_key_name
  @venafi_signer_key_name
end

#venafi_store_private_keyObject

Returns the value of attribute venafi_store_private_key.



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

def venafi_store_private_key
  @venafi_store_private_key
end

#venafi_tpp_passwordObject

Returns the value of attribute venafi_tpp_password.



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

def venafi_tpp_password
  @venafi_tpp_password
end

#venafi_tpp_usernameObject

Returns the value of attribute venafi_tpp_username.



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

def venafi_tpp_username
  @venafi_tpp_username
end

#venafi_use_tppObject

Returns the value of attribute venafi_use_tpp.



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

def venafi_use_tpp
  @venafi_use_tpp
end

#venafi_zoneObject

Returns the value of attribute venafi_zone.



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

def venafi_zone
  @venafi_zone
end

#warn_before_user_expiration_minObject

Returns the value of attribute warn_before_user_expiration_min.



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

def warn_before_user_expiration_min
  @warn_before_user_expiration_min
end

Class Method Details

.acceptable_attributesObject

Returns all the JSON keys this model knows about



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

def self.acceptable_attributes
  attribute_map.values
end

.attribute_mapObject

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



379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
# File 'lib/akeyless/models/ds_producer_details.rb', line 379

def self.attribute_map
  {
    :'active' => :'active',
    :'admin_name' => :'admin_name',
    :'admin_pwd' => :'admin_pwd',
    :'admin_rotation_interval_days' => :'admin_rotation_interval_days',
    :'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',
    :'aws_access_key_id' => :'aws_access_key_id',
    :'aws_access_mode' => :'aws_access_mode',
    :'aws_region' => :'aws_region',
    :'aws_role_arns' => :'aws_role_arns',
    :'aws_secret_access_key' => :'aws_secret_access_key',
    :'aws_session_token' => :'aws_session_token',
    :'aws_user_console_access' => :'aws_user_console_access',
    :'aws_user_groups' => :'aws_user_groups',
    :'aws_user_policies' => :'aws_user_policies',
    :'aws_user_programmatic_access' => :'aws_user_programmatic_access',
    :'azure_app_object_id' => :'azure_app_object_id',
    :'azure_client_id' => :'azure_client_id',
    :'azure_client_secret' => :'azure_client_secret',
    :'azure_fixed_user_name_sub_claim_key' => :'azure_fixed_user_name_sub_claim_key',
    :'azure_fixed_user_only' => :'azure_fixed_user_only',
    :'azure_resource_group_name' => :'azure_resource_group_name',
    :'azure_resource_name' => :'azure_resource_name',
    :'azure_subscription_id' => :'azure_subscription_id',
    :'azure_tenant_id' => :'azure_tenant_id',
    :'azure_user_groups_obj_id' => :'azure_user_groups_obj_id',
    :'azure_user_portal_access' => :'azure_user_portal_access',
    :'azure_user_programmatic_access' => :'azure_user_programmatic_access',
    :'azure_user_roles_template_id' => :'azure_user_roles_template_id',
    :'cassandra_creation_statements' => :'cassandra_creation_statements',
    :'chef_organizations' => :'chef_organizations',
    :'chef_server_access_mode' => :'chef_server_access_mode',
    :'chef_server_host_name' => :'chef_server_host_name',
    :'chef_server_key' => :'chef_server_key',
    :'chef_server_port' => :'chef_server_port',
    :'chef_server_url' => :'chef_server_url',
    :'chef_server_username' => :'chef_server_username',
    :'chef_skip_ssl' => :'chef_skip_ssl',
    :'create_sync_url' => :'create_sync_url',
    :'db_host_name' => :'db_host_name',
    :'db_isolation_level' => :'db_isolation_level',
    :'db_max_idle_conns' => :'db_max_idle_conns',
    :'db_max_open_conns' => :'db_max_open_conns',
    :'db_name' => :'db_name',
    :'db_port' => :'db_port',
    :'db_pwd' => :'db_pwd',
    :'db_server_certificates' => :'db_server_certificates',
    :'db_server_name' => :'db_server_name',
    :'db_user_name' => :'db_user_name',
    :'delete_protection' => :'delete_protection',
    :'dynamic_secret_id' => :'dynamic_secret_id',
    :'dynamic_secret_key' => :'dynamic_secret_key',
    :'dynamic_secret_name' => :'dynamic_secret_name',
    :'dynamic_secret_type' => :'dynamic_secret_type',
    :'eks_access_key_id' => :'eks_access_key_id',
    :'eks_assume_role' => :'eks_assume_role',
    :'eks_cluster_ca_certificate' => :'eks_cluster_ca_certificate',
    :'eks_cluster_endpoint' => :'eks_cluster_endpoint',
    :'eks_cluster_name' => :'eks_cluster_name',
    :'eks_region' => :'eks_region',
    :'eks_secret_access_key' => :'eks_secret_access_key',
    :'enable_admin_rotation' => :'enable_admin_rotation',
    :'externally_provided_user' => :'externally_provided_user',
    :'failure_message' => :'failure_message',
    :'fixed_user_only' => :'fixed_user_only',
    :'gcp_key_algo' => :'gcp_key_algo',
    :'gcp_service_account_email' => :'gcp_service_account_email',
    :'gcp_service_account_key' => :'gcp_service_account_key',
    :'gcp_token_lifetime' => :'gcp_token_lifetime',
    :'gcp_token_scope' => :'gcp_token_scope',
    :'gcp_token_type' => :'gcp_token_type',
    :'github_app_id' => :'github_app_id',
    :'github_app_private_key' => :'github_app_private_key',
    :'github_base_url' => :'github_base_url',
    :'github_installation_id' => :'github_installation_id',
    :'github_installation_token_permissions' => :'github_installation_token_permissions',
    :'github_installation_token_repositories' => :'github_installation_token_repositories',
    :'github_installation_token_repositories_ids' => :'github_installation_token_repositories_ids',
    :'github_repository_path' => :'github_repository_path',
    :'gke_cluster_ca_certificate' => :'gke_cluster_ca_certificate',
    :'gke_cluster_endpoint' => :'gke_cluster_endpoint',
    :'gke_cluster_name' => :'gke_cluster_name',
    :'gke_service_account_key' => :'gke_service_account_key',
    :'gke_service_account_name' => :'gke_service_account_name',
    :'groups' => :'groups',
    :'hanadb_creation_statements' => :'hanadb_creation_statements',
    :'hanadb_revocation_statements' => :'hanadb_revocation_statements',
    :'host_name' => :'host_name',
    :'host_port' => :'host_port',
    :'implementation_type' => :'implementation_type',
    :'is_fixed_user' => :'is_fixed_user',
    :'item_targets_assoc' => :'item_targets_assoc',
    :'k8s_bearer_token' => :'k8s_bearer_token',
    :'k8s_cluster_ca_certificate' => :'k8s_cluster_ca_certificate',
    :'k8s_cluster_endpoint' => :'k8s_cluster_endpoint',
    :'k8s_namespace' => :'k8s_namespace',
    :'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_token_expiration' => :'ldap_token_expiration',
    :'ldap_url' => :'ldap_url',
    :'ldap_user_attr' => :'ldap_user_attr',
    :'ldap_user_dn' => :'ldap_user_dn',
    :'metadata' => :'metadata',
    :'mongodb_atlas_api_private_key' => :'mongodb_atlas_api_private_key',
    :'mongodb_atlas_api_public_key' => :'mongodb_atlas_api_public_key',
    :'mongodb_atlas_project_id' => :'mongodb_atlas_project_id',
    :'mongodb_custom_data' => :'mongodb_custom_data',
    :'mongodb_db_name' => :'mongodb_db_name',
    :'mongodb_default_auth_db' => :'mongodb_default_auth_db',
    :'mongodb_host_port' => :'mongodb_host_port',
    :'mongodb_is_atlas' => :'mongodb_is_atlas',
    :'mongodb_password' => :'mongodb_password',
    :'mongodb_roles' => :'mongodb_roles',
    :'mongodb_uri_connection' => :'mongodb_uri_connection',
    :'mongodb_uri_options' => :'mongodb_uri_options',
    :'mongodb_username' => :'mongodb_username',
    :'mssql_creation_statements' => :'mssql_creation_statements',
    :'mssql_revocation_statements' => :'mssql_revocation_statements',
    :'mysql_creation_statements' => :'mysql_creation_statements',
    :'oracle_creation_statements' => :'oracle_creation_statements',
    :'password' => :'password',
    :'password_length' => :'password_length',
    :'password_policy' => :'password_policy',
    :'payload' => :'payload',
    :'postgres_creation_statements' => :'postgres_creation_statements',
    :'postgres_revocation_statements' => :'postgres_revocation_statements',
    :'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',
    :'redshift_creation_statements' => :'redshift_creation_statements',
    :'revoke_sync_url' => :'revoke_sync_url',
    :'rotate_sync_url' => :'rotate_sync_url',
    :'scopes' => :'scopes',
    :'secure_remote_access_details' => :'secure_remote_access_details',
    :'session_extension_warn_interval_min' => :'session_extension_warn_interval_min',
    :'sf_account' => :'sf_account',
    :'sf_user_role' => :'sf_user_role',
    :'sf_warehouse_name' => :'sf_warehouse_name',
    :'should_stop' => :'should_stop',
    :'ssl_connection_certificate' => :'ssl_connection_certificate',
    :'ssl_connection_mode' => :'ssl_connection_mode',
    :'tags' => :'tags',
    :'timeout_seconds' => :'timeout_seconds',
    :'use_gw_cloud_identity' => :'use_gw_cloud_identity',
    :'user_name' => :'user_name',
    :'user_principal_name' => :'user_principal_name',
    :'user_ttl' => :'user_ttl',
    :'username_length' => :'username_length',
    :'username_policy' => :'username_policy',
    :'venafi_allow_subdomains' => :'venafi_allow_subdomains',
    :'venafi_allowed_domains' => :'venafi_allowed_domains',
    :'venafi_api_key' => :'venafi_api_key',
    :'venafi_auto_generated_folder' => :'venafi_auto_generated_folder',
    :'venafi_base_url' => :'venafi_base_url',
    :'venafi_root_first_in_chain' => :'venafi_root_first_in_chain',
    :'venafi_sign_using_akeyless_pki' => :'venafi_sign_using_akeyless_pki',
    :'venafi_signer_key_name' => :'venafi_signer_key_name',
    :'venafi_store_private_key' => :'venafi_store_private_key',
    :'venafi_tpp_password' => :'venafi_tpp_password',
    :'venafi_tpp_username' => :'venafi_tpp_username',
    :'venafi_use_tpp' => :'venafi_use_tpp',
    :'venafi_zone' => :'venafi_zone',
    :'warn_before_user_expiration_min' => :'warn_before_user_expiration_min'
  }
end

.build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



1691
1692
1693
# File 'lib/akeyless/models/ds_producer_details.rb', line 1691

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

.openapi_nullableObject

List of attributes with nullable: true



746
747
748
749
# File 'lib/akeyless/models/ds_producer_details.rb', line 746

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

.openapi_typesObject

Attribute type mapping.



565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
# File 'lib/akeyless/models/ds_producer_details.rb', line 565

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

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



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
# File 'lib/akeyless/models/ds_producer_details.rb', line 1496

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      active == o.active &&
      admin_name == o.admin_name &&
      admin_pwd == o.admin_pwd &&
      admin_rotation_interval_days == o.admin_rotation_interval_days &&
      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 &&
      aws_access_key_id == o.aws_access_key_id &&
      aws_access_mode == o.aws_access_mode &&
      aws_region == o.aws_region &&
      aws_role_arns == o.aws_role_arns &&
      aws_secret_access_key == o.aws_secret_access_key &&
      aws_session_token == o.aws_session_token &&
      aws_user_console_access == o.aws_user_console_access &&
      aws_user_groups == o.aws_user_groups &&
      aws_user_policies == o.aws_user_policies &&
      aws_user_programmatic_access == o.aws_user_programmatic_access &&
      azure_app_object_id == o.azure_app_object_id &&
      azure_client_id == o.azure_client_id &&
      azure_client_secret == o.azure_client_secret &&
      azure_fixed_user_name_sub_claim_key == o.azure_fixed_user_name_sub_claim_key &&
      azure_fixed_user_only == o.azure_fixed_user_only &&
      azure_resource_group_name == o.azure_resource_group_name &&
      azure_resource_name == o.azure_resource_name &&
      azure_subscription_id == o.azure_subscription_id &&
      azure_tenant_id == o.azure_tenant_id &&
      azure_user_groups_obj_id == o.azure_user_groups_obj_id &&
      azure_user_portal_access == o.azure_user_portal_access &&
      azure_user_programmatic_access == o.azure_user_programmatic_access &&
      azure_user_roles_template_id == o.azure_user_roles_template_id &&
      cassandra_creation_statements == o.cassandra_creation_statements &&
      chef_organizations == o.chef_organizations &&
      chef_server_access_mode == o.chef_server_access_mode &&
      chef_server_host_name == o.chef_server_host_name &&
      chef_server_key == o.chef_server_key &&
      chef_server_port == o.chef_server_port &&
      chef_server_url == o.chef_server_url &&
      chef_server_username == o.chef_server_username &&
      chef_skip_ssl == o.chef_skip_ssl &&
      create_sync_url == o.create_sync_url &&
      db_host_name == o.db_host_name &&
      db_isolation_level == o.db_isolation_level &&
      db_max_idle_conns == o.db_max_idle_conns &&
      db_max_open_conns == o.db_max_open_conns &&
      db_name == o.db_name &&
      db_port == o.db_port &&
      db_pwd == o.db_pwd &&
      db_server_certificates == o.db_server_certificates &&
      db_server_name == o.db_server_name &&
      db_user_name == o.db_user_name &&
      delete_protection == o.delete_protection &&
      dynamic_secret_id == o.dynamic_secret_id &&
      dynamic_secret_key == o.dynamic_secret_key &&
      dynamic_secret_name == o.dynamic_secret_name &&
      dynamic_secret_type == o.dynamic_secret_type &&
      eks_access_key_id == o.eks_access_key_id &&
      eks_assume_role == o.eks_assume_role &&
      eks_cluster_ca_certificate == o.eks_cluster_ca_certificate &&
      eks_cluster_endpoint == o.eks_cluster_endpoint &&
      eks_cluster_name == o.eks_cluster_name &&
      eks_region == o.eks_region &&
      eks_secret_access_key == o.eks_secret_access_key &&
      enable_admin_rotation == o.enable_admin_rotation &&
      externally_provided_user == o.externally_provided_user &&
      failure_message == o.failure_message &&
      fixed_user_only == o.fixed_user_only &&
      gcp_key_algo == o.gcp_key_algo &&
       == o. &&
       == o. &&
      gcp_token_lifetime == o.gcp_token_lifetime &&
      gcp_token_scope == o.gcp_token_scope &&
      gcp_token_type == o.gcp_token_type &&
      github_app_id == o.github_app_id &&
      github_app_private_key == o.github_app_private_key &&
      github_base_url == o.github_base_url &&
      github_installation_id == o.github_installation_id &&
      github_installation_token_permissions == o.github_installation_token_permissions &&
      github_installation_token_repositories == o.github_installation_token_repositories &&
      github_installation_token_repositories_ids == o.github_installation_token_repositories_ids &&
      github_repository_path == o.github_repository_path &&
      gke_cluster_ca_certificate == o.gke_cluster_ca_certificate &&
      gke_cluster_endpoint == o.gke_cluster_endpoint &&
      gke_cluster_name == o.gke_cluster_name &&
       == o. &&
       == o. &&
      groups == o.groups &&
      hanadb_creation_statements == o.hanadb_creation_statements &&
      hanadb_revocation_statements == o.hanadb_revocation_statements &&
      host_name == o.host_name &&
      host_port == o.host_port &&
      implementation_type == o.implementation_type &&
      is_fixed_user == o.is_fixed_user &&
      item_targets_assoc == o.item_targets_assoc &&
      k8s_bearer_token == o.k8s_bearer_token &&
      k8s_cluster_ca_certificate == o.k8s_cluster_ca_certificate &&
      k8s_cluster_endpoint == o.k8s_cluster_endpoint &&
      k8s_namespace == o.k8s_namespace &&
       == 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_token_expiration == o.ldap_token_expiration &&
      ldap_url == o.ldap_url &&
      ldap_user_attr == o.ldap_user_attr &&
      ldap_user_dn == o.ldap_user_dn &&
       == o. &&
      mongodb_atlas_api_private_key == o.mongodb_atlas_api_private_key &&
      mongodb_atlas_api_public_key == o.mongodb_atlas_api_public_key &&
      mongodb_atlas_project_id == o.mongodb_atlas_project_id &&
      mongodb_custom_data == o.mongodb_custom_data &&
      mongodb_db_name == o.mongodb_db_name &&
      mongodb_default_auth_db == o.mongodb_default_auth_db &&
      mongodb_host_port == o.mongodb_host_port &&
      mongodb_is_atlas == o.mongodb_is_atlas &&
      mongodb_password == o.mongodb_password &&
      mongodb_roles == o.mongodb_roles &&
      mongodb_uri_connection == o.mongodb_uri_connection &&
      mongodb_uri_options == o.mongodb_uri_options &&
      mongodb_username == o.mongodb_username &&
      mssql_creation_statements == o.mssql_creation_statements &&
      mssql_revocation_statements == o.mssql_revocation_statements &&
      mysql_creation_statements == o.mysql_creation_statements &&
      oracle_creation_statements == o.oracle_creation_statements &&
      password == o.password &&
      password_length == o.password_length &&
      password_policy == o.password_policy &&
      payload == o.payload &&
      postgres_creation_statements == o.postgres_creation_statements &&
      postgres_revocation_statements == o.postgres_revocation_statements &&
      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 &&
      redshift_creation_statements == o.redshift_creation_statements &&
      revoke_sync_url == o.revoke_sync_url &&
      rotate_sync_url == o.rotate_sync_url &&
      scopes == o.scopes &&
      secure_remote_access_details == o.secure_remote_access_details &&
      session_extension_warn_interval_min == o.session_extension_warn_interval_min &&
       == o. &&
      sf_user_role == o.sf_user_role &&
      sf_warehouse_name == o.sf_warehouse_name &&
      should_stop == o.should_stop &&
      ssl_connection_certificate == o.ssl_connection_certificate &&
      ssl_connection_mode == o.ssl_connection_mode &&
      tags == o.tags &&
      timeout_seconds == o.timeout_seconds &&
      use_gw_cloud_identity == o.use_gw_cloud_identity &&
      user_name == o.user_name &&
      user_principal_name == o.user_principal_name &&
      user_ttl == o.user_ttl &&
      username_length == o.username_length &&
      username_policy == o.username_policy &&
      venafi_allow_subdomains == o.venafi_allow_subdomains &&
      venafi_allowed_domains == o.venafi_allowed_domains &&
      venafi_api_key == o.venafi_api_key &&
      venafi_auto_generated_folder == o.venafi_auto_generated_folder &&
      venafi_base_url == o.venafi_base_url &&
      venafi_root_first_in_chain == o.venafi_root_first_in_chain &&
      venafi_sign_using_akeyless_pki == o.venafi_sign_using_akeyless_pki &&
      venafi_signer_key_name == o.venafi_signer_key_name &&
      venafi_store_private_key == o.venafi_store_private_key &&
      venafi_tpp_password == o.venafi_tpp_password &&
      venafi_tpp_username == o.venafi_tpp_username &&
      venafi_use_tpp == o.venafi_use_tpp &&
      venafi_zone == o.venafi_zone &&
      warn_before_user_expiration_min == o.warn_before_user_expiration_min
end

#_deserialize(type, value) ⇒ Object

Deserializes the data based on type

Parameters:

  • string

    type Data type

  • string

    value Value to be deserialized

Returns:

  • (Object)

    Deserialized data



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
# File 'lib/akeyless/models/ds_producer_details.rb', line 1722

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

#_to_hash(value) ⇒ Hash

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

Parameters:

  • value (Object)

    Any valid value

Returns:

  • (Hash)

    Returns the value in the form of hash



1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
# File 'lib/akeyless/models/ds_producer_details.rb', line 1793

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

#build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
# File 'lib/akeyless/models/ds_producer_details.rb', line 1698

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

  self
end

#eql?(o) ⇒ Boolean

Parameters:

  • Object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


1678
1679
1680
# File 'lib/akeyless/models/ds_producer_details.rb', line 1678

def eql?(o)
  self == o
end

#hashInteger

Calculates hash code according to all attributes.

Returns:

  • (Integer)

    Hash code



1684
1685
1686
# File 'lib/akeyless/models/ds_producer_details.rb', line 1684

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

#list_invalid_propertiesObject

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

Returns:

  • Array for valid properties with the reasons



1483
1484
1485
1486
# File 'lib/akeyless/models/ds_producer_details.rb', line 1483

def list_invalid_properties
  invalid_properties = Array.new
  invalid_properties
end

#to_bodyHash

to_body is an alias to to_hash (backward compatibility)

Returns:

  • (Hash)

    Returns the object in the form of hash



1769
1770
1771
# File 'lib/akeyless/models/ds_producer_details.rb', line 1769

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



1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
# File 'lib/akeyless/models/ds_producer_details.rb', line 1775

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



1763
1764
1765
# File 'lib/akeyless/models/ds_producer_details.rb', line 1763

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



1490
1491
1492
# File 'lib/akeyless/models/ds_producer_details.rb', line 1490

def valid?
  true
end