Skip to content

Commit 8f33409

Browse files
genisdclaude
andcommitted
chore: regenerate all SDKs and fix Makefile for nodejs build
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent ed3a769 commit 8f33409

File tree

83 files changed

+2001
-2454
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+2001
-2454
lines changed

Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ build_nodejs:: install_plugins tfgen # build the node sdk
6363
cd sdk/nodejs/ && \
6464
yarn install && \
6565
yarn run tsc && \
66-
cp -R scripts/ bin && \
6766
cp ../../README.md ../../LICENSE package.json yarn.lock ./bin/ && \
6867
sed -i.bak -e "s/\$${VERSION}/$(VERSION)/g" ./bin/package.json
6968

sdk/dotnet/Config/Config.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace Pulumiverse.Statuscake
88
{
99
public static class Config
1010
{
11-
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "IDE1006", Justification =
11+
[global::System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "IDE1006", Justification =
1212
"Double underscore prefix used to avoid conflicts with variable names.")]
1313
private sealed class __Value<T>
1414
{
@@ -30,7 +30,7 @@ public void Set(T value)
3030
}
3131
}
3232

33-
private static readonly Pulumi.Config __config = new Pulumi.Config("statuscake");
33+
private static readonly global::Pulumi.Config __config = new global::Pulumi.Config("statuscake");
3434

3535
private static readonly __Value<string?> _apiToken = new __Value<string?>(() => __config.Get("apiToken") ?? Utilities.GetEnv("STATUSCAKE_API_TOKEN"));
3636
/// <summary>

sdk/dotnet/ContactGroup.cs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
namespace Pulumiverse.Statuscake
1212
{
1313
[StatuscakeResourceType("statuscake:index/contactGroup:ContactGroup")]
14-
public partial class ContactGroup : Pulumi.CustomResource
14+
public partial class ContactGroup : global::Pulumi.CustomResource
1515
{
1616
/// <summary>
1717
/// List of email addresses
@@ -88,7 +88,7 @@ public static ContactGroup Get(string name, Input<string> id, ContactGroupState?
8888
}
8989
}
9090

91-
public sealed class ContactGroupArgs : Pulumi.ResourceArgs
91+
public sealed class ContactGroupArgs : global::Pulumi.ResourceArgs
9292
{
9393
[Input("emailAddresses")]
9494
private InputList<string>? _emailAddresses;
@@ -141,9 +141,10 @@ public InputList<string> MobileNumbers
141141
public ContactGroupArgs()
142142
{
143143
}
144+
public static new ContactGroupArgs Empty => new ContactGroupArgs();
144145
}
145146

146-
public sealed class ContactGroupState : Pulumi.ResourceArgs
147+
public sealed class ContactGroupState : global::Pulumi.ResourceArgs
147148
{
148149
[Input("emailAddresses")]
149150
private InputList<string>? _emailAddresses;
@@ -196,5 +197,6 @@ public InputList<string> MobileNumbers
196197
public ContactGroupState()
197198
{
198199
}
200+
public static new ContactGroupState Empty => new ContactGroupState();
199201
}
200202
}

sdk/dotnet/GetContactGroup.cs

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,31 +13,36 @@ namespace Pulumiverse.Statuscake
1313
public static class GetContactGroup
1414
{
1515
public static Task<GetContactGroupResult> InvokeAsync(GetContactGroupArgs args, InvokeOptions? options = null)
16-
=> Pulumi.Deployment.Instance.InvokeAsync<GetContactGroupResult>("statuscake:index/getContactGroup:getContactGroup", args ?? new GetContactGroupArgs(), options.WithDefaults());
16+
=> global::Pulumi.Deployment.Instance.InvokeAsync<GetContactGroupResult>("statuscake:index/getContactGroup:getContactGroup", args ?? new GetContactGroupArgs(), options.WithDefaults());
1717

1818
public static Output<GetContactGroupResult> Invoke(GetContactGroupInvokeArgs args, InvokeOptions? options = null)
19-
=> Pulumi.Deployment.Instance.Invoke<GetContactGroupResult>("statuscake:index/getContactGroup:getContactGroup", args ?? new GetContactGroupInvokeArgs(), options.WithDefaults());
19+
=> global::Pulumi.Deployment.Instance.Invoke<GetContactGroupResult>("statuscake:index/getContactGroup:getContactGroup", args ?? new GetContactGroupInvokeArgs(), options.WithDefaults());
20+
21+
public static Output<GetContactGroupResult> Invoke(GetContactGroupInvokeArgs args, InvokeOutputOptions options)
22+
=> global::Pulumi.Deployment.Instance.Invoke<GetContactGroupResult>("statuscake:index/getContactGroup:getContactGroup", args ?? new GetContactGroupInvokeArgs(), options.WithDefaults());
2023
}
2124

2225

23-
public sealed class GetContactGroupArgs : Pulumi.InvokeArgs
26+
public sealed class GetContactGroupArgs : global::Pulumi.InvokeArgs
2427
{
2528
[Input("id", required: true)]
2629
public string Id { get; set; } = null!;
2730

2831
public GetContactGroupArgs()
2932
{
3033
}
34+
public static new GetContactGroupArgs Empty => new GetContactGroupArgs();
3135
}
3236

33-
public sealed class GetContactGroupInvokeArgs : Pulumi.InvokeArgs
37+
public sealed class GetContactGroupInvokeArgs : global::Pulumi.InvokeArgs
3438
{
3539
[Input("id", required: true)]
3640
public Input<string> Id { get; set; } = null!;
3741

3842
public GetContactGroupInvokeArgs()
3943
{
4044
}
45+
public static new GetContactGroupInvokeArgs Empty => new GetContactGroupInvokeArgs();
4146
}
4247

4348

sdk/dotnet/GetPagespeedMonitoringLocations.cs

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,31 +13,36 @@ namespace Pulumiverse.Statuscake
1313
public static class GetPagespeedMonitoringLocations
1414
{
1515
public static Task<GetPagespeedMonitoringLocationsResult> InvokeAsync(GetPagespeedMonitoringLocationsArgs? args = null, InvokeOptions? options = null)
16-
=> Pulumi.Deployment.Instance.InvokeAsync<GetPagespeedMonitoringLocationsResult>("statuscake:index/getPagespeedMonitoringLocations:getPagespeedMonitoringLocations", args ?? new GetPagespeedMonitoringLocationsArgs(), options.WithDefaults());
16+
=> global::Pulumi.Deployment.Instance.InvokeAsync<GetPagespeedMonitoringLocationsResult>("statuscake:index/getPagespeedMonitoringLocations:getPagespeedMonitoringLocations", args ?? new GetPagespeedMonitoringLocationsArgs(), options.WithDefaults());
1717

1818
public static Output<GetPagespeedMonitoringLocationsResult> Invoke(GetPagespeedMonitoringLocationsInvokeArgs? args = null, InvokeOptions? options = null)
19-
=> Pulumi.Deployment.Instance.Invoke<GetPagespeedMonitoringLocationsResult>("statuscake:index/getPagespeedMonitoringLocations:getPagespeedMonitoringLocations", args ?? new GetPagespeedMonitoringLocationsInvokeArgs(), options.WithDefaults());
19+
=> global::Pulumi.Deployment.Instance.Invoke<GetPagespeedMonitoringLocationsResult>("statuscake:index/getPagespeedMonitoringLocations:getPagespeedMonitoringLocations", args ?? new GetPagespeedMonitoringLocationsInvokeArgs(), options.WithDefaults());
20+
21+
public static Output<GetPagespeedMonitoringLocationsResult> Invoke(GetPagespeedMonitoringLocationsInvokeArgs args, InvokeOutputOptions options)
22+
=> global::Pulumi.Deployment.Instance.Invoke<GetPagespeedMonitoringLocationsResult>("statuscake:index/getPagespeedMonitoringLocations:getPagespeedMonitoringLocations", args ?? new GetPagespeedMonitoringLocationsInvokeArgs(), options.WithDefaults());
2023
}
2124

2225

23-
public sealed class GetPagespeedMonitoringLocationsArgs : Pulumi.InvokeArgs
26+
public sealed class GetPagespeedMonitoringLocationsArgs : global::Pulumi.InvokeArgs
2427
{
2528
[Input("regionCode")]
2629
public string? RegionCode { get; set; }
2730

2831
public GetPagespeedMonitoringLocationsArgs()
2932
{
3033
}
34+
public static new GetPagespeedMonitoringLocationsArgs Empty => new GetPagespeedMonitoringLocationsArgs();
3135
}
3236

33-
public sealed class GetPagespeedMonitoringLocationsInvokeArgs : Pulumi.InvokeArgs
37+
public sealed class GetPagespeedMonitoringLocationsInvokeArgs : global::Pulumi.InvokeArgs
3438
{
3539
[Input("regionCode")]
3640
public Input<string>? RegionCode { get; set; }
3741

3842
public GetPagespeedMonitoringLocationsInvokeArgs()
3943
{
4044
}
45+
public static new GetPagespeedMonitoringLocationsInvokeArgs Empty => new GetPagespeedMonitoringLocationsInvokeArgs();
4146
}
4247

4348

sdk/dotnet/GetUptimeMonitoringLocations.cs

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,31 +13,36 @@ namespace Pulumiverse.Statuscake
1313
public static class GetUptimeMonitoringLocations
1414
{
1515
public static Task<GetUptimeMonitoringLocationsResult> InvokeAsync(GetUptimeMonitoringLocationsArgs? args = null, InvokeOptions? options = null)
16-
=> Pulumi.Deployment.Instance.InvokeAsync<GetUptimeMonitoringLocationsResult>("statuscake:index/getUptimeMonitoringLocations:getUptimeMonitoringLocations", args ?? new GetUptimeMonitoringLocationsArgs(), options.WithDefaults());
16+
=> global::Pulumi.Deployment.Instance.InvokeAsync<GetUptimeMonitoringLocationsResult>("statuscake:index/getUptimeMonitoringLocations:getUptimeMonitoringLocations", args ?? new GetUptimeMonitoringLocationsArgs(), options.WithDefaults());
1717

1818
public static Output<GetUptimeMonitoringLocationsResult> Invoke(GetUptimeMonitoringLocationsInvokeArgs? args = null, InvokeOptions? options = null)
19-
=> Pulumi.Deployment.Instance.Invoke<GetUptimeMonitoringLocationsResult>("statuscake:index/getUptimeMonitoringLocations:getUptimeMonitoringLocations", args ?? new GetUptimeMonitoringLocationsInvokeArgs(), options.WithDefaults());
19+
=> global::Pulumi.Deployment.Instance.Invoke<GetUptimeMonitoringLocationsResult>("statuscake:index/getUptimeMonitoringLocations:getUptimeMonitoringLocations", args ?? new GetUptimeMonitoringLocationsInvokeArgs(), options.WithDefaults());
20+
21+
public static Output<GetUptimeMonitoringLocationsResult> Invoke(GetUptimeMonitoringLocationsInvokeArgs args, InvokeOutputOptions options)
22+
=> global::Pulumi.Deployment.Instance.Invoke<GetUptimeMonitoringLocationsResult>("statuscake:index/getUptimeMonitoringLocations:getUptimeMonitoringLocations", args ?? new GetUptimeMonitoringLocationsInvokeArgs(), options.WithDefaults());
2023
}
2124

2225

23-
public sealed class GetUptimeMonitoringLocationsArgs : Pulumi.InvokeArgs
26+
public sealed class GetUptimeMonitoringLocationsArgs : global::Pulumi.InvokeArgs
2427
{
2528
[Input("regionCode")]
2629
public string? RegionCode { get; set; }
2730

2831
public GetUptimeMonitoringLocationsArgs()
2932
{
3033
}
34+
public static new GetUptimeMonitoringLocationsArgs Empty => new GetUptimeMonitoringLocationsArgs();
3135
}
3236

33-
public sealed class GetUptimeMonitoringLocationsInvokeArgs : Pulumi.InvokeArgs
37+
public sealed class GetUptimeMonitoringLocationsInvokeArgs : global::Pulumi.InvokeArgs
3438
{
3539
[Input("regionCode")]
3640
public Input<string>? RegionCode { get; set; }
3741

3842
public GetUptimeMonitoringLocationsInvokeArgs()
3943
{
4044
}
45+
public static new GetUptimeMonitoringLocationsInvokeArgs Empty => new GetUptimeMonitoringLocationsInvokeArgs();
4146
}
4247

4348

0 commit comments

Comments
 (0)