- 
        Couldn't load subscription status. 
- Fork 9
Created client layer for IAM #90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
| Codecov Report❌ Patch coverage is  Additional details and impacted files@@             Coverage Diff              @@
##               main      #90      +/-   ##
============================================
+ Coverage     78.10%   78.61%   +0.51%     
- Complexity     1690     1748      +58     
============================================
  Files           136      141       +5     
  Lines          6864     7067     +203     
  Branches        779      816      +37     
============================================
+ Hits           5361     5556     +195     
  Misses         1079     1079              
- Partials        424      432       +8     
 Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
 | 
        
          
                iam/iam-client/src/main/java/com/salesforce/multicloudj/iam/client/IamClient.java
              
                Outdated
          
            Show resolved
            Hide resolved
        
              
          
                iam/iam-client/src/main/java/com/salesforce/multicloudj/iam/model/TrustConfiguration.java
              
                Outdated
          
            Show resolved
            Hide resolved
        
              
          
                iam/iam-client/src/test/java/com/salesforce/multicloudj/iam/client/IamClientTest.java
              
                Outdated
          
            Show resolved
            Hide resolved
        
              
          
                iam/iam-client/src/test/java/com/salesforce/multicloudj/iam/client/IamClientTest.java
              
                Outdated
          
            Show resolved
            Hide resolved
        
              
          
                iam/iam-client/src/main/java/com/salesforce/multicloudj/iam/model/CreateOptions.java
              
                Outdated
          
            Show resolved
            Hide resolved
        
              
          
                iam/iam-client/src/main/java/com/salesforce/multicloudj/iam/model/CreateOptions.java
              
                Outdated
          
            Show resolved
            Hide resolved
        
              
          
                iam/iam-client/src/main/java/com/salesforce/multicloudj/iam/model/CreateOptions.java
              
                Outdated
          
            Show resolved
            Hide resolved
        
              
          
                iam/iam-client/src/main/java/com/salesforce/multicloudj/iam/model/Statement.java
              
                Outdated
          
            Show resolved
            Hide resolved
        
              
          
                iam/iam-client/src/main/java/com/salesforce/multicloudj/iam/model/PolicyDocument.java
              
                Outdated
          
            Show resolved
            Hide resolved
        
              
          
                iam/iam-client/src/main/java/com/salesforce/multicloudj/iam/model/PolicyDocument.java
              
                Outdated
          
            Show resolved
            Hide resolved
        
              
          
                iam/iam-client/src/main/java/com/salesforce/multicloudj/iam/model/PolicyDocument.java
              
                Outdated
          
            Show resolved
            Hide resolved
        
              
          
                iam/iam-client/src/main/java/com/salesforce/multicloudj/iam/model/CreateOptions.java
          
            Show resolved
            Hide resolved
        
      There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks for PR, please address the comments
Summary
• Add IAM client module with cloud-agnostic API for identity and policy management
• Implement substrate-neutral PolicyDocument with fluent builder pattern
• Provide foundation for unified IAM operations across AWS, GCP, and AliCloud
Components
IamClient: Main entry point with builder pattern for identity lifecycle operations
PolicyDocument/Statement: Cloud-agnostic policy models with type-safe builders
Supporting models: TrustConfiguration and CreateOptions for flexible identity creation
Complete unit test coverage for all classes
Notes
Follows MultiCloudJ SPI pattern for future provider implementations
Client methods throw UnsupportedOperationException pending driver layer
Ready for AWS/GCP/AliCloud implementation modules