import osfrom gcore import Gcoreclient = Gcore( api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted)inference_secret = client.cloud.inference.secrets.get( secret_name="aws-dev", project_id=1,)print(inference_secret.data)
import osfrom gcore import Gcoreclient = Gcore( api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted)inference_secret = client.cloud.inference.secrets.get( secret_name="aws-dev", project_id=1,)print(inference_secret.data)