Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Latest commit

 

History

History
34 lines (26 loc) · 1.65 KB

HelmRepositoryRequestConfig.md

File metadata and controls

34 lines (26 loc) · 1.65 KB

HelmRepositoryRequestConfig

Properties

Name Type Description Notes
username str Required if the repository is private [optional]
password str Required if the repository is private [optional]
access_key_id str Required if kind is `ECR` or `PUBLIC_ECR` [optional]
secret_access_key str Required if kind is `ECR` or `PUBLIC_ECR` [optional]
region str Required if kind is `ECR` or `SCALEWAY_CR` [optional]
scaleway_access_key str Required if kind is `SCALEWAY_CR` [optional]
scaleway_secret_key str Required if kind is `SCALEWAY_CR` [optional]

Example

from qovery.models.helm_repository_request_config import HelmRepositoryRequestConfig

# TODO update the JSON string below
json = "{}"
# create an instance of HelmRepositoryRequestConfig from a JSON string
helm_repository_request_config_instance = HelmRepositoryRequestConfig.from_json(json)
# print the JSON string representation of the object
print HelmRepositoryRequestConfig.to_json()

# convert the object into a dict
helm_repository_request_config_dict = helm_repository_request_config_instance.to_dict()
# create an instance of HelmRepositoryRequestConfig from a dict
helm_repository_request_config_form_dict = helm_repository_request_config.from_dict(helm_repository_request_config_dict)

[Back to Model list] [Back to API list] [Back to README]