Skip to content

[DOWNSTREAM TEST][PLATFORM]Upgrade pulumi-terraform-bridge to v3.91.0 #1447

[DOWNSTREAM TEST][PLATFORM]Upgrade pulumi-terraform-bridge to v3.91.0

[DOWNSTREAM TEST][PLATFORM]Upgrade pulumi-terraform-bridge to v3.91.0 #1447

Triggered via pull request September 23, 2024 14:32
Status Failure
Total duration 28m 31s
Artifacts 7

run-acceptance-tests.yml

on: pull_request
prerequisites  /  prerequisites
16m 59s
prerequisites / prerequisites
comment-notification
0s
comment-notification
Matrix: build_provider / build_provider
Matrix: build_sdk / build_sdk
Matrix: test
sentinel
0s
sentinel
Fit to window
Zoom out
Zoom in

Annotations

18 errors
Unexpected file modified: sdk/python/pulumi_azure/__init__.py#L1
File modified: @@ -2522,6 +2522,14 @@ _utilities.register( "azure:compute/virtualMachine:VirtualMachine": "VirtualMachine" } }, + { + "pkg": "azure", + "mod": "compute/virtualMachineRestorePointCollection", + "fqn": "pulumi_azure.compute", + "classes": { + "azure:compute/virtualMachineRestorePointCollection:VirtualMachineRestorePointCollection": "VirtualMachineRestorePointCollection" + } + }, { "pkg": "azure", "mod": "compute/virtualMachineScaleSetExtension", @@ -6066,6 +6074,14 @@ _utilities.register( "azure:mysql/flexibleServer:FlexibleServer": "FlexibleServer" } }, + { + "pkg": "azure", + "mod": "mysql/flexibleServerActiveDirectoryAdministrator", + "fqn": "pulumi_azure.mysql", + "classes": { + "azure:mysql/flexibleServerActiveDirectoryAdministrator:FlexibleServerActiveDirectoryAdministrator": "FlexibleServerActiveDirectoryAdministrator" + } + }, { "pkg": "azure", "mod": "mysql/flexibleServerActiveDirectoryAdministratory",
Unexpected file modified: sdk/python/pulumi_azure/compute/__init__.py#L1
File modified: @@ -28,6 +28,7 @@ from .get_disk_access import * from .get_disk_encryption_set import * from .get_image import * from .get_images import * +from .get_ip_groups import * from .get_managed_disk import * from .get_orchestrated_virtual_machine_scale_set import * from .get_platform_image import * @@ -58,6 +59,7 @@ from .shared_image_version import * from .snapshot import * from .ssh_public_key import * from .virtual_machine import * +from .virtual_machine_restore_point_collection import * from .virtual_machine_scale_set_extension import * from .windows_virtual_machine import * from .windows_virtual_machine_scale_set import *
Unexpected file modified: sdk/python/pulumi_azure/dashboard/__init__.py#L1
File modified: @@ -5,7 +5,6 @@ from .. import _utilities import typing # Export this package's modules as members: -from .azurerm_portal_dashboard import * from .get_grafana import * from .grafana import * from ._inputs import *
Unexpected file deleted: sdk/python/pulumi_azure/dashboard/azurerm_portal_dashboard.py#L1
File deleted: # 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 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 __all__ = [ 'Azurerm_portal_dashboardResult', 'AwaitableAzurerm_portal_dashboardResult', 'azurerm_portal_dashboard', 'azurerm_portal_dashboard_output', ] warnings.warn("""azure.dashboard/azurerm_portal_dashboard.azurerm_portal_dashboard has been deprecated in favor of azure.portal/azurerm_portal_dashboard.azurerm_portal_dashboard""", DeprecationWarning) @pulumi.output_type class Azurerm_portal_dashboardResult: """ A collection of values returned by azurerm_portal_dashboard. """ def __init__(__self__, dashboard_properties=None, display_name=None, id=None, location=None, name=None, resource_group_name=None, tags=None): if dashboard_properties and not isinstance(dashboard_properties, str): raise TypeError("Expected argument 'dashboard_properties' to be a str") pulumi.set(__self__, "dashboard_properties", dashboard_properties) if display_name and not isinstance(display_name, str): raise TypeError("Expected argument 'display_name' to be a str") pulumi.set(__self__, "display_name", display_name) if id and not isinstance(id, str): raise TypeError("Expected argument 'id' to be a str") pulumi.set(__self__, "id", id) if location and not isinstance(location, str): raise TypeError("Expected argument 'location' to be a str") pulumi.set(__self__, "location", location) if name and not isinstance(name, str): raise TypeError("Expected argument 'name' to be a str") pulumi.set(__self__, "name", name) if resource_group_name and not isinstance(resource_group_name, str): raise TypeError("Expected argument 'resource_group_name' to be a str") pulumi.set(__self__, "resource_group_name", resource_group_name) if tags and not isinstance(tags, dict): raise TypeError("Expected argument 'tags' to be a dict") pulumi.set(__self__, "tags", tags) @Property @pulumi.getter(name="dashboardProperties") def dashboard_properties(self) -> str: """ JSON data representing dashboard body. """ return pulumi.get(self, "dashboard_properties") @Property @pulumi.getter(name="displayName") def display_name(self) -> Optional[str]: return pulumi.get(self, "display_name") @Property @pulumi.getter def id(self) -> str: """ The provider-assigned unique ID for this managed resource. """ return pulumi.get(self, "id") @Property @pulumi.getter def location(self) -> str: """ The Azure Region where the shared Azure Portal dashboard exists. """ return pulumi.get(self, "location") @Property @pulumi.getter def name(self) -> Optional[str]: return pulumi.get(self, "name") @Property @pulumi.getter(name="resourceGroupName") def resource_group_name(self) -> str: return pulumi.get(self, "resource_group_name") @Property @pulumi.getter def tags(self) -> Mapping[str, str]: """ A mapping of tags assigned to the shared Azure Portal dashboard. """ return pulumi.get(self, "tags") class AwaitableAzurerm_portal_dashboardResult(Azurerm_portal_dashboardResult): # pylint: disable=using-constant-test def __await__(self): if False: yield self return Azurerm_portal_dashboardResult( dashboard_properties=self.dashboard_properties, display_name=self.display_name
Unexpected file modified: sdk/python/pulumi_azure/mysql/__init__.py#L1
File modified: @@ -7,6 +7,7 @@ import typing # Export this package's modules as members: from .flexible_database import * from .flexible_server import * +from .flexible_server_active_directory_administrator import * from .flexible_server_active_directory_administratory import * from .flexible_server_configuration import * from .flexible_server_firewall_rule import *
Unexpected file modified: sdk/python/pulumi_azure/portal/__init__.py#L1
File modified: @@ -6,4 +6,5 @@ from .. import _utilities import typing # Export this package's modules as members: from .azurerm_portal_dashboard import * +from .get_dashboard import * from .portal_dashboard import *
Unexpected file added: sdk/python/pulumi_azure/compute/get_ip_groups.py#L1
File added: # 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 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 __all__ = [ 'GetIpGroupsResult', 'AwaitableGetIpGroupsResult', 'get_ip_groups', 'get_ip_groups_output', ] warnings.warn("""azure.compute/getipgroups.getIpGroups has been deprecated in favor of azure.network/getipgroups.getIpGroups""", DeprecationWarning) @pulumi.output_type class GetIpGroupsResult: """ A collection of values returned by getIpGroups. """ def __init__(__self__, id=None, ids=None, location=None, name=None, names=None, resource_group_name=None, tags=None): if id and not isinstance(id, str): raise TypeError("Expected argument 'id' to be a str") pulumi.set(__self__, "id", id) if ids and not isinstance(ids, list): raise TypeError("Expected argument 'ids' to be a list") pulumi.set(__self__, "ids", ids) if location and not isinstance(location, str): raise TypeError("Expected argument 'location' to be a str") pulumi.set(__self__, "location", location) if name and not isinstance(name, str): raise TypeError("Expected argument 'name' to be a str") pulumi.set(__self__, "name", name) if names and not isinstance(names, list): raise TypeError("Expected argument 'names' to be a list") pulumi.set(__self__, "names", names) if resource_group_name and not isinstance(resource_group_name, str): raise TypeError("Expected argument 'resource_group_name' to be a str") pulumi.set(__self__, "resource_group_name", resource_group_name) if tags and not isinstance(tags, dict): raise TypeError("Expected argument 'tags' to be a dict") pulumi.set(__self__, "tags", tags) @Property @pulumi.getter def id(self) -> str: """ The provider-assigned unique ID for this managed resource. """ return pulumi.get(self, "id") @Property @pulumi.getter def ids(self) -> Sequence[str]: """ A list of IP Group IDs. """ return pulumi.get(self, "ids") @Property @pulumi.getter def location(self) -> str: return pulumi.get(self, "location") @Property @pulumi.getter def name(self) -> str: return pulumi.get(self, "name") @Property @pulumi.getter def names(self) -> Sequence[str]: """ A list of IP Group Names. """ return pulumi.get(self, "names") @Property @pulumi.getter(name="resourceGroupName") def resource_group_name(self) -> str: return pulumi.get(self, "resource_group_name") @Property @pulumi.getter def tags(self) -> Mapping[str, str]: return pulumi.get(self, "tags") class AwaitableGetIpGroupsResult(GetIpGroupsResult): # pylint: disable=using-constant-test def __await__(self): if False: yield self return GetIpGroupsResult( id=self.id, ids=self.ids, location=self.location, name=self.name, names=self.names, resource_group_name=self.resource_group_name, tags=self.tags) def get_ip_groups(name: Optional[str] = None, resource_group_name: Optional[str] = None, opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetIpGroupsResult: """ Use this data source to access information about existing IP Groups. ## Example Usage ```python import pulumi import pulumi_azure as azure example = azure.network.get_ip_groups(name="existi
Unexpected file added: sdk/python/pulumi_azure/compute/virtual_machine_restore_point_collection.py#L1
File added: # 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 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 __all__ = ['VirtualMachineRestorePointCollectionArgs', 'VirtualMachineRestorePointCollection'] @pulumi.input_type class VirtualMachineRestorePointCollectionArgs: def __init__(__self__, *, resource_group_name: pulumi.Input[str], source_virtual_machine_id: pulumi.Input[str], location: Optional[pulumi.Input[str]] = None, name: Optional[pulumi.Input[str]] = None, tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None): """ The set of arguments for constructing a VirtualMachineRestorePointCollection resource. :param pulumi.Input[str] resource_group_name: The name of the Resource Group in which the Virtual Machine Restore Point Collection should exist. Changing this forces a new resource to be created. :param pulumi.Input[str] source_virtual_machine_id: The ID of the virtual machine that will be associated with this Virtual Machine Restore Point Collection. Changing this forces a new resource to be created. :param pulumi.Input[str] location: The Azure location where the Virtual Machine Restore Point Collection should exist. Changing this forces a new resource to be created. :param pulumi.Input[str] name: Specifies the name of the Virtual Machine Restore Point Collection. Changing this forces a new resource to be created. :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A mapping of tags which should be assigned to this Virtual Machine Restore Point Collection. """ pulumi.set(__self__, "resource_group_name", resource_group_name) pulumi.set(__self__, "source_virtual_machine_id", source_virtual_machine_id) if location is not None: pulumi.set(__self__, "location", location) if name is not None: pulumi.set(__self__, "name", name) if tags is not None: pulumi.set(__self__, "tags", tags) @Property @pulumi.getter(name="resourceGroupName") def resource_group_name(self) -> pulumi.Input[str]: """ The name of the Resource Group in which the Virtual Machine Restore Point Collection should exist. Changing this forces a new resource to be created. """ return pulumi.get(self, "resource_group_name") @resource_group_name.setter def resource_group_name(self, value: pulumi.Input[str]): pulumi.set(self, "resource_group_name", value) @Property @pulumi.getter(name="sourceVirtualMachineId") def source_virtual_machine_id(self) -> pulumi.Input[str]: """ The ID of the virtual machine that will be associated with this Virtual Machine Restore Point Collection. Changing this forces a new resource to be created. """ return pulumi.get(self, "source_virtual_machine_id") @source_virtual_machine_id.setter def source_virtual_machine_id(self, value: pulumi.Input[str]): pulumi.set(self, "source_virtual_machine_id", value) @Property @pulumi.getter def location(self) -> Optional[pulumi.Input[str]]: """ The Azure location where the Virtual Machine Restore Point Collection should exist. Changing this forces a new resource to be created. """ return pulumi.get(self, "location") @location.setter def location(self, value: Optional[pulumi.Input[str]]): pulumi.set(self, "location", value) @Property @pulumi.getter def name(self) -> Optional[pulumi.Input[str]]: """ Specifies the name of the Virtu
Unexpected file added: sdk/python/pulumi_azure/mysql/flexible_server_active_directory_administrator.py#L1
File added: # 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 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 __all__ = ['FlexibleServerActiveDirectoryAdministratorArgs', 'FlexibleServerActiveDirectoryAdministrator'] @pulumi.input_type class FlexibleServerActiveDirectoryAdministratorArgs: def __init__(__self__, *, identity_id: pulumi.Input[str], login: pulumi.Input[str], object_id: pulumi.Input[str], server_id: pulumi.Input[str], tenant_id: pulumi.Input[str]): """ The set of arguments for constructing a FlexibleServerActiveDirectoryAdministrator resource. """ pulumi.set(__self__, "identity_id", identity_id) pulumi.set(__self__, "login", login) pulumi.set(__self__, "object_id", object_id) pulumi.set(__self__, "server_id", server_id) pulumi.set(__self__, "tenant_id", tenant_id) @Property @pulumi.getter(name="identityId") def identity_id(self) -> pulumi.Input[str]: return pulumi.get(self, "identity_id") @identity_id.setter def identity_id(self, value: pulumi.Input[str]): pulumi.set(self, "identity_id", value) @Property @pulumi.getter def login(self) -> pulumi.Input[str]: return pulumi.get(self, "login") @login.setter def login(self, value: pulumi.Input[str]): pulumi.set(self, "login", value) @Property @pulumi.getter(name="objectId") def object_id(self) -> pulumi.Input[str]: return pulumi.get(self, "object_id") @object_id.setter def object_id(self, value: pulumi.Input[str]): pulumi.set(self, "object_id", value) @Property @pulumi.getter(name="serverId") def server_id(self) -> pulumi.Input[str]: return pulumi.get(self, "server_id") @server_id.setter def server_id(self, value: pulumi.Input[str]): pulumi.set(self, "server_id", value) @Property @pulumi.getter(name="tenantId") def tenant_id(self) -> pulumi.Input[str]: return pulumi.get(self, "tenant_id") @tenant_id.setter def tenant_id(self, value: pulumi.Input[str]): pulumi.set(self, "tenant_id", value) @pulumi.input_type class _FlexibleServerActiveDirectoryAdministratorState: def __init__(__self__, *, identity_id: Optional[pulumi.Input[str]] = None, login: Optional[pulumi.Input[str]] = None, object_id: Optional[pulumi.Input[str]] = None, server_id: Optional[pulumi.Input[str]] = None, tenant_id: Optional[pulumi.Input[str]] = None): """ Input properties used for looking up and filtering FlexibleServerActiveDirectoryAdministrator resources. """ if identity_id is not None: pulumi.set(__self__, "identity_id", identity_id) if login is not None: pulumi.set(__self__, "login", login) if object_id is not None: pulumi.set(__self__, "object_id", object_id) if server_id is not None: pulumi.set(__self__, "server_id", server_id) if tenant_id is not None: pulumi.set(__self__, "tenant_id", tenant_id) @Property @pulumi.getter(name="identityId") def identity_id(self) -> Optional[pulumi.Input[str]]: return pulumi.get(self, "identity_id") @identity_id.setter def identity_id(self, value: Optional[pulumi.Input[str]]): pulumi.set(self, "identity_id", value) @Property @pulumi.getter def login(self) -> Optional[pulumi.Input[str]]: return pulumi.get(self, "login") @login.setter
Unexpected file added: sdk/python/pulumi_azure/portal/get_dashboard.py#L1
File added: # 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 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 __all__ = [ 'GetDashboardResult', 'AwaitableGetDashboardResult', 'get_dashboard', 'get_dashboard_output', ] warnings.warn("""azure.portal/getdashboard.getDashboard has been deprecated in favor of azure.portal/azurerm_portal_dashboard.azurerm_portal_dashboard""", DeprecationWarning) @pulumi.output_type class GetDashboardResult: """ A collection of values returned by getDashboard. """ def __init__(__self__, dashboard_properties=None, display_name=None, id=None, location=None, name=None, resource_group_name=None, tags=None): if dashboard_properties and not isinstance(dashboard_properties, str): raise TypeError("Expected argument 'dashboard_properties' to be a str") pulumi.set(__self__, "dashboard_properties", dashboard_properties) if display_name and not isinstance(display_name, str): raise TypeError("Expected argument 'display_name' to be a str") pulumi.set(__self__, "display_name", display_name) if id and not isinstance(id, str): raise TypeError("Expected argument 'id' to be a str") pulumi.set(__self__, "id", id) if location and not isinstance(location, str): raise TypeError("Expected argument 'location' to be a str") pulumi.set(__self__, "location", location) if name and not isinstance(name, str): raise TypeError("Expected argument 'name' to be a str") pulumi.set(__self__, "name", name) if resource_group_name and not isinstance(resource_group_name, str): raise TypeError("Expected argument 'resource_group_name' to be a str") pulumi.set(__self__, "resource_group_name", resource_group_name) if tags and not isinstance(tags, dict): raise TypeError("Expected argument 'tags' to be a dict") pulumi.set(__self__, "tags", tags) @Property @pulumi.getter(name="dashboardProperties") def dashboard_properties(self) -> str: """ JSON data representing dashboard body. """ return pulumi.get(self, "dashboard_properties") @Property @pulumi.getter(name="displayName") def display_name(self) -> Optional[str]: return pulumi.get(self, "display_name") @Property @pulumi.getter def id(self) -> str: """ The provider-assigned unique ID for this managed resource. """ return pulumi.get(self, "id") @Property @pulumi.getter def location(self) -> str: """ The Azure Region where the shared Azure Portal dashboard exists. """ return pulumi.get(self, "location") @Property @pulumi.getter def name(self) -> Optional[str]: return pulumi.get(self, "name") @Property @pulumi.getter(name="resourceGroupName") def resource_group_name(self) -> str: return pulumi.get(self, "resource_group_name") @Property @pulumi.getter def tags(self) -> Mapping[str, str]: """ A mapping of tags assigned to the shared Azure Portal dashboard. """ return pulumi.get(self, "tags") class AwaitableGetDashboardResult(GetDashboardResult): # pylint: disable=using-constant-test def __await__(self): if False: yield self return GetDashboardResult( dashboard_properties=self.dashboard_properties, display_name=self.display_name, id=self.id, location=self.location, name=self.name, resource_group_name=self.resource
build_sdk / build_sdk (nodejs)
The job was canceled because "python" failed.
build_sdk / build_sdk (nodejs)
The operation was canceled.
build_sdk / build_sdk (java)
The job was canceled because "python" failed.
build_sdk / build_sdk (java)
The operation was canceled.
build_sdk / build_sdk (dotnet)
The job was canceled because "python" failed.
build_sdk / build_sdk (dotnet)
The operation was canceled.
build_sdk / build_sdk (go)
The job was canceled because "python" failed.
build_sdk / build_sdk (go)
The operation was canceled.

Artifacts

Produced during runtime
Name Size
azure-provider.tar.gz
259 MB
pulumi-resource-azure-v5.90.0-alpha.1727101939+51deb6a-darwin-amd64.tar.gz
126 MB
pulumi-resource-azure-v5.90.0-alpha.1727101939+51deb6a-darwin-arm64.tar.gz
124 MB
pulumi-resource-azure-v5.90.0-alpha.1727101939+51deb6a-linux-amd64.tar.gz
123 MB
pulumi-resource-azure-v5.90.0-alpha.1727101939+51deb6a-linux-arm64.tar.gz
119 MB
pulumi-resource-azure-v5.90.0-alpha.1727101939+51deb6a-windows-amd64.tar.gz
124 MB
schema-embed.json
1.96 MB