generated from pulumi/pulumi-tf-provider-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #139 from pulumiverse/dependabot/go_modules/provid…
…er/modules-06f0961511 provider(deps): bump github.com/dynatrace-oss/terraform-provider-dynatrace from 1.69.1 to 1.70.0 in /provider in the modules group
- Loading branch information
Showing
48 changed files
with
4,704 additions
and
80 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
// *** 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! *** | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Collections.Immutable; | ||
using System.Threading.Tasks; | ||
using Pulumi.Serialization; | ||
using Pulumi; | ||
|
||
namespace Pulumiverse.Dynatrace | ||
{ | ||
[DynatraceResourceType("dynatrace:index/cloudDevelopmentEnvironments:CloudDevelopmentEnvironments")] | ||
public partial class CloudDevelopmentEnvironments : global::Pulumi.CustomResource | ||
{ | ||
/// <summary> | ||
/// The URL to allow app development from. E.g. `https://*.my-company.my-cde-provider.com`. | ||
/// </summary> | ||
[Output("cloudDevelopmentEnvironments")] | ||
public Output<ImmutableArray<string>> Environments { get; private set; } = null!; | ||
|
||
|
||
/// <summary> | ||
/// Create a CloudDevelopmentEnvironments resource with the given unique name, arguments, and options. | ||
/// </summary> | ||
/// | ||
/// <param name="name">The unique name of the resource</param> | ||
/// <param name="args">The arguments used to populate this resource's properties</param> | ||
/// <param name="options">A bag of options that control this resource's behavior</param> | ||
public CloudDevelopmentEnvironments(string name, CloudDevelopmentEnvironmentsArgs? args = null, CustomResourceOptions? options = null) | ||
: base("dynatrace:index/cloudDevelopmentEnvironments:CloudDevelopmentEnvironments", name, args ?? new CloudDevelopmentEnvironmentsArgs(), MakeResourceOptions(options, "")) | ||
{ | ||
} | ||
|
||
private CloudDevelopmentEnvironments(string name, Input<string> id, CloudDevelopmentEnvironmentsState? state = null, CustomResourceOptions? options = null) | ||
: base("dynatrace:index/cloudDevelopmentEnvironments:CloudDevelopmentEnvironments", name, state, MakeResourceOptions(options, id)) | ||
{ | ||
} | ||
|
||
private static CustomResourceOptions MakeResourceOptions(CustomResourceOptions? options, Input<string>? id) | ||
{ | ||
var defaultOptions = new CustomResourceOptions | ||
{ | ||
Version = Utilities.Version, | ||
PluginDownloadURL = "github://api.github.com/pulumiverse", | ||
}; | ||
var merged = CustomResourceOptions.Merge(defaultOptions, options); | ||
// Override the ID if one was specified for consistency with other language SDKs. | ||
merged.Id = id ?? merged.Id; | ||
return merged; | ||
} | ||
/// <summary> | ||
/// Get an existing CloudDevelopmentEnvironments resource's state with the given name, ID, and optional extra | ||
/// properties used to qualify the lookup. | ||
/// </summary> | ||
/// | ||
/// <param name="name">The unique name of the resulting resource.</param> | ||
/// <param name="id">The unique provider ID of the resource to lookup.</param> | ||
/// <param name="state">Any extra arguments used during the lookup.</param> | ||
/// <param name="options">A bag of options that control this resource's behavior</param> | ||
public static CloudDevelopmentEnvironments Get(string name, Input<string> id, CloudDevelopmentEnvironmentsState? state = null, CustomResourceOptions? options = null) | ||
{ | ||
return new CloudDevelopmentEnvironments(name, id, state, options); | ||
} | ||
} | ||
|
||
public sealed class CloudDevelopmentEnvironmentsArgs : global::Pulumi.ResourceArgs | ||
{ | ||
[Input("cloudDevelopmentEnvironments")] | ||
private InputList<string>? _cloudDevelopmentEnvironments; | ||
|
||
/// <summary> | ||
/// The URL to allow app development from. E.g. `https://*.my-company.my-cde-provider.com`. | ||
/// </summary> | ||
public InputList<string> Environments | ||
{ | ||
get => _cloudDevelopmentEnvironments ?? (_cloudDevelopmentEnvironments = new InputList<string>()); | ||
set => _cloudDevelopmentEnvironments = value; | ||
} | ||
|
||
public CloudDevelopmentEnvironmentsArgs() | ||
{ | ||
} | ||
public static new CloudDevelopmentEnvironmentsArgs Empty => new CloudDevelopmentEnvironmentsArgs(); | ||
} | ||
|
||
public sealed class CloudDevelopmentEnvironmentsState : global::Pulumi.ResourceArgs | ||
{ | ||
[Input("cloudDevelopmentEnvironments")] | ||
private InputList<string>? _cloudDevelopmentEnvironments; | ||
|
||
/// <summary> | ||
/// The URL to allow app development from. E.g. `https://*.my-company.my-cde-provider.com`. | ||
/// </summary> | ||
public InputList<string> Environments | ||
{ | ||
get => _cloudDevelopmentEnvironments ?? (_cloudDevelopmentEnvironments = new InputList<string>()); | ||
set => _cloudDevelopmentEnvironments = value; | ||
} | ||
|
||
public CloudDevelopmentEnvironmentsState() | ||
{ | ||
} | ||
public static new CloudDevelopmentEnvironmentsState Empty => new CloudDevelopmentEnvironmentsState(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.