File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -364,6 +364,7 @@ async def create_program(
364364 runtime : str ,
365365 metadata : Optional [dict [str , Any ]] = None ,
366366 address : Optional [str ] = None ,
367+ payment : Optional [Payment ] = None ,
367368 vcpus : Optional [int ] = None ,
368369 memory : Optional [int ] = None ,
369370 timeout_seconds : Optional [float ] = None ,
@@ -387,6 +388,7 @@ async def create_program(
387388 :param runtime: Runtime to use
388389 :param metadata: Metadata to attach to the message
389390 :param address: Address to use (Default: account.get_address())
391+ :param payment: Payment method used to pay for the program (Default: None)
390392 :param vcpus: Number of vCPUs to allocate (Default: 1)
391393 :param memory: Memory in MB for the VM to be allocated (Default: 128)
392394 :param timeout_seconds: Timeout in seconds (Default: 30.0)
Original file line number Diff line number Diff line change @@ -410,6 +410,7 @@ async def create_program(
410410 runtime : str ,
411411 metadata : Optional [dict [str , Any ]] = None ,
412412 address : Optional [str ] = None ,
413+ payment : Optional [Payment ] = None ,
413414 vcpus : Optional [int ] = None ,
414415 memory : Optional [int ] = None ,
415416 timeout_seconds : Optional [float ] = None ,
@@ -433,6 +434,7 @@ async def create_program(
433434 runtime = runtime ,
434435 metadata = metadata ,
435436 address = address ,
437+ payment = payment ,
436438 vcpus = vcpus ,
437439 memory = memory ,
438440 timeout_seconds = timeout_seconds ,
You can’t perform that action at this time.
0 commit comments