Create Service Sync Config
proton_create_service_sync_config | R Documentation |
Create the Proton Ops configuration file¶
Description¶
Create the Proton Ops configuration file.
Usage¶
proton_create_service_sync_config(branch, filePath, repositoryName,
repositoryProvider, serviceName)
Arguments¶
branch
[required] The repository branch for your Proton Ops file.
filePath
[required] The path to the Proton Ops file.
repositoryName
[required] The repository name.
repositoryProvider
[required] The provider type for your repository.
serviceName
[required] The name of the service the Proton Ops file is for.
Value¶
A list with the following syntax:
list(
serviceSyncConfig = list(
branch = "string",
filePath = "string",
repositoryName = "string",
repositoryProvider = "GITHUB"|"GITHUB_ENTERPRISE"|"BITBUCKET",
serviceName = "string"
)
)