Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
560 changes: 280 additions & 280 deletions provider/cmd/pulumi-resource-stackit/schema.json

Large diffs are not rendered by default.

18 changes: 11 additions & 7 deletions provider/shim/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,15 @@ go 1.24.0

toolchain go1.24.2

require github.com/stackitcloud/terraform-provider-stackit v0.68.0
require (
github.com/stackitcloud/pulumi-stackit/provider/pkg/version v0.0.1
github.com/stackitcloud/terraform-provider-stackit v0.71.0
)

require (
github.com/hashicorp/hcl/v2 v2.24.0 // indirect
github.com/stackitcloud/stackit-sdk-go/services/iaasalpha v0.1.21-alpha // indirect
github.com/stackitcloud/stackit-sdk-go/services/kms v1.0.0 // indirect
github.com/stackitcloud/stackit-sdk-go/services/scf v0.2.1 // indirect
github.com/zclconf/go-cty v1.17.0 // indirect
)
Expand All @@ -23,13 +27,13 @@ require (
github.com/hashicorp/terraform-plugin-framework v1.16.1
github.com/hashicorp/terraform-plugin-framework-validators v0.19.0 // indirect
github.com/hashicorp/terraform-plugin-go v0.29.0 // indirect
github.com/hashicorp/terraform-plugin-log v0.9.0 // indirect
github.com/hashicorp/terraform-plugin-log v0.10.0 // indirect
github.com/mattn/go-colorable v0.1.14 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
github.com/stackitcloud/stackit-sdk-go/core v0.17.3 // indirect
github.com/stackitcloud/stackit-sdk-go/core v0.19.0 // indirect
github.com/stackitcloud/stackit-sdk-go/services/authorization v0.9.0 // indirect
github.com/stackitcloud/stackit-sdk-go/services/cdn v1.5.0 // indirect
github.com/stackitcloud/stackit-sdk-go/services/cdn v1.6.0 // indirect
github.com/stackitcloud/stackit-sdk-go/services/dns v0.17.1 // indirect
github.com/stackitcloud/stackit-sdk-go/services/git v0.8.0 // indirect
github.com/stackitcloud/stackit-sdk-go/services/iaas v0.31.0 // indirect
Expand All @@ -39,7 +43,7 @@ require (
github.com/stackitcloud/stackit-sdk-go/services/modelserving v0.6.0 // indirect
github.com/stackitcloud/stackit-sdk-go/services/mongodbflex v1.5.2 // indirect
github.com/stackitcloud/stackit-sdk-go/services/objectstorage v1.4.0 // indirect
github.com/stackitcloud/stackit-sdk-go/services/observability v0.14.0 // indirect
github.com/stackitcloud/stackit-sdk-go/services/observability v0.15.0 // indirect
github.com/stackitcloud/stackit-sdk-go/services/opensearch v0.24.1 // indirect
github.com/stackitcloud/stackit-sdk-go/services/postgresflex v1.2.1 // indirect
github.com/stackitcloud/stackit-sdk-go/services/rabbitmq v0.25.1 // indirect
Expand All @@ -55,6 +59,6 @@ require (
github.com/teambition/rrule-go v1.8.2 // indirect
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
golang.org/x/mod v0.28.0 // indirect
golang.org/x/sys v0.36.0 // indirect
golang.org/x/mod v0.30.0 // indirect
golang.org/x/sys v0.38.0 // indirect
)
93 changes: 78 additions & 15 deletions provider/shim/go.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion sdk/dotnet/AffinityGroup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
namespace Pulumi.Stackit
{
/// <summary>
/// Affinity Group schema. Must have a `region` specified in the provider configuration.
/// Affinity Group schema. Must have a `Region` specified in the provider configuration.
///
/// ## Example Usage
/// </summary>
Expand Down
6 changes: 3 additions & 3 deletions sdk/dotnet/DnsRecordSet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace Pulumi.Stackit
public partial class DnsRecordSet : global::Pulumi.CustomResource
{
/// <summary>
/// Specifies if the record set is active or not. Defaults to `true`
/// Specifies if the record set is active or not. Defaults to `True`
/// </summary>
[Output("active")]
public Output<bool> Active { get; private set; } = null!;
Expand Down Expand Up @@ -137,7 +137,7 @@ public static DnsRecordSet Get(string name, Input<string> id, DnsRecordSetState?
public sealed class DnsRecordSetArgs : global::Pulumi.ResourceArgs
{
/// <summary>
/// Specifies if the record set is active or not. Defaults to `true`
/// Specifies if the record set is active or not. Defaults to `True`
/// </summary>
[Input("active")]
public Input<bool>? Active { get; set; }
Expand Down Expand Up @@ -199,7 +199,7 @@ public DnsRecordSetArgs()
public sealed class DnsRecordSetState : global::Pulumi.ResourceArgs
{
/// <summary>
/// Specifies if the record set is active or not. Defaults to `true`
/// Specifies if the record set is active or not. Defaults to `True`
/// </summary>
[Input("active")]
public Input<bool>? Active { get; set; }
Expand Down
16 changes: 8 additions & 8 deletions sdk/dotnet/DnsZone.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public partial class DnsZone : global::Pulumi.CustomResource
public Output<int> ExpireTime { get; private set; } = null!;

/// <summary>
/// Specifies, if the zone is a reverse zone or not. Defaults to `false`
/// Specifies, if the zone is a reverse zone or not. Defaults to `False`
/// </summary>
[Output("isReverseZone")]
public Output<bool> IsReverseZone { get; private set; } = null!;
Expand Down Expand Up @@ -123,13 +123,13 @@ public partial class DnsZone : global::Pulumi.CustomResource
public Output<string> State { get; private set; } = null!;

/// <summary>
/// Zone type. Defaults to `primary`. Supported values are: `primary`, `secondary`.
/// Zone type. Defaults to `Primary`. Supported values are: `Primary`, `Secondary`.
/// </summary>
[Output("type")]
public Output<string> Type { get; private set; } = null!;

/// <summary>
/// Visibility of the zone. E.g. `public`.
/// Visibility of the zone. E.g. `Public`.
/// </summary>
[Output("visibility")]
public Output<string> Visibility { get; private set; } = null!;
Expand Down Expand Up @@ -227,7 +227,7 @@ public sealed class DnsZoneArgs : global::Pulumi.ResourceArgs
public Input<int>? ExpireTime { get; set; }

/// <summary>
/// Specifies, if the zone is a reverse zone or not. Defaults to `false`
/// Specifies, if the zone is a reverse zone or not. Defaults to `False`
/// </summary>
[Input("isReverseZone")]
public Input<bool>? IsReverseZone { get; set; }
Expand Down Expand Up @@ -275,7 +275,7 @@ public InputList<string> Primaries
public Input<int>? RetryTime { get; set; }

/// <summary>
/// Zone type. Defaults to `primary`. Supported values are: `primary`, `secondary`.
/// Zone type. Defaults to `Primary`. Supported values are: `Primary`, `Secondary`.
/// </summary>
[Input("type")]
public Input<string>? Type { get; set; }
Expand Down Expand Up @@ -328,7 +328,7 @@ public sealed class DnsZoneState : global::Pulumi.ResourceArgs
public Input<int>? ExpireTime { get; set; }

/// <summary>
/// Specifies, if the zone is a reverse zone or not. Defaults to `false`
/// Specifies, if the zone is a reverse zone or not. Defaults to `False`
/// </summary>
[Input("isReverseZone")]
public Input<bool>? IsReverseZone { get; set; }
Expand Down Expand Up @@ -400,13 +400,13 @@ public InputList<string> Primaries
public Input<string>? State { get; set; }

/// <summary>
/// Zone type. Defaults to `primary`. Supported values are: `primary`, `secondary`.
/// Zone type. Defaults to `Primary`. Supported values are: `Primary`, `Secondary`.
/// </summary>
[Input("type")]
public Input<string>? Type { get; set; }

/// <summary>
/// Visibility of the zone. E.g. `public`.
/// Visibility of the zone. E.g. `Public`.
/// </summary>
[Input("visibility")]
public Input<string>? Visibility { get; set; }
Expand Down
8 changes: 4 additions & 4 deletions sdk/dotnet/GetAffinityGroup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace Pulumi.Stackit
public static class GetAffinityGroup
{
/// <summary>
/// Affinity Group schema. Must have a `region` specified in the provider configuration.
/// Affinity Group schema. Must have a `Region` specified in the provider configuration.
///
/// ## Example Usage
///
Expand All @@ -27,7 +27,7 @@ public static Task<GetAffinityGroupResult> InvokeAsync(GetAffinityGroupArgs args
=> global::Pulumi.Deployment.Instance.InvokeAsync<GetAffinityGroupResult>("stackit:index/getAffinityGroup:getAffinityGroup", args ?? new GetAffinityGroupArgs(), options.WithDefaults());

/// <summary>
/// Affinity Group schema. Must have a `region` specified in the provider configuration.
/// Affinity Group schema. Must have a `Region` specified in the provider configuration.
///
/// ## Example Usage
///
Expand All @@ -42,7 +42,7 @@ public static Output<GetAffinityGroupResult> Invoke(GetAffinityGroupInvokeArgs a
=> global::Pulumi.Deployment.Instance.Invoke<GetAffinityGroupResult>("stackit:index/getAffinityGroup:getAffinityGroup", args ?? new GetAffinityGroupInvokeArgs(), options.WithDefaults());

/// <summary>
/// Affinity Group schema. Must have a `region` specified in the provider configuration.
/// Affinity Group schema. Must have a `Region` specified in the provider configuration.
///
/// ## Example Usage
///
Expand Down Expand Up @@ -108,7 +108,7 @@ public sealed class GetAffinityGroupResult
public readonly string AffinityGroupId;
public readonly string Id;
/// <summary>
/// Affinity Group schema. Must have a `region` specified in the provider configuration.
/// Affinity Group schema. Must have a `Region` specified in the provider configuration.
/// </summary>
public readonly ImmutableArray<string> Members;
/// <summary>
Expand Down
6 changes: 3 additions & 3 deletions sdk/dotnet/GetIaasProject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace Pulumi.Stackit
public static class GetIaasProject
{
/// <summary>
/// Project details. Must have a `region` specified in the provider configuration.
/// Project details. Must have a `Region` specified in the provider configuration.
///
/// ## Example Usage
///
Expand All @@ -26,7 +26,7 @@ public static Task<GetIaasProjectResult> InvokeAsync(GetIaasProjectArgs args, In
=> global::Pulumi.Deployment.Instance.InvokeAsync<GetIaasProjectResult>("stackit:index/getIaasProject:getIaasProject", args ?? new GetIaasProjectArgs(), options.WithDefaults());

/// <summary>
/// Project details. Must have a `region` specified in the provider configuration.
/// Project details. Must have a `Region` specified in the provider configuration.
///
/// ## Example Usage
///
Expand All @@ -40,7 +40,7 @@ public static Output<GetIaasProjectResult> Invoke(GetIaasProjectInvokeArgs args,
=> global::Pulumi.Deployment.Instance.Invoke<GetIaasProjectResult>("stackit:index/getIaasProject:getIaasProject", args ?? new GetIaasProjectInvokeArgs(), options.WithDefaults());

/// <summary>
/// Project details. Must have a `region` specified in the provider configuration.
/// Project details. Must have a `Region` specified in the provider configuration.
///
/// ## Example Usage
///
Expand Down
6 changes: 3 additions & 3 deletions sdk/dotnet/GetImage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace Pulumi.Stackit
public static class GetImage
{
/// <summary>
/// Image datasource schema. Must have a `region` specified in the provider configuration.
/// Image datasource schema. Must have a `Region` specified in the provider configuration.
///
/// ## Example Usage
///
Expand All @@ -27,7 +27,7 @@ public static Task<GetImageResult> InvokeAsync(GetImageArgs args, InvokeOptions?
=> global::Pulumi.Deployment.Instance.InvokeAsync<GetImageResult>("stackit:index/getImage:getImage", args ?? new GetImageArgs(), options.WithDefaults());

/// <summary>
/// Image datasource schema. Must have a `region` specified in the provider configuration.
/// Image datasource schema. Must have a `Region` specified in the provider configuration.
///
/// ## Example Usage
///
Expand All @@ -42,7 +42,7 @@ public static Output<GetImageResult> Invoke(GetImageInvokeArgs args, InvokeOptio
=> global::Pulumi.Deployment.Instance.Invoke<GetImageResult>("stackit:index/getImage:getImage", args ?? new GetImageInvokeArgs(), options.WithDefaults());

/// <summary>
/// Image datasource schema. Must have a `region` specified in the provider configuration.
/// Image datasource schema. Must have a `Region` specified in the provider configuration.
///
/// ## Example Usage
///
Expand Down
Loading
Loading