32 lines
807 B
Python
Generated
32 lines
807 B
Python
Generated
# 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')
|
|
|