@pulumi/artifactory 6.7.1 → 6.7.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/proxy.d.ts +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/artifactory",
3
- "version": "v6.7.1",
3
+ "version": "v6.7.2",
4
4
  "description": "A Pulumi package for creating and managing artifactory cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
package/proxy.d.ts CHANGED
@@ -65,11 +65,11 @@ export declare class Proxy extends pulumi.CustomResource {
65
65
  /**
66
66
  * The proxy domain/realm name.
67
67
  */
68
- readonly ntDomain: pulumi.Output<string | undefined>;
68
+ readonly ntDomain: pulumi.Output<string>;
69
69
  /**
70
70
  * The computer name of the machine (the machine connecting to the NTLM proxy).
71
71
  */
72
- readonly ntHost: pulumi.Output<string | undefined>;
72
+ readonly ntHost: pulumi.Output<string>;
73
73
  /**
74
74
  * The proxy password when authentication credentials are required.
75
75
  */
@@ -93,7 +93,7 @@ export declare class Proxy extends pulumi.CustomResource {
93
93
  /**
94
94
  * The proxy username when authentication credentials are required.
95
95
  */
96
- readonly username: pulumi.Output<string | undefined>;
96
+ readonly username: pulumi.Output<string>;
97
97
  /**
98
98
  * Create a Proxy resource with the given unique name, arguments, and options.
99
99
  *