initial commit

This commit is contained in:
2025-04-18 13:26:52 -07:00
commit b78296ab5b
134 changed files with 11623 additions and 0 deletions

31
sdk/python/pulumi_xyz/config/vars.py generated Normal file
View File

@@ -0,0 +1,31 @@
# coding=utf-8
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
# *** Do not edit by hand unless you're certain you know what you are doing! ***
import builtins
import copy
import warnings
import sys
import pulumi
import pulumi.runtime
from typing import Any, Mapping, Optional, Sequence, Union, overload
if sys.version_info >= (3, 11):
from typing import NotRequired, TypedDict, TypeAlias
else:
from typing_extensions import NotRequired, TypedDict, TypeAlias
from .. import _utilities
from .. import region
import types
__config__ = pulumi.Config('xyz')
class _ExportableConfig(types.ModuleType):
@property
def region(self) -> Optional[str]:
"""
A region which should be used.
"""
return __config__.get('region')