@pulumi/aws 6.35.0 → 6.36.0-alpha.1715612048
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.
- package/package.json +1 -1
- package/provider.d.ts +10 -10
package/package.json
CHANGED
package/provider.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ export declare class Provider extends pulumi.ProviderResource {
|
|
|
19
19
|
readonly accessKey: pulumi.Output<string | undefined>;
|
|
20
20
|
/**
|
|
21
21
|
* File containing custom root and intermediate certificates. Can also be configured using the `AWS_CA_BUNDLE` environment
|
|
22
|
-
* variable. (Setting `
|
|
22
|
+
* variable. (Setting `caBundle` in the shared config file is not supported.)
|
|
23
23
|
*/
|
|
24
24
|
readonly customCaBundle: pulumi.Output<string | undefined>;
|
|
25
25
|
/**
|
|
@@ -34,17 +34,17 @@ export declare class Provider extends pulumi.ProviderResource {
|
|
|
34
34
|
readonly ec2MetadataServiceEndpointMode: pulumi.Output<string | undefined>;
|
|
35
35
|
/**
|
|
36
36
|
* URL of a proxy to use for HTTP requests when accessing the AWS API. Can also be set using the `HTTP_PROXY` or
|
|
37
|
-
* `
|
|
37
|
+
* `httpProxy` environment variables.
|
|
38
38
|
*/
|
|
39
39
|
readonly httpProxy: pulumi.Output<string | undefined>;
|
|
40
40
|
/**
|
|
41
41
|
* URL of a proxy to use for HTTPS requests when accessing the AWS API. Can also be set using the `HTTPS_PROXY` or
|
|
42
|
-
* `
|
|
42
|
+
* `httpsProxy` environment variables.
|
|
43
43
|
*/
|
|
44
44
|
readonly httpsProxy: pulumi.Output<string | undefined>;
|
|
45
45
|
/**
|
|
46
46
|
* Comma-separated list of hosts that should not use HTTP or HTTPS proxies. Can also be set using the `NO_PROXY` or
|
|
47
|
-
* `
|
|
47
|
+
* `noProxy` environment variables.
|
|
48
48
|
*/
|
|
49
49
|
readonly noProxy: pulumi.Output<string | undefined>;
|
|
50
50
|
/**
|
|
@@ -63,7 +63,7 @@ export declare class Provider extends pulumi.ProviderResource {
|
|
|
63
63
|
/**
|
|
64
64
|
* Specifies whether S3 API calls in the `us-east-1` region use the legacy global endpoint or a regional endpoint. Valid
|
|
65
65
|
* values are `legacy` or `regional`. Can also be configured using the `AWS_S3_US_EAST_1_REGIONAL_ENDPOINT` environment
|
|
66
|
-
* variable or the `
|
|
66
|
+
* variable or the `s3UsEast1RegionalEndpoint` shared config file parameter
|
|
67
67
|
*/
|
|
68
68
|
readonly s3UsEast1RegionalEndpoint: pulumi.Output<string | undefined>;
|
|
69
69
|
/**
|
|
@@ -100,7 +100,7 @@ export interface ProviderArgs {
|
|
|
100
100
|
assumeRoleWithWebIdentity?: pulumi.Input<inputs.ProviderAssumeRoleWithWebIdentity>;
|
|
101
101
|
/**
|
|
102
102
|
* File containing custom root and intermediate certificates. Can also be configured using the `AWS_CA_BUNDLE` environment
|
|
103
|
-
* variable. (Setting `
|
|
103
|
+
* variable. (Setting `caBundle` in the shared config file is not supported.)
|
|
104
104
|
*/
|
|
105
105
|
customCaBundle?: pulumi.Input<string>;
|
|
106
106
|
/**
|
|
@@ -121,12 +121,12 @@ export interface ProviderArgs {
|
|
|
121
121
|
forbiddenAccountIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
122
122
|
/**
|
|
123
123
|
* URL of a proxy to use for HTTP requests when accessing the AWS API. Can also be set using the `HTTP_PROXY` or
|
|
124
|
-
* `
|
|
124
|
+
* `httpProxy` environment variables.
|
|
125
125
|
*/
|
|
126
126
|
httpProxy?: pulumi.Input<string>;
|
|
127
127
|
/**
|
|
128
128
|
* URL of a proxy to use for HTTPS requests when accessing the AWS API. Can also be set using the `HTTPS_PROXY` or
|
|
129
|
-
* `
|
|
129
|
+
* `httpsProxy` environment variables.
|
|
130
130
|
*/
|
|
131
131
|
httpsProxy?: pulumi.Input<string>;
|
|
132
132
|
/**
|
|
@@ -143,7 +143,7 @@ export interface ProviderArgs {
|
|
|
143
143
|
maxRetries?: pulumi.Input<number>;
|
|
144
144
|
/**
|
|
145
145
|
* Comma-separated list of hosts that should not use HTTP or HTTPS proxies. Can also be set using the `NO_PROXY` or
|
|
146
|
-
* `
|
|
146
|
+
* `noProxy` environment variables.
|
|
147
147
|
*/
|
|
148
148
|
noProxy?: pulumi.Input<string>;
|
|
149
149
|
/**
|
|
@@ -162,7 +162,7 @@ export interface ProviderArgs {
|
|
|
162
162
|
/**
|
|
163
163
|
* Specifies whether S3 API calls in the `us-east-1` region use the legacy global endpoint or a regional endpoint. Valid
|
|
164
164
|
* values are `legacy` or `regional`. Can also be configured using the `AWS_S3_US_EAST_1_REGIONAL_ENDPOINT` environment
|
|
165
|
-
* variable or the `
|
|
165
|
+
* variable or the `s3UsEast1RegionalEndpoint` shared config file parameter
|
|
166
166
|
*/
|
|
167
167
|
s3UsEast1RegionalEndpoint?: pulumi.Input<string>;
|
|
168
168
|
/**
|