initial commit
This commit is contained in:
105
sdk/python/pulumi_xyz/provider.py
generated
Normal file
105
sdk/python/pulumi_xyz/provider.py
generated
Normal file
@@ -0,0 +1,105 @@
|
||||
# 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
|
||||
|
||||
__all__ = ['ProviderArgs', 'Provider']
|
||||
|
||||
@pulumi.input_type
|
||||
class ProviderArgs:
|
||||
def __init__(__self__, *,
|
||||
region: Optional[pulumi.Input['region.Region']] = None):
|
||||
"""
|
||||
The set of arguments for constructing a Provider resource.
|
||||
:param pulumi.Input['region.Region'] region: A region which should be used.
|
||||
"""
|
||||
if region is not None:
|
||||
pulumi.set(__self__, "region", region)
|
||||
|
||||
@property
|
||||
@pulumi.getter
|
||||
def region(self) -> Optional[pulumi.Input['region.Region']]:
|
||||
"""
|
||||
A region which should be used.
|
||||
"""
|
||||
return pulumi.get(self, "region")
|
||||
|
||||
@region.setter
|
||||
def region(self, value: Optional[pulumi.Input['region.Region']]):
|
||||
pulumi.set(self, "region", value)
|
||||
|
||||
|
||||
class Provider(pulumi.ProviderResource):
|
||||
@overload
|
||||
def __init__(__self__,
|
||||
resource_name: str,
|
||||
opts: Optional[pulumi.ResourceOptions] = None,
|
||||
region: Optional[pulumi.Input['region.Region']] = None,
|
||||
__props__=None):
|
||||
"""
|
||||
The provider type for the xyz package. By default, resources use package-wide configuration
|
||||
settings, however an explicit `Provider` instance may be created and passed during resource
|
||||
construction to achieve fine-grained programmatic control over provider settings. See the
|
||||
[documentation](https://www.pulumi.com/docs/reference/programming-model/#providers) for more information.
|
||||
|
||||
:param str resource_name: The name of the resource.
|
||||
:param pulumi.ResourceOptions opts: Options for the resource.
|
||||
:param pulumi.Input['region.Region'] region: A region which should be used.
|
||||
"""
|
||||
...
|
||||
@overload
|
||||
def __init__(__self__,
|
||||
resource_name: str,
|
||||
args: Optional[ProviderArgs] = None,
|
||||
opts: Optional[pulumi.ResourceOptions] = None):
|
||||
"""
|
||||
The provider type for the xyz package. By default, resources use package-wide configuration
|
||||
settings, however an explicit `Provider` instance may be created and passed during resource
|
||||
construction to achieve fine-grained programmatic control over provider settings. See the
|
||||
[documentation](https://www.pulumi.com/docs/reference/programming-model/#providers) for more information.
|
||||
|
||||
:param str resource_name: The name of the resource.
|
||||
:param ProviderArgs args: The arguments to use to populate this resource's properties.
|
||||
:param pulumi.ResourceOptions opts: Options for the resource.
|
||||
"""
|
||||
...
|
||||
def __init__(__self__, resource_name: str, *args, **kwargs):
|
||||
resource_args, opts = _utilities.get_resource_args_opts(ProviderArgs, pulumi.ResourceOptions, *args, **kwargs)
|
||||
if resource_args is not None:
|
||||
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
||||
else:
|
||||
__self__._internal_init(resource_name, *args, **kwargs)
|
||||
|
||||
def _internal_init(__self__,
|
||||
resource_name: str,
|
||||
opts: Optional[pulumi.ResourceOptions] = None,
|
||||
region: Optional[pulumi.Input['region.Region']] = None,
|
||||
__props__=None):
|
||||
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
||||
if not isinstance(opts, pulumi.ResourceOptions):
|
||||
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
||||
if opts.id is None:
|
||||
if __props__ is not None:
|
||||
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
||||
__props__ = ProviderArgs.__new__(ProviderArgs)
|
||||
|
||||
__props__.__dict__["region"] = pulumi.Output.from_input(region).apply(pulumi.runtime.to_json) if region is not None else None
|
||||
super(Provider, __self__).__init__(
|
||||
'xyz',
|
||||
resource_name,
|
||||
__props__,
|
||||
opts)
|
||||
|
||||
Reference in New Issue
Block a user