Overview

API Reference

built-in

builtin package represents the predefined, Terraform domain-specific,functions and types in the scope of any thread of AsCode. This meansthat is not required to use the load statement, and any of the functioncan be called without any prefix.

docker

The docker modules allow you to manipulate docker image names.

encoding/base64

base64 defines base64 encoding & decoding functions,often used to represent binary as text.

encoding/csv

csv reads comma-separated values files

encoding/json

json provides functions for working with json data

encoding/yaml

yaml provides functions for working with yaml data

http

http defines an HTTP client implementation

math

math defines mathematical functions, it’s intended to be a drop-insubset of python’s math module for starlark: https://docs.python.org/3/library/math.html

os

os provides a platform-independent interface to operating system functionality.

path/filepath

filepath implements utility routines for manipulating filename paths in away compatible with the target operating system-defined file path

re

re defines regular expression functions, it’s intended to be a drop-insubset of python’s re module for starlark: https://docs.python.org/3/library/re.html

time

time defines time primitives for starlark

url

url parses URLs and implements query escaping.