Skip to content

Commit d6c8150

Browse files
authored
chore(dotnet): update documentation (#122)
Signed-off-by: Alexander Dahmen <[email protected]>
1 parent 115ece1 commit d6c8150

File tree

169 files changed

+690
-690
lines changed

Some content is hidden

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

169 files changed

+690
-690
lines changed

provider/cmd/pulumi-resource-stackit/schema.json

Lines changed: 280 additions & 280 deletions
Large diffs are not rendered by default.

sdk/dotnet/AffinityGroup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
namespace Pulumi.Stackit
1111
{
1212
/// <summary>
13-
/// Affinity Group schema. Must have a `region` specified in the provider configuration.
13+
/// Affinity Group schema. Must have a `Region` specified in the provider configuration.
1414
///
1515
/// ## Example Usage
1616
/// </summary>

sdk/dotnet/DnsRecordSet.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace Pulumi.Stackit
1818
public partial class DnsRecordSet : global::Pulumi.CustomResource
1919
{
2020
/// <summary>
21-
/// Specifies if the record set is active or not. Defaults to `true`
21+
/// Specifies if the record set is active or not. Defaults to `True`
2222
/// </summary>
2323
[Output("active")]
2424
public Output<bool> Active { get; private set; } = null!;
@@ -137,7 +137,7 @@ public static DnsRecordSet Get(string name, Input<string> id, DnsRecordSetState?
137137
public sealed class DnsRecordSetArgs : global::Pulumi.ResourceArgs
138138
{
139139
/// <summary>
140-
/// Specifies if the record set is active or not. Defaults to `true`
140+
/// Specifies if the record set is active or not. Defaults to `True`
141141
/// </summary>
142142
[Input("active")]
143143
public Input<bool>? Active { get; set; }
@@ -199,7 +199,7 @@ public DnsRecordSetArgs()
199199
public sealed class DnsRecordSetState : global::Pulumi.ResourceArgs
200200
{
201201
/// <summary>
202-
/// Specifies if the record set is active or not. Defaults to `true`
202+
/// Specifies if the record set is active or not. Defaults to `True`
203203
/// </summary>
204204
[Input("active")]
205205
public Input<bool>? Active { get; set; }

sdk/dotnet/DnsZone.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public partial class DnsZone : global::Pulumi.CustomResource
5757
public Output<int> ExpireTime { get; private set; } = null!;
5858

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

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

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

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

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

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

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

408408
/// <summary>
409-
/// Visibility of the zone. E.g. `public`.
409+
/// Visibility of the zone. E.g. `Public`.
410410
/// </summary>
411411
[Input("visibility")]
412412
public Input<string>? Visibility { get; set; }

sdk/dotnet/GetAffinityGroup.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace Pulumi.Stackit
1212
public static class GetAffinityGroup
1313
{
1414
/// <summary>
15-
/// Affinity Group schema. Must have a `region` specified in the provider configuration.
15+
/// Affinity Group schema. Must have a `Region` specified in the provider configuration.
1616
///
1717
/// ## Example Usage
1818
///
@@ -27,7 +27,7 @@ public static Task<GetAffinityGroupResult> InvokeAsync(GetAffinityGroupArgs args
2727
=> global::Pulumi.Deployment.Instance.InvokeAsync<GetAffinityGroupResult>("stackit:index/getAffinityGroup:getAffinityGroup", args ?? new GetAffinityGroupArgs(), options.WithDefaults());
2828

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

4444
/// <summary>
45-
/// Affinity Group schema. Must have a `region` specified in the provider configuration.
45+
/// Affinity Group schema. Must have a `Region` specified in the provider configuration.
4646
///
4747
/// ## Example Usage
4848
///
@@ -108,7 +108,7 @@ public sealed class GetAffinityGroupResult
108108
public readonly string AffinityGroupId;
109109
public readonly string Id;
110110
/// <summary>
111-
/// Affinity Group schema. Must have a `region` specified in the provider configuration.
111+
/// Affinity Group schema. Must have a `Region` specified in the provider configuration.
112112
/// </summary>
113113
public readonly ImmutableArray<string> Members;
114114
/// <summary>

sdk/dotnet/GetIaasProject.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace Pulumi.Stackit
1212
public static class GetIaasProject
1313
{
1414
/// <summary>
15-
/// Project details. Must have a `region` specified in the provider configuration.
15+
/// Project details. Must have a `Region` specified in the provider configuration.
1616
///
1717
/// ## Example Usage
1818
///
@@ -26,7 +26,7 @@ public static Task<GetIaasProjectResult> InvokeAsync(GetIaasProjectArgs args, In
2626
=> global::Pulumi.Deployment.Instance.InvokeAsync<GetIaasProjectResult>("stackit:index/getIaasProject:getIaasProject", args ?? new GetIaasProjectArgs(), options.WithDefaults());
2727

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

4242
/// <summary>
43-
/// Project details. Must have a `region` specified in the provider configuration.
43+
/// Project details. Must have a `Region` specified in the provider configuration.
4444
///
4545
/// ## Example Usage
4646
///

sdk/dotnet/GetImage.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace Pulumi.Stackit
1212
public static class GetImage
1313
{
1414
/// <summary>
15-
/// Image datasource schema. Must have a `region` specified in the provider configuration.
15+
/// Image datasource schema. Must have a `Region` specified in the provider configuration.
1616
///
1717
/// ## Example Usage
1818
///
@@ -27,7 +27,7 @@ public static Task<GetImageResult> InvokeAsync(GetImageArgs args, InvokeOptions?
2727
=> global::Pulumi.Deployment.Instance.InvokeAsync<GetImageResult>("stackit:index/getImage:getImage", args ?? new GetImageArgs(), options.WithDefaults());
2828

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

4444
/// <summary>
45-
/// Image datasource schema. Must have a `region` specified in the provider configuration.
45+
/// Image datasource schema. Must have a `Region` specified in the provider configuration.
4646
///
4747
/// ## Example Usage
4848
///

sdk/dotnet/GetImageV2.cs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ public static Output<GetImageV2Result> Invoke(GetImageV2InvokeArgs args, InvokeO
127127
public sealed class GetImageV2Args : global::Pulumi.InvokeArgs
128128
{
129129
/// <summary>
130-
/// Additional filtering options based on image properties. Can be used independently or in conjunction with `name` or `name_regex`.
130+
/// Additional filtering options based on image properties. Can be used independently or in conjunction with `Name` or `NameRegex`.
131131
/// </summary>
132132
[Input("filter")]
133133
public Inputs.GetImageV2FilterArgs? Filter { get; set; }
@@ -139,13 +139,13 @@ public sealed class GetImageV2Args : global::Pulumi.InvokeArgs
139139
public string? ImageId { get; set; }
140140

141141
/// <summary>
142-
/// Exact image name to match. Optionally applies a `filter` block to further refine results in case multiple images share the same name. The first match is returned, optionally sorted by name in ascending order. Cannot be used together with `name_regex`.
142+
/// Exact image name to match. Optionally applies a `Filter` block to further refine results in case multiple images share the same name. The first match is returned, optionally sorted by name in ascending order. Cannot be used together with `NameRegex`.
143143
/// </summary>
144144
[Input("name")]
145145
public string? Name { get; set; }
146146

147147
/// <summary>
148-
/// Regular expression to match against image names. Optionally applies a `filter` block to narrow down results when multiple image names match the regex. The first match is returned, optionally sorted by name in ascending order. Cannot be used together with `name`.
148+
/// Regular expression to match against image names. Optionally applies a `Filter` block to narrow down results when multiple image names match the regex. The first match is returned, optionally sorted by name in ascending order. Cannot be used together with `Name`.
149149
/// </summary>
150150
[Input("nameRegex")]
151151
public string? NameRegex { get; set; }
@@ -157,7 +157,7 @@ public sealed class GetImageV2Args : global::Pulumi.InvokeArgs
157157
public string ProjectId { get; set; } = null!;
158158

159159
/// <summary>
160-
/// If set to `true`, images are sorted in ascending lexicographical order by image name (such as `Ubuntu 18.04`, `Ubuntu 20.04`, `Ubuntu 22.04`) before selecting the first match. Defaults to `false` (descending such as `Ubuntu 22.04`, `Ubuntu 20.04`, `Ubuntu 18.04`).
160+
/// If set to `True`, images are sorted in ascending lexicographical order by image name (such as `Ubuntu 18.04`, `Ubuntu 20.04`, `Ubuntu 22.04`) before selecting the first match. Defaults to `False` (descending such as `Ubuntu 22.04`, `Ubuntu 20.04`, `Ubuntu 18.04`).
161161
/// </summary>
162162
[Input("sortAscending")]
163163
public bool? SortAscending { get; set; }
@@ -171,7 +171,7 @@ public GetImageV2Args()
171171
public sealed class GetImageV2InvokeArgs : global::Pulumi.InvokeArgs
172172
{
173173
/// <summary>
174-
/// Additional filtering options based on image properties. Can be used independently or in conjunction with `name` or `name_regex`.
174+
/// Additional filtering options based on image properties. Can be used independently or in conjunction with `Name` or `NameRegex`.
175175
/// </summary>
176176
[Input("filter")]
177177
public Input<Inputs.GetImageV2FilterInputArgs>? Filter { get; set; }
@@ -183,13 +183,13 @@ public sealed class GetImageV2InvokeArgs : global::Pulumi.InvokeArgs
183183
public Input<string>? ImageId { get; set; }
184184

185185
/// <summary>
186-
/// Exact image name to match. Optionally applies a `filter` block to further refine results in case multiple images share the same name. The first match is returned, optionally sorted by name in ascending order. Cannot be used together with `name_regex`.
186+
/// Exact image name to match. Optionally applies a `Filter` block to further refine results in case multiple images share the same name. The first match is returned, optionally sorted by name in ascending order. Cannot be used together with `NameRegex`.
187187
/// </summary>
188188
[Input("name")]
189189
public Input<string>? Name { get; set; }
190190

191191
/// <summary>
192-
/// Regular expression to match against image names. Optionally applies a `filter` block to narrow down results when multiple image names match the regex. The first match is returned, optionally sorted by name in ascending order. Cannot be used together with `name`.
192+
/// Regular expression to match against image names. Optionally applies a `Filter` block to narrow down results when multiple image names match the regex. The first match is returned, optionally sorted by name in ascending order. Cannot be used together with `Name`.
193193
/// </summary>
194194
[Input("nameRegex")]
195195
public Input<string>? NameRegex { get; set; }
@@ -201,7 +201,7 @@ public sealed class GetImageV2InvokeArgs : global::Pulumi.InvokeArgs
201201
public Input<string> ProjectId { get; set; } = null!;
202202

203203
/// <summary>
204-
/// If set to `true`, images are sorted in ascending lexicographical order by image name (such as `Ubuntu 18.04`, `Ubuntu 20.04`, `Ubuntu 22.04`) before selecting the first match. Defaults to `false` (descending such as `Ubuntu 22.04`, `Ubuntu 20.04`, `Ubuntu 18.04`).
204+
/// If set to `True`, images are sorted in ascending lexicographical order by image name (such as `Ubuntu 18.04`, `Ubuntu 20.04`, `Ubuntu 22.04`) before selecting the first match. Defaults to `False` (descending such as `Ubuntu 22.04`, `Ubuntu 20.04`, `Ubuntu 18.04`).
205205
/// </summary>
206206
[Input("sortAscending")]
207207
public Input<bool>? SortAscending { get; set; }
@@ -229,7 +229,7 @@ public sealed class GetImageV2Result
229229
/// </summary>
230230
public readonly string DiskFormat;
231231
/// <summary>
232-
/// Additional filtering options based on image properties. Can be used independently or in conjunction with `name` or `name_regex`.
232+
/// Additional filtering options based on image properties. Can be used independently or in conjunction with `Name` or `NameRegex`.
233233
/// </summary>
234234
public readonly Outputs.GetImageV2FilterResult? Filter;
235235
public readonly string Id;
@@ -250,11 +250,11 @@ public sealed class GetImageV2Result
250250
/// </summary>
251251
public readonly int MinRam;
252252
/// <summary>
253-
/// Exact image name to match. Optionally applies a `filter` block to further refine results in case multiple images share the same name. The first match is returned, optionally sorted by name in ascending order. Cannot be used together with `name_regex`.
253+
/// Exact image name to match. Optionally applies a `Filter` block to further refine results in case multiple images share the same name. The first match is returned, optionally sorted by name in ascending order. Cannot be used together with `NameRegex`.
254254
/// </summary>
255255
public readonly string? Name;
256256
/// <summary>
257-
/// Regular expression to match against image names. Optionally applies a `filter` block to narrow down results when multiple image names match the regex. The first match is returned, optionally sorted by name in ascending order. Cannot be used together with `name`.
257+
/// Regular expression to match against image names. Optionally applies a `Filter` block to narrow down results when multiple image names match the regex. The first match is returned, optionally sorted by name in ascending order. Cannot be used together with `Name`.
258258
/// </summary>
259259
public readonly string? NameRegex;
260260
/// <summary>
@@ -270,7 +270,7 @@ public sealed class GetImageV2Result
270270
/// </summary>
271271
public readonly string Scope;
272272
/// <summary>
273-
/// If set to `true`, images are sorted in ascending lexicographical order by image name (such as `Ubuntu 18.04`, `Ubuntu 20.04`, `Ubuntu 22.04`) before selecting the first match. Defaults to `false` (descending such as `Ubuntu 22.04`, `Ubuntu 20.04`, `Ubuntu 18.04`).
273+
/// If set to `True`, images are sorted in ascending lexicographical order by image name (such as `Ubuntu 18.04`, `Ubuntu 20.04`, `Ubuntu 22.04`) before selecting the first match. Defaults to `False` (descending such as `Ubuntu 22.04`, `Ubuntu 20.04`, `Ubuntu 18.04`).
274274
/// </summary>
275275
public readonly bool? SortAscending;
276276

sdk/dotnet/GetKeyPair.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace Pulumi.Stackit
1212
public static class GetKeyPair
1313
{
1414
/// <summary>
15-
/// Key pair resource schema. Must have a `region` specified in the provider configuration.
15+
/// Key pair resource schema. Must have a `Region` specified in the provider configuration.
1616
///
1717
/// ## Example Usage
1818
///
@@ -26,7 +26,7 @@ public static Task<GetKeyPairResult> InvokeAsync(GetKeyPairArgs args, InvokeOpti
2626
=> global::Pulumi.Deployment.Instance.InvokeAsync<GetKeyPairResult>("stackit:index/getKeyPair:getKeyPair", args ?? new GetKeyPairArgs(), options.WithDefaults());
2727

2828
/// <summary>
29-
/// Key pair resource schema. Must have a `region` specified in the provider configuration.
29+
/// Key pair resource schema. Must have a `Region` specified in the provider configuration.
3030
///
3131
/// ## Example Usage
3232
///
@@ -40,7 +40,7 @@ public static Output<GetKeyPairResult> Invoke(GetKeyPairInvokeArgs args, InvokeO
4040
=> global::Pulumi.Deployment.Instance.Invoke<GetKeyPairResult>("stackit:index/getKeyPair:getKeyPair", args ?? new GetKeyPairInvokeArgs(), options.WithDefaults());
4141

4242
/// <summary>
43-
/// Key pair resource schema. Must have a `region` specified in the provider configuration.
43+
/// Key pair resource schema. Must have a `Region` specified in the provider configuration.
4444
///
4545
/// ## Example Usage
4646
///

0 commit comments

Comments
 (0)