akeyless 3.6.0 → 3.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +8 -1
- data/docs/Auth.md +4 -0
- data/docs/AuthMethodAccessInfo.md +2 -0
- data/docs/Configure.md +5 -1
- data/docs/CreateAuthMethodOCI.md +40 -0
- data/docs/CreateAuthMethodOCIOutput.md +18 -0
- data/docs/OCIAccessRules.md +20 -0
- data/docs/UpdateAuthMethodOCI.md +42 -0
- data/docs/UpdateAuthMethodOCIOutput.md +18 -0
- data/docs/V2Api.md +126 -0
- data/lib/akeyless/api/v2_api.rb +128 -0
- data/lib/akeyless/models/auth.rb +25 -1
- data/lib/akeyless/models/auth_method_access_info.rb +10 -1
- data/lib/akeyless/models/configure.rb +28 -4
- data/lib/akeyless/models/create_auth_method_oci.rb +359 -0
- data/lib/akeyless/models/create_auth_method_oci_output.rb +214 -0
- data/lib/akeyless/models/oci_access_rules.rb +226 -0
- data/lib/akeyless/models/update_auth_method_oci.rb +369 -0
- data/lib/akeyless/models/update_auth_method_oci_output.rb +214 -0
- data/lib/akeyless/version.rb +1 -1
- data/lib/akeyless.rb +5 -0
- data/spec/models/create_auth_method_oci_output_spec.rb +36 -0
- data/spec/models/create_auth_method_oci_spec.rb +102 -0
- data/spec/models/oci_access_rules_spec.rb +42 -0
- data/spec/models/update_auth_method_oci_output_spec.rb +36 -0
- data/spec/models/update_auth_method_oci_spec.rb +108 -0
- metadata +21 -1
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: akeyless
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.6.
|
4
|
+
version: 3.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
@@ -142,6 +142,8 @@ files:
|
|
142
142
|
- docs/CreateAuthMethodLDAPOutput.md
|
143
143
|
- docs/CreateAuthMethodOAuth2.md
|
144
144
|
- docs/CreateAuthMethodOAuth2Output.md
|
145
|
+
- docs/CreateAuthMethodOCI.md
|
146
|
+
- docs/CreateAuthMethodOCIOutput.md
|
145
147
|
- docs/CreateAuthMethodOIDC.md
|
146
148
|
- docs/CreateAuthMethodOIDCOutput.md
|
147
149
|
- docs/CreateAuthMethodOutput.md
|
@@ -595,6 +597,7 @@ files:
|
|
595
597
|
- docs/NotiForwarder.md
|
596
598
|
- docs/OAuth2AccessRules.md
|
597
599
|
- docs/OAuth2CustomClaim.md
|
600
|
+
- docs/OCIAccessRules.md
|
598
601
|
- docs/OIDCAccessRules.md
|
599
602
|
- docs/OIDCCustomClaim.md
|
600
603
|
- docs/ObjectVersionSettingsOutput.md
|
@@ -717,6 +720,8 @@ files:
|
|
717
720
|
- docs/UpdateAuthMethodLDAP.md
|
718
721
|
- docs/UpdateAuthMethodLDAPOutput.md
|
719
722
|
- docs/UpdateAuthMethodOAuth2.md
|
723
|
+
- docs/UpdateAuthMethodOCI.md
|
724
|
+
- docs/UpdateAuthMethodOCIOutput.md
|
720
725
|
- docs/UpdateAuthMethodOIDC.md
|
721
726
|
- docs/UpdateAuthMethodOutput.md
|
722
727
|
- docs/UpdateAuthMethodSAML.md
|
@@ -904,6 +909,8 @@ files:
|
|
904
909
|
- lib/akeyless/models/create_auth_method_ldap_output.rb
|
905
910
|
- lib/akeyless/models/create_auth_method_o_auth2.rb
|
906
911
|
- lib/akeyless/models/create_auth_method_o_auth2_output.rb
|
912
|
+
- lib/akeyless/models/create_auth_method_oci.rb
|
913
|
+
- lib/akeyless/models/create_auth_method_oci_output.rb
|
907
914
|
- lib/akeyless/models/create_auth_method_oidc.rb
|
908
915
|
- lib/akeyless/models/create_auth_method_oidc_output.rb
|
909
916
|
- lib/akeyless/models/create_auth_method_output.rb
|
@@ -1360,6 +1367,7 @@ files:
|
|
1360
1367
|
- lib/akeyless/models/o_auth2_access_rules.rb
|
1361
1368
|
- lib/akeyless/models/o_auth2_custom_claim.rb
|
1362
1369
|
- lib/akeyless/models/object_version_settings_output.rb
|
1370
|
+
- lib/akeyless/models/oci_access_rules.rb
|
1363
1371
|
- lib/akeyless/models/oidc_access_rules.rb
|
1364
1372
|
- lib/akeyless/models/oidc_client_info.rb
|
1365
1373
|
- lib/akeyless/models/oidc_custom_claim.rb
|
@@ -1479,6 +1487,8 @@ files:
|
|
1479
1487
|
- lib/akeyless/models/update_auth_method_ldap.rb
|
1480
1488
|
- lib/akeyless/models/update_auth_method_ldap_output.rb
|
1481
1489
|
- lib/akeyless/models/update_auth_method_o_auth2.rb
|
1490
|
+
- lib/akeyless/models/update_auth_method_oci.rb
|
1491
|
+
- lib/akeyless/models/update_auth_method_oci_output.rb
|
1482
1492
|
- lib/akeyless/models/update_auth_method_oidc.rb
|
1483
1493
|
- lib/akeyless/models/update_auth_method_output.rb
|
1484
1494
|
- lib/akeyless/models/update_auth_method_saml.rb
|
@@ -2153,6 +2163,8 @@ files:
|
|
2153
2163
|
- spec/models/create_auth_method_ldap_spec.rb
|
2154
2164
|
- spec/models/create_auth_method_o_auth2_output_spec.rb
|
2155
2165
|
- spec/models/create_auth_method_o_auth2_spec.rb
|
2166
|
+
- spec/models/create_auth_method_oci_output_spec.rb
|
2167
|
+
- spec/models/create_auth_method_oci_spec.rb
|
2156
2168
|
- spec/models/create_auth_method_oidc_output_spec.rb
|
2157
2169
|
- spec/models/create_auth_method_oidc_spec.rb
|
2158
2170
|
- spec/models/create_auth_method_output_spec.rb
|
@@ -2610,6 +2622,7 @@ files:
|
|
2610
2622
|
- spec/models/o_auth2_access_rules_spec.rb
|
2611
2623
|
- spec/models/o_auth2_custom_claim_spec.rb
|
2612
2624
|
- spec/models/object_version_settings_output_spec.rb
|
2625
|
+
- spec/models/oci_access_rules_spec.rb
|
2613
2626
|
- spec/models/oidc_access_rules_spec.rb
|
2614
2627
|
- spec/models/oidc_client_info_spec.rb
|
2615
2628
|
- spec/models/oidc_custom_claim_spec.rb
|
@@ -2727,6 +2740,8 @@ files:
|
|
2727
2740
|
- spec/models/update_auth_method_ldap_output_spec.rb
|
2728
2741
|
- spec/models/update_auth_method_ldap_spec.rb
|
2729
2742
|
- spec/models/update_auth_method_o_auth2_spec.rb
|
2743
|
+
- spec/models/update_auth_method_oci_output_spec.rb
|
2744
|
+
- spec/models/update_auth_method_oci_spec.rb
|
2730
2745
|
- spec/models/update_auth_method_oidc_spec.rb
|
2731
2746
|
- spec/models/update_auth_method_output_spec.rb
|
2732
2747
|
- spec/models/update_auth_method_saml_spec.rb
|
@@ -3015,12 +3030,14 @@ test_files:
|
|
3015
3030
|
- spec/models/update_global_sign_atlas_target_spec.rb
|
3016
3031
|
- spec/models/create_rotated_secret_spec.rb
|
3017
3032
|
- spec/models/create_auth_method_ldap_output_spec.rb
|
3033
|
+
- spec/models/oci_access_rules_spec.rb
|
3018
3034
|
- spec/models/gcp_target_details_spec.rb
|
3019
3035
|
- spec/models/update_ping_target_spec.rb
|
3020
3036
|
- spec/models/kmip_set_server_state_spec.rb
|
3021
3037
|
- spec/models/get_sub_admins_list_reply_obj_spec.rb
|
3022
3038
|
- spec/models/gateway_update_producer_ping_output_spec.rb
|
3023
3039
|
- spec/models/gateway_create_producer_certificate_automation_spec.rb
|
3040
|
+
- spec/models/update_auth_method_oci_output_spec.rb
|
3024
3041
|
- spec/models/kmip_environment_create_response_spec.rb
|
3025
3042
|
- spec/models/delete_items_spec.rb
|
3026
3043
|
- spec/models/item_target_association_spec.rb
|
@@ -3098,6 +3115,7 @@ test_files:
|
|
3098
3115
|
- spec/models/kmip_describe_server_spec.rb
|
3099
3116
|
- spec/models/describe_assoc_spec.rb
|
3100
3117
|
- spec/models/kmip_move_server_output_spec.rb
|
3118
|
+
- spec/models/create_auth_method_oci_output_spec.rb
|
3101
3119
|
- spec/models/gateway_create_producer_dockerhub_spec.rb
|
3102
3120
|
- spec/models/configure_output_spec.rb
|
3103
3121
|
- spec/models/role_auth_method_association_spec.rb
|
@@ -3276,6 +3294,7 @@ test_files:
|
|
3276
3294
|
- spec/models/gateway_delete_allowed_management_access_spec.rb
|
3277
3295
|
- spec/models/o_auth2_custom_claim_spec.rb
|
3278
3296
|
- spec/models/gateway_update_producer_native_k8_s_output_spec.rb
|
3297
|
+
- spec/models/create_auth_method_oci_spec.rb
|
3279
3298
|
- spec/models/gateway_update_producer_azure_spec.rb
|
3280
3299
|
- spec/models/kmip_renew_server_certificate_output_spec.rb
|
3281
3300
|
- spec/models/update_target_spec.rb
|
@@ -3520,6 +3539,7 @@ test_files:
|
|
3520
3539
|
- spec/models/target_item_version_spec.rb
|
3521
3540
|
- spec/models/describe_sub_claims_spec.rb
|
3522
3541
|
- spec/models/update_eks_target_output_spec.rb
|
3542
|
+
- spec/models/update_auth_method_oci_spec.rb
|
3523
3543
|
- spec/models/gateway_update_producer_aws_spec.rb
|
3524
3544
|
- spec/models/update_event_forwarder_spec.rb
|
3525
3545
|
- spec/models/delete_target_association_spec.rb
|