Fixes: #497
This PR follows the `weekly-pulumi-update` CI workflow steps to update
our `pulumi/pulumi` dependency, with manual intervention to resolve
tooling update conflicts. Before generating the SDKs, it's necessary to
update the language tools and otel packages to ensure compatibility with
the latest changes.
Additional command executed for the manual updates:
```sh
TOOLS=(
"github.com/pulumi/pulumi/sdk/go/pulumi-language-go/v3"
"github.com/pulumi/pulumi/sdk/nodejs/cmd/pulumi-language-nodejs/v3"
"github.com/pulumi/pulumi/sdk/python/cmd/pulumi-language-python/v3"
"go.opentelemetry.io/otel/exporters/otlp/otlptrace"
)
for TOOL in "${TOOLS[@]}"; do
go get -u $TOOL
go mod tidy
done
```
---
Note: the Go directive is upgraded to v1.24 as
`github.com/pulumi/pulumi/sdk/go/pulumi-language-go/v3` requires Go
v1.24
([ref](5c96e4e6aa/sdk/go/pulumi-language-go/go.mod (L3))).
128 lines
5.0 KiB
Python
Generated
128 lines
5.0 KiB
Python
Generated
# coding=utf-8
|
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
# *** 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 ._inputs import *
|
|
|
|
__all__ = ['ProviderArgs', 'Provider']
|
|
|
|
@pulumi.input_type
|
|
class ProviderArgs:
|
|
def __init__(__self__, *,
|
|
host: Optional[pulumi.Input[builtins.str]] = None,
|
|
registries: Optional[pulumi.Input[Sequence[pulumi.Input['RegistryArgs']]]] = None):
|
|
"""
|
|
The set of arguments for constructing a Provider resource.
|
|
:param pulumi.Input[builtins.str] host: The build daemon's address.
|
|
"""
|
|
if host is None:
|
|
host = (_utilities.get_env('DOCKER_HOST') or '')
|
|
if host is not None:
|
|
pulumi.set(__self__, "host", host)
|
|
if registries is not None:
|
|
pulumi.set(__self__, "registries", registries)
|
|
|
|
@property
|
|
@pulumi.getter
|
|
def host(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
"""
|
|
The build daemon's address.
|
|
"""
|
|
return pulumi.get(self, "host")
|
|
|
|
@host.setter
|
|
def host(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
pulumi.set(self, "host", value)
|
|
|
|
@property
|
|
@pulumi.getter
|
|
def registries(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['RegistryArgs']]]]:
|
|
return pulumi.get(self, "registries")
|
|
|
|
@registries.setter
|
|
def registries(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['RegistryArgs']]]]):
|
|
pulumi.set(self, "registries", value)
|
|
|
|
|
|
class Provider(pulumi.ProviderResource):
|
|
|
|
pulumi_type = "pulumi:providers:docker-build"
|
|
|
|
@overload
|
|
def __init__(__self__,
|
|
resource_name: str,
|
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
host: Optional[pulumi.Input[builtins.str]] = None,
|
|
registries: Optional[pulumi.Input[Sequence[pulumi.Input[Union['RegistryArgs', 'RegistryArgsDict']]]]] = None,
|
|
__props__=None):
|
|
"""
|
|
Create a Docker-build resource with the given unique name, props, and options.
|
|
:param str resource_name: The name of the resource.
|
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
:param pulumi.Input[builtins.str] host: The build daemon's address.
|
|
"""
|
|
...
|
|
@overload
|
|
def __init__(__self__,
|
|
resource_name: str,
|
|
args: Optional[ProviderArgs] = None,
|
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
"""
|
|
Create a Docker-build resource with the given unique name, props, and options.
|
|
: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,
|
|
host: Optional[pulumi.Input[builtins.str]] = None,
|
|
registries: Optional[pulumi.Input[Sequence[pulumi.Input[Union['RegistryArgs', 'RegistryArgsDict']]]]] = 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)
|
|
|
|
if host is None:
|
|
host = (_utilities.get_env('DOCKER_HOST') or '')
|
|
__props__.__dict__["host"] = host
|
|
__props__.__dict__["registries"] = pulumi.Output.from_input(registries).apply(pulumi.runtime.to_json) if registries is not None else None
|
|
super(Provider, __self__).__init__(
|
|
'docker-build',
|
|
resource_name,
|
|
__props__,
|
|
opts)
|
|
|
|
@property
|
|
@pulumi.getter
|
|
def host(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
"""
|
|
The build daemon's address.
|
|
"""
|
|
return pulumi.get(self, "host")
|
|
|