Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions docs/specs/adt-cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,17 +162,24 @@ adt report generate --transport TR001 --template summary
### Authentication Commands

```bash
# Service key authentication
# Service key authentication (BTP)
adt auth login --service-key ./service-key.json

# Basic authentication (on-premise)
adt auth login --username $SAP_USER --password $SAP_PASSWORD --host $SAP_HOST

# Interactive authentication
adt auth login --interactive

# Token-based authentication
adt auth login --token $SAP_TOKEN --endpoint $SAP_ENDPOINT
```

**Design Rationale**: Flexible authentication supporting multiple SAP deployment scenarios (BTP, on-premise, different authentication methods).
**Design Rationale**: Flexible authentication supporting multiple SAP deployment scenarios:
- **Service Key**: SAP Business Technology Platform (BTP) with OAuth 2.0
- **Basic Auth**: On-premise S/4HANA systems with username/password
- **Interactive**: Browser-based OAuth flows
- **Token**: Pre-generated tokens for automation

### Object Management Commands

Expand Down
Loading
Loading