Skip to content

feat:add new secret resolver to modules#231

Draft
betinacosta wants to merge 20 commits into
feat/new-secret-resolverfrom
feat/add-new-secret-resolver-to-modules
Draft

feat:add new secret resolver to modules#231
betinacosta wants to merge 20 commits into
feat/new-secret-resolverfrom
feat/add-new-secret-resolver-to-modules

Conversation

@betinacosta

Copy link
Copy Markdown
Member

Description

This PR implements the secret resolver into the sdk modules.

Type of Change

Please check the relevant option:

  • Bug fix (non-breaking change that fixes an issue)
  • New feature (non-breaking change that adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to change)
  • Documentation update
  • Code refactoring
  • Dependency update

How to Test

from sap_cloud_sdk import (
    adms,
    agent_memory,
    agentgateway,
    destination,
    dms,
    objectstore,
    print as print_service
)

from sap_cloud_sdk.core import (
    auditlog_ng,
    data_anonymization
)


def main() -> None:
    # Destination client
    destination_client = destination.create_client()
    print(f"Destination: {destination_client}")

    # ADMS client
    adms_client = adms.create_client()
    print(f"ADMS: {adms_client}")

    # Agent Gateway
    agent_gateway_client = agentgateway.create_client()
    print(f"Agent Gateway: {agent_gateway_client}")

    # Agent Memory
    agent_memory_client = agent_memory.create_client()
    print(f"Agent Memory: {agent_memory_client}")

    # DMS
    dms_client = dms.create_client()
    print(f"DMS: {dms_client}")

    # Object Store
    object_store_client = objectstore.create_client("default")
    print(f"Object Store: {object_store_client}")

    # Print Service
    print_client = print_service.create_client()
    print(f"Print: {print_client}")

    # Auditlog V3
    auditlog_client = auditlog_ng.create_client()
    print(f"Auditlog NG: {auditlog_client}")

    # Data Anonymization
    data_client = data_anonymization.create_client()
    print(f"Data Anonymization: {data_client}")

    

if __name__ == "__main__":
    main()

Checklist

Before submitting your PR, please review and check the following:

  • I have read the Contributing Guidelines
  • I have verified that my changes solve the issue
  • I have added/updated automated tests to cover my changes
  • All tests pass locally
  • I have verified that my code follows the Code Guidelines
  • I have updated documentation (if applicable)
  • I have added type hints for all public APIs
  • My code does not contain sensitive information (credentials, tokens, etc.)
  • I have followed Conventional Commits for commit messages

Breaking Changes

If this PR introduces breaking changes, please describe:

  • What breaks
  • Migration path for users
  • Alternative approaches considered

Additional Notes

Add any additional context, screenshots, or information that would help reviewers.

@betinacosta betinacosta requested a review from a team as a code owner July 15, 2026 14:20
@betinacosta betinacosta marked this pull request as draft July 15, 2026 20:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant