@pulumi/aws 5.30.0-alpha.1676319993 → 5.30.0
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/acmpca/certificateAuthority.d.ts +4 -4
- package/acmpca/certificateAuthority.js +1 -1
- package/alb/loadBalancer.d.ts +3 -3
- package/applicationloadbalancing/loadBalancer.d.ts +3 -3
- package/cfg/recorderStatus.d.ts +1 -1
- package/cfg/recorderStatus.js +1 -1
- package/codebuild/webhook.d.ts +1 -1
- package/codebuild/webhook.js +1 -1
- package/dms/endpoint.d.ts +30 -9
- package/dms/endpoint.js.map +1 -1
- package/dynamodb/table.d.ts +8 -2
- package/dynamodb/table.js +1 -1
- package/dynamodb/table.js.map +1 -1
- package/dynamodb/tableReplica.d.ts +6 -0
- package/dynamodb/tableReplica.js +1 -1
- package/dynamodb/tableReplica.js.map +1 -1
- package/ec2/securityGroup.d.ts +2 -0
- package/ec2/securityGroup.js +2 -0
- package/ec2/securityGroup.js.map +1 -1
- package/ec2/vpcIpamPool.d.ts +15 -3
- package/ec2/vpcIpamPool.js +2 -0
- package/ec2/vpcIpamPool.js.map +1 -1
- package/ec2/vpcIpamPoolCidr.d.ts +24 -4
- package/ec2/vpcIpamPoolCidr.js +5 -1
- package/ec2/vpcIpamPoolCidr.js.map +1 -1
- package/ec2/vpcIpamPoolCidrAllocation.d.ts +3 -3
- package/elasticloadbalancingv2/loadBalancer.d.ts +3 -3
- package/evidently/index.d.ts +3 -0
- package/evidently/index.js +6 -1
- package/evidently/index.js.map +1 -1
- package/evidently/launch.d.ts +462 -0
- package/evidently/launch.js +339 -0
- package/evidently/launch.js.map +1 -0
- package/iam/serverCertificate.d.ts +1 -1
- package/lambda/eventSourceMapping.d.ts +3 -3
- package/lambda/function.d.ts +36 -12
- package/lambda/function.js +4 -0
- package/lambda/function.js.map +1 -1
- package/lambda/getFunction.d.ts +1 -1
- package/lb/loadBalancer.d.ts +3 -3
- package/lightsail/bucketAccessKey.d.ts +91 -0
- package/lightsail/bucketAccessKey.js +71 -0
- package/lightsail/bucketAccessKey.js.map +1 -0
- package/lightsail/index.d.ts +3 -0
- package/lightsail/index.js +6 -1
- package/lightsail/index.js.map +1 -1
- package/medialive/channel.d.ts +2 -2
- package/medialive/channel.js +2 -2
- package/networkmanager/coreNetwork.d.ts +73 -12
- package/networkmanager/coreNetwork.js +43 -8
- package/networkmanager/coreNetwork.js.map +1 -1
- package/networkmanager/coreNetworkPolicyAttachment.d.ts +137 -0
- package/networkmanager/coreNetworkPolicyAttachment.js +128 -0
- package/networkmanager/coreNetworkPolicyAttachment.js.map +1 -0
- package/networkmanager/index.d.ts +3 -0
- package/networkmanager/index.js +6 -1
- package/networkmanager/index.js.map +1 -1
- package/opsworks/permission.d.ts +1 -1
- package/opsworks/permission.js +3 -0
- package/opsworks/permission.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/rds/getCluster.d.ts +9 -0
- package/rds/getCluster.js.map +1 -1
- package/types/input.d.ts +114 -4
- package/types/output.d.ts +114 -4
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Provides a Core Network Policy Attachment resource. This puts a Core Network Policy to an existing Core Network and executes the change set, which deploys changes globally based on the policy submitted (Sets the policy to `LIVE`).
|
|
4
|
+
*
|
|
5
|
+
* > **NOTE on Core Networks and Policy Attachments:** For a given policy attachment, this resource is incompatible with using the `aws.networkmanager.CoreNetwork` resource `policyDocument` argument. When using that argument and this resource, both will attempt to manage the core network's policy document and Pulumi will show a permanent difference.
|
|
6
|
+
*
|
|
7
|
+
* > **NOTE:** Deleting this resource will not delete the current policy defined in this resource. Deleting this resource will also not revert the current `LIVE` policy to the previous version.
|
|
8
|
+
*
|
|
9
|
+
* ## Example Usage
|
|
10
|
+
* ### Basic
|
|
11
|
+
*
|
|
12
|
+
* ```typescript
|
|
13
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
14
|
+
* import * as aws from "@pulumi/aws";
|
|
15
|
+
*
|
|
16
|
+
* const exampleCoreNetwork = new aws.networkmanager.CoreNetwork("exampleCoreNetwork", {globalNetworkId: aws_networkmanager_global_network.example.id});
|
|
17
|
+
* const exampleCoreNetworkPolicyAttachment = new aws.networkmanager.CoreNetworkPolicyAttachment("exampleCoreNetworkPolicyAttachment", {
|
|
18
|
+
* coreNetworkId: exampleCoreNetwork.id,
|
|
19
|
+
* policyDocument: data.aws_networkmanager_core_network_policy_document.example.json,
|
|
20
|
+
* });
|
|
21
|
+
* ```
|
|
22
|
+
* ### With VPC Attachment
|
|
23
|
+
*
|
|
24
|
+
* The example below illustrates the scenario where your policy document has static routes pointing to VPC attachments and you want to attach your VPCs to the core network before applying the desired policy document. Set the `createBasePolicy` argument of the `aws.networkmanager.CoreNetwork` resource to `true` if your core network does not currently have any `LIVE` policies (e.g. this is the first `pulumi up` with the core network resource), since a `LIVE` policy is required before VPCs can be attached to the core network. Otherwise, if your core network already has a `LIVE` policy, you may exclude the `createBasePolicy` argument.
|
|
25
|
+
*
|
|
26
|
+
* ```typescript
|
|
27
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
28
|
+
* import * as aws from "@pulumi/aws";
|
|
29
|
+
*
|
|
30
|
+
* const exampleGlobalNetwork = new aws.networkmanager.GlobalNetwork("exampleGlobalNetwork", {});
|
|
31
|
+
* const exampleCoreNetwork = new aws.networkmanager.CoreNetwork("exampleCoreNetwork", {
|
|
32
|
+
* globalNetworkId: exampleGlobalNetwork.id,
|
|
33
|
+
* createBasePolicy: true,
|
|
34
|
+
* });
|
|
35
|
+
* const exampleVpcAttachment = new aws.networkmanager.VpcAttachment("exampleVpcAttachment", {
|
|
36
|
+
* coreNetworkId: exampleCoreNetwork.id,
|
|
37
|
+
* subnetArns: aws_subnet.example.map(__item => __item.arn),
|
|
38
|
+
* vpcArn: aws_vpc.example.arn,
|
|
39
|
+
* });
|
|
40
|
+
* const exampleCoreNetworkPolicyDocument = aws.networkmanager.getCoreNetworkPolicyDocumentOutput({
|
|
41
|
+
* coreNetworkConfigurations: [{
|
|
42
|
+
* asnRanges: ["65022-65534"],
|
|
43
|
+
* edgeLocations: [{
|
|
44
|
+
* location: "us-west-2",
|
|
45
|
+
* }],
|
|
46
|
+
* }],
|
|
47
|
+
* segments: [{
|
|
48
|
+
* name: "segment",
|
|
49
|
+
* }],
|
|
50
|
+
* segmentActions: [{
|
|
51
|
+
* action: "create-route",
|
|
52
|
+
* segment: "segment",
|
|
53
|
+
* destinationCidrBlocks: ["0.0.0.0/0"],
|
|
54
|
+
* destinations: [exampleVpcAttachment.id],
|
|
55
|
+
* }],
|
|
56
|
+
* });
|
|
57
|
+
* const exampleCoreNetworkPolicyAttachment = new aws.networkmanager.CoreNetworkPolicyAttachment("exampleCoreNetworkPolicyAttachment", {
|
|
58
|
+
* coreNetworkId: exampleCoreNetwork.id,
|
|
59
|
+
* policyDocument: exampleCoreNetworkPolicyDocument.apply(exampleCoreNetworkPolicyDocument => exampleCoreNetworkPolicyDocument.json),
|
|
60
|
+
* });
|
|
61
|
+
* ```
|
|
62
|
+
*
|
|
63
|
+
* ## Import
|
|
64
|
+
*
|
|
65
|
+
* `aws_networkmanager_core_network_policy_attachment` can be imported using the core network ID, e.g.
|
|
66
|
+
*
|
|
67
|
+
* ```sh
|
|
68
|
+
* $ pulumi import aws:networkmanager/coreNetworkPolicyAttachment:CoreNetworkPolicyAttachment example core-network-0d47f6t230mz46dy4
|
|
69
|
+
* ```
|
|
70
|
+
*/
|
|
71
|
+
export declare class CoreNetworkPolicyAttachment extends pulumi.CustomResource {
|
|
72
|
+
/**
|
|
73
|
+
* Get an existing CoreNetworkPolicyAttachment resource's state with the given name, ID, and optional extra
|
|
74
|
+
* properties used to qualify the lookup.
|
|
75
|
+
*
|
|
76
|
+
* @param name The _unique_ name of the resulting resource.
|
|
77
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
78
|
+
* @param state Any extra arguments used during the lookup.
|
|
79
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
80
|
+
*/
|
|
81
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: CoreNetworkPolicyAttachmentState, opts?: pulumi.CustomResourceOptions): CoreNetworkPolicyAttachment;
|
|
82
|
+
/**
|
|
83
|
+
* Returns true if the given object is an instance of CoreNetworkPolicyAttachment. This is designed to work even
|
|
84
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
85
|
+
*/
|
|
86
|
+
static isInstance(obj: any): obj is CoreNetworkPolicyAttachment;
|
|
87
|
+
/**
|
|
88
|
+
* The ID of the core network that a policy will be attached to and made `LIVE`.
|
|
89
|
+
*/
|
|
90
|
+
readonly coreNetworkId: pulumi.Output<string>;
|
|
91
|
+
/**
|
|
92
|
+
* Policy document for creating a core network. Note that updating this argument will result in the new policy document version being set as the `LATEST` and `LIVE` policy document. Refer to the [Core network policies documentation](https://docs.aws.amazon.com/network-manager/latest/cloudwan/cloudwan-policy-change-sets.html) for more information.
|
|
93
|
+
*/
|
|
94
|
+
readonly policyDocument: pulumi.Output<string>;
|
|
95
|
+
/**
|
|
96
|
+
* Current state of a core network.
|
|
97
|
+
*/
|
|
98
|
+
readonly state: pulumi.Output<string>;
|
|
99
|
+
/**
|
|
100
|
+
* Create a CoreNetworkPolicyAttachment resource with the given unique name, arguments, and options.
|
|
101
|
+
*
|
|
102
|
+
* @param name The _unique_ name of the resource.
|
|
103
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
104
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
105
|
+
*/
|
|
106
|
+
constructor(name: string, args: CoreNetworkPolicyAttachmentArgs, opts?: pulumi.CustomResourceOptions);
|
|
107
|
+
}
|
|
108
|
+
/**
|
|
109
|
+
* Input properties used for looking up and filtering CoreNetworkPolicyAttachment resources.
|
|
110
|
+
*/
|
|
111
|
+
export interface CoreNetworkPolicyAttachmentState {
|
|
112
|
+
/**
|
|
113
|
+
* The ID of the core network that a policy will be attached to and made `LIVE`.
|
|
114
|
+
*/
|
|
115
|
+
coreNetworkId?: pulumi.Input<string>;
|
|
116
|
+
/**
|
|
117
|
+
* Policy document for creating a core network. Note that updating this argument will result in the new policy document version being set as the `LATEST` and `LIVE` policy document. Refer to the [Core network policies documentation](https://docs.aws.amazon.com/network-manager/latest/cloudwan/cloudwan-policy-change-sets.html) for more information.
|
|
118
|
+
*/
|
|
119
|
+
policyDocument?: pulumi.Input<string>;
|
|
120
|
+
/**
|
|
121
|
+
* Current state of a core network.
|
|
122
|
+
*/
|
|
123
|
+
state?: pulumi.Input<string>;
|
|
124
|
+
}
|
|
125
|
+
/**
|
|
126
|
+
* The set of arguments for constructing a CoreNetworkPolicyAttachment resource.
|
|
127
|
+
*/
|
|
128
|
+
export interface CoreNetworkPolicyAttachmentArgs {
|
|
129
|
+
/**
|
|
130
|
+
* The ID of the core network that a policy will be attached to and made `LIVE`.
|
|
131
|
+
*/
|
|
132
|
+
coreNetworkId: pulumi.Input<string>;
|
|
133
|
+
/**
|
|
134
|
+
* Policy document for creating a core network. Note that updating this argument will result in the new policy document version being set as the `LATEST` and `LIVE` policy document. Refer to the [Core network policies documentation](https://docs.aws.amazon.com/network-manager/latest/cloudwan/cloudwan-policy-change-sets.html) for more information.
|
|
135
|
+
*/
|
|
136
|
+
policyDocument: pulumi.Input<string>;
|
|
137
|
+
}
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.CoreNetworkPolicyAttachment = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Provides a Core Network Policy Attachment resource. This puts a Core Network Policy to an existing Core Network and executes the change set, which deploys changes globally based on the policy submitted (Sets the policy to `LIVE`).
|
|
10
|
+
*
|
|
11
|
+
* > **NOTE on Core Networks and Policy Attachments:** For a given policy attachment, this resource is incompatible with using the `aws.networkmanager.CoreNetwork` resource `policyDocument` argument. When using that argument and this resource, both will attempt to manage the core network's policy document and Pulumi will show a permanent difference.
|
|
12
|
+
*
|
|
13
|
+
* > **NOTE:** Deleting this resource will not delete the current policy defined in this resource. Deleting this resource will also not revert the current `LIVE` policy to the previous version.
|
|
14
|
+
*
|
|
15
|
+
* ## Example Usage
|
|
16
|
+
* ### Basic
|
|
17
|
+
*
|
|
18
|
+
* ```typescript
|
|
19
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
20
|
+
* import * as aws from "@pulumi/aws";
|
|
21
|
+
*
|
|
22
|
+
* const exampleCoreNetwork = new aws.networkmanager.CoreNetwork("exampleCoreNetwork", {globalNetworkId: aws_networkmanager_global_network.example.id});
|
|
23
|
+
* const exampleCoreNetworkPolicyAttachment = new aws.networkmanager.CoreNetworkPolicyAttachment("exampleCoreNetworkPolicyAttachment", {
|
|
24
|
+
* coreNetworkId: exampleCoreNetwork.id,
|
|
25
|
+
* policyDocument: data.aws_networkmanager_core_network_policy_document.example.json,
|
|
26
|
+
* });
|
|
27
|
+
* ```
|
|
28
|
+
* ### With VPC Attachment
|
|
29
|
+
*
|
|
30
|
+
* The example below illustrates the scenario where your policy document has static routes pointing to VPC attachments and you want to attach your VPCs to the core network before applying the desired policy document. Set the `createBasePolicy` argument of the `aws.networkmanager.CoreNetwork` resource to `true` if your core network does not currently have any `LIVE` policies (e.g. this is the first `pulumi up` with the core network resource), since a `LIVE` policy is required before VPCs can be attached to the core network. Otherwise, if your core network already has a `LIVE` policy, you may exclude the `createBasePolicy` argument.
|
|
31
|
+
*
|
|
32
|
+
* ```typescript
|
|
33
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
34
|
+
* import * as aws from "@pulumi/aws";
|
|
35
|
+
*
|
|
36
|
+
* const exampleGlobalNetwork = new aws.networkmanager.GlobalNetwork("exampleGlobalNetwork", {});
|
|
37
|
+
* const exampleCoreNetwork = new aws.networkmanager.CoreNetwork("exampleCoreNetwork", {
|
|
38
|
+
* globalNetworkId: exampleGlobalNetwork.id,
|
|
39
|
+
* createBasePolicy: true,
|
|
40
|
+
* });
|
|
41
|
+
* const exampleVpcAttachment = new aws.networkmanager.VpcAttachment("exampleVpcAttachment", {
|
|
42
|
+
* coreNetworkId: exampleCoreNetwork.id,
|
|
43
|
+
* subnetArns: aws_subnet.example.map(__item => __item.arn),
|
|
44
|
+
* vpcArn: aws_vpc.example.arn,
|
|
45
|
+
* });
|
|
46
|
+
* const exampleCoreNetworkPolicyDocument = aws.networkmanager.getCoreNetworkPolicyDocumentOutput({
|
|
47
|
+
* coreNetworkConfigurations: [{
|
|
48
|
+
* asnRanges: ["65022-65534"],
|
|
49
|
+
* edgeLocations: [{
|
|
50
|
+
* location: "us-west-2",
|
|
51
|
+
* }],
|
|
52
|
+
* }],
|
|
53
|
+
* segments: [{
|
|
54
|
+
* name: "segment",
|
|
55
|
+
* }],
|
|
56
|
+
* segmentActions: [{
|
|
57
|
+
* action: "create-route",
|
|
58
|
+
* segment: "segment",
|
|
59
|
+
* destinationCidrBlocks: ["0.0.0.0/0"],
|
|
60
|
+
* destinations: [exampleVpcAttachment.id],
|
|
61
|
+
* }],
|
|
62
|
+
* });
|
|
63
|
+
* const exampleCoreNetworkPolicyAttachment = new aws.networkmanager.CoreNetworkPolicyAttachment("exampleCoreNetworkPolicyAttachment", {
|
|
64
|
+
* coreNetworkId: exampleCoreNetwork.id,
|
|
65
|
+
* policyDocument: exampleCoreNetworkPolicyDocument.apply(exampleCoreNetworkPolicyDocument => exampleCoreNetworkPolicyDocument.json),
|
|
66
|
+
* });
|
|
67
|
+
* ```
|
|
68
|
+
*
|
|
69
|
+
* ## Import
|
|
70
|
+
*
|
|
71
|
+
* `aws_networkmanager_core_network_policy_attachment` can be imported using the core network ID, e.g.
|
|
72
|
+
*
|
|
73
|
+
* ```sh
|
|
74
|
+
* $ pulumi import aws:networkmanager/coreNetworkPolicyAttachment:CoreNetworkPolicyAttachment example core-network-0d47f6t230mz46dy4
|
|
75
|
+
* ```
|
|
76
|
+
*/
|
|
77
|
+
class CoreNetworkPolicyAttachment extends pulumi.CustomResource {
|
|
78
|
+
/**
|
|
79
|
+
* Get an existing CoreNetworkPolicyAttachment resource's state with the given name, ID, and optional extra
|
|
80
|
+
* properties used to qualify the lookup.
|
|
81
|
+
*
|
|
82
|
+
* @param name The _unique_ name of the resulting resource.
|
|
83
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
84
|
+
* @param state Any extra arguments used during the lookup.
|
|
85
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
86
|
+
*/
|
|
87
|
+
static get(name, id, state, opts) {
|
|
88
|
+
return new CoreNetworkPolicyAttachment(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
89
|
+
}
|
|
90
|
+
/**
|
|
91
|
+
* Returns true if the given object is an instance of CoreNetworkPolicyAttachment. This is designed to work even
|
|
92
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
93
|
+
*/
|
|
94
|
+
static isInstance(obj) {
|
|
95
|
+
if (obj === undefined || obj === null) {
|
|
96
|
+
return false;
|
|
97
|
+
}
|
|
98
|
+
return obj['__pulumiType'] === CoreNetworkPolicyAttachment.__pulumiType;
|
|
99
|
+
}
|
|
100
|
+
constructor(name, argsOrState, opts) {
|
|
101
|
+
let resourceInputs = {};
|
|
102
|
+
opts = opts || {};
|
|
103
|
+
if (opts.id) {
|
|
104
|
+
const state = argsOrState;
|
|
105
|
+
resourceInputs["coreNetworkId"] = state ? state.coreNetworkId : undefined;
|
|
106
|
+
resourceInputs["policyDocument"] = state ? state.policyDocument : undefined;
|
|
107
|
+
resourceInputs["state"] = state ? state.state : undefined;
|
|
108
|
+
}
|
|
109
|
+
else {
|
|
110
|
+
const args = argsOrState;
|
|
111
|
+
if ((!args || args.coreNetworkId === undefined) && !opts.urn) {
|
|
112
|
+
throw new Error("Missing required property 'coreNetworkId'");
|
|
113
|
+
}
|
|
114
|
+
if ((!args || args.policyDocument === undefined) && !opts.urn) {
|
|
115
|
+
throw new Error("Missing required property 'policyDocument'");
|
|
116
|
+
}
|
|
117
|
+
resourceInputs["coreNetworkId"] = args ? args.coreNetworkId : undefined;
|
|
118
|
+
resourceInputs["policyDocument"] = args ? args.policyDocument : undefined;
|
|
119
|
+
resourceInputs["state"] = undefined /*out*/;
|
|
120
|
+
}
|
|
121
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
122
|
+
super(CoreNetworkPolicyAttachment.__pulumiType, name, resourceInputs, opts);
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
exports.CoreNetworkPolicyAttachment = CoreNetworkPolicyAttachment;
|
|
126
|
+
/** @internal */
|
|
127
|
+
CoreNetworkPolicyAttachment.__pulumiType = 'aws:networkmanager/coreNetworkPolicyAttachment:CoreNetworkPolicyAttachment';
|
|
128
|
+
//# sourceMappingURL=coreNetworkPolicyAttachment.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"coreNetworkPolicyAttachment.js","sourceRoot":"","sources":["../../networkmanager/coreNetworkPolicyAttachment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoEG;AACH,MAAa,2BAA4B,SAAQ,MAAM,CAAC,cAAc;IAClE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAwC,EAAE,IAAmC;QACtI,OAAO,IAAI,2BAA2B,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAClF,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,2BAA2B,CAAC,YAAY,CAAC;IAC5E,CAAC;IAuBD,YAAY,IAAY,EAAE,WAAgF,EAAE,IAAmC;QAC3I,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA2D,CAAC;YAC1E,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;SAC7D;aAAM;YACH,MAAM,IAAI,GAAG,WAA0D,CAAC;YACxE,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,aAAa,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC1D,MAAM,IAAI,KAAK,CAAC,2CAA2C,CAAC,CAAC;aAChE;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,cAAc,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC3D,MAAM,IAAI,KAAK,CAAC,4CAA4C,CAAC,CAAC;aACjE;YACD,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,OAAO,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAC/C;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,2BAA2B,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAChF,CAAC;;AAvEL,kEAwEC;AA1DG,gBAAgB;AACO,wCAAY,GAAG,4EAA4E,CAAC"}
|
|
@@ -10,6 +10,9 @@ export declare const Connection: typeof import("./connection").Connection;
|
|
|
10
10
|
export { CoreNetworkArgs, CoreNetworkState } from "./coreNetwork";
|
|
11
11
|
export type CoreNetwork = import("./coreNetwork").CoreNetwork;
|
|
12
12
|
export declare const CoreNetwork: typeof import("./coreNetwork").CoreNetwork;
|
|
13
|
+
export { CoreNetworkPolicyAttachmentArgs, CoreNetworkPolicyAttachmentState } from "./coreNetworkPolicyAttachment";
|
|
14
|
+
export type CoreNetworkPolicyAttachment = import("./coreNetworkPolicyAttachment").CoreNetworkPolicyAttachment;
|
|
15
|
+
export declare const CoreNetworkPolicyAttachment: typeof import("./coreNetworkPolicyAttachment").CoreNetworkPolicyAttachment;
|
|
13
16
|
export { CustomerGatewayAssociationArgs, CustomerGatewayAssociationState } from "./customerGatewayAssociation";
|
|
14
17
|
export type CustomerGatewayAssociation = import("./customerGatewayAssociation").CustomerGatewayAssociation;
|
|
15
18
|
export declare const CustomerGatewayAssociation: typeof import("./customerGatewayAssociation").CustomerGatewayAssociation;
|
package/networkmanager/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.VpcAttachment = exports.TransitGatewayRouteTableAttachment = exports.TransitGatewayRegistration = exports.TransitGatewayPeering = exports.TransitGatewayConnectPeerAssociation = exports.SiteToSiteVpnAttachment = exports.Site = exports.LinkAssociation = exports.Link = exports.GlobalNetwork = exports.getSitesOutput = exports.getSites = exports.getSiteOutput = exports.getSite = exports.getLinksOutput = exports.getLinks = exports.getLinkOutput = exports.getLink = exports.getGlobalNetworksOutput = exports.getGlobalNetworks = exports.getGlobalNetworkOutput = exports.getGlobalNetwork = exports.getDevicesOutput = exports.getDevices = exports.getDeviceOutput = exports.getDevice = exports.getCoreNetworkPolicyDocumentOutput = exports.getCoreNetworkPolicyDocument = exports.getConnectionsOutput = exports.getConnections = exports.getConnectionOutput = exports.getConnection = exports.Device = exports.CustomerGatewayAssociation = exports.CoreNetwork = exports.Connection = exports.ConnectAttachment = exports.AttachmentAccepter = void 0;
|
|
5
|
+
exports.VpcAttachment = exports.TransitGatewayRouteTableAttachment = exports.TransitGatewayRegistration = exports.TransitGatewayPeering = exports.TransitGatewayConnectPeerAssociation = exports.SiteToSiteVpnAttachment = exports.Site = exports.LinkAssociation = exports.Link = exports.GlobalNetwork = exports.getSitesOutput = exports.getSites = exports.getSiteOutput = exports.getSite = exports.getLinksOutput = exports.getLinks = exports.getLinkOutput = exports.getLink = exports.getGlobalNetworksOutput = exports.getGlobalNetworks = exports.getGlobalNetworkOutput = exports.getGlobalNetwork = exports.getDevicesOutput = exports.getDevices = exports.getDeviceOutput = exports.getDevice = exports.getCoreNetworkPolicyDocumentOutput = exports.getCoreNetworkPolicyDocument = exports.getConnectionsOutput = exports.getConnections = exports.getConnectionOutput = exports.getConnection = exports.Device = exports.CustomerGatewayAssociation = exports.CoreNetworkPolicyAttachment = exports.CoreNetwork = exports.Connection = exports.ConnectAttachment = exports.AttachmentAccepter = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
exports.AttachmentAccepter = null;
|
|
@@ -13,6 +13,8 @@ exports.Connection = null;
|
|
|
13
13
|
utilities.lazyLoad(exports, ["Connection"], () => require("./connection"));
|
|
14
14
|
exports.CoreNetwork = null;
|
|
15
15
|
utilities.lazyLoad(exports, ["CoreNetwork"], () => require("./coreNetwork"));
|
|
16
|
+
exports.CoreNetworkPolicyAttachment = null;
|
|
17
|
+
utilities.lazyLoad(exports, ["CoreNetworkPolicyAttachment"], () => require("./coreNetworkPolicyAttachment"));
|
|
16
18
|
exports.CustomerGatewayAssociation = null;
|
|
17
19
|
utilities.lazyLoad(exports, ["CustomerGatewayAssociation"], () => require("./customerGatewayAssociation"));
|
|
18
20
|
exports.Device = null;
|
|
@@ -82,6 +84,8 @@ const _module = {
|
|
|
82
84
|
return new exports.Connection(name, undefined, { urn });
|
|
83
85
|
case "aws:networkmanager/coreNetwork:CoreNetwork":
|
|
84
86
|
return new exports.CoreNetwork(name, undefined, { urn });
|
|
87
|
+
case "aws:networkmanager/coreNetworkPolicyAttachment:CoreNetworkPolicyAttachment":
|
|
88
|
+
return new exports.CoreNetworkPolicyAttachment(name, undefined, { urn });
|
|
85
89
|
case "aws:networkmanager/customerGatewayAssociation:CustomerGatewayAssociation":
|
|
86
90
|
return new exports.CustomerGatewayAssociation(name, undefined, { urn });
|
|
87
91
|
case "aws:networkmanager/device:Device":
|
|
@@ -115,6 +119,7 @@ pulumi.runtime.registerResourceModule("aws", "networkmanager/attachmentAccepter"
|
|
|
115
119
|
pulumi.runtime.registerResourceModule("aws", "networkmanager/connectAttachment", _module);
|
|
116
120
|
pulumi.runtime.registerResourceModule("aws", "networkmanager/connection", _module);
|
|
117
121
|
pulumi.runtime.registerResourceModule("aws", "networkmanager/coreNetwork", _module);
|
|
122
|
+
pulumi.runtime.registerResourceModule("aws", "networkmanager/coreNetworkPolicyAttachment", _module);
|
|
118
123
|
pulumi.runtime.registerResourceModule("aws", "networkmanager/customerGatewayAssociation", _module);
|
|
119
124
|
pulumi.runtime.registerResourceModule("aws", "networkmanager/device", _module);
|
|
120
125
|
pulumi.runtime.registerResourceModule("aws", "networkmanager/globalNetwork", _module);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../networkmanager/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../networkmanager/index.ts"],"names":[],"mappings":"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"}
|
package/opsworks/permission.d.ts
CHANGED
package/opsworks/permission.js
CHANGED
|
@@ -59,6 +59,9 @@ class Permission extends pulumi.CustomResource {
|
|
|
59
59
|
}
|
|
60
60
|
else {
|
|
61
61
|
const args = argsOrState;
|
|
62
|
+
if ((!args || args.stackId === undefined) && !opts.urn) {
|
|
63
|
+
throw new Error("Missing required property 'stackId'");
|
|
64
|
+
}
|
|
62
65
|
if ((!args || args.userArn === undefined) && !opts.urn) {
|
|
63
66
|
throw new Error("Missing required property 'userArn'");
|
|
64
67
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"permission.js","sourceRoot":"","sources":["../../opsworks/permission.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;GAiBG;AACH,MAAa,UAAW,SAAQ,MAAM,CAAC,cAAc;IACjD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAuB,EAAE,IAAmC;QACrH,OAAO,IAAI,UAAU,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACjE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,UAAU,CAAC,YAAY,CAAC;IAC3D,CAAC;IA+BD,YAAY,IAAY,EAAE,WAA8C,EAAE,IAAmC;QACzG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA0C,CAAC;YACzD,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;SACjE;aAAM;YACH,MAAM,IAAI,GAAG,WAAyC,CAAC;YACvD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACpD,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;aAC1D;YACD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;SAC/D;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,UAAU,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC/D,CAAC;;
|
|
1
|
+
{"version":3,"file":"permission.js","sourceRoot":"","sources":["../../opsworks/permission.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/aws",
|
|
3
|
-
"version": "v5.30.0
|
|
3
|
+
"version": "v5.30.0",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "tsc",
|
|
14
|
-
"install": "node scripts/install-pulumi-plugin.js resource aws v5.30.0
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource aws v5.30.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0",
|
package/package.json.dev
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/aws",
|
|
3
|
-
"version": "v5.30.0
|
|
3
|
+
"version": "v5.30.0",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "tsc",
|
|
14
|
-
"install": "node scripts/install-pulumi-plugin.js resource aws v5.30.0
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource aws v5.30.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0",
|
package/rds/getCluster.d.ts
CHANGED
|
@@ -22,6 +22,9 @@ export interface GetClusterArgs {
|
|
|
22
22
|
* Cluster identifier of the RDS cluster.
|
|
23
23
|
*/
|
|
24
24
|
clusterIdentifier: string;
|
|
25
|
+
/**
|
|
26
|
+
* A map of tags assigned to the resource.
|
|
27
|
+
*/
|
|
25
28
|
tags?: {
|
|
26
29
|
[key: string]: string;
|
|
27
30
|
};
|
|
@@ -62,6 +65,9 @@ export interface GetClusterResult {
|
|
|
62
65
|
readonly readerEndpoint: string;
|
|
63
66
|
readonly replicationSourceIdentifier: string;
|
|
64
67
|
readonly storageEncrypted: boolean;
|
|
68
|
+
/**
|
|
69
|
+
* A map of tags assigned to the resource.
|
|
70
|
+
*/
|
|
65
71
|
readonly tags: {
|
|
66
72
|
[key: string]: string;
|
|
67
73
|
};
|
|
@@ -90,6 +96,9 @@ export interface GetClusterOutputArgs {
|
|
|
90
96
|
* Cluster identifier of the RDS cluster.
|
|
91
97
|
*/
|
|
92
98
|
clusterIdentifier: pulumi.Input<string>;
|
|
99
|
+
/**
|
|
100
|
+
* A map of tags assigned to the resource.
|
|
101
|
+
*/
|
|
93
102
|
tags?: pulumi.Input<{
|
|
94
103
|
[key: string]: pulumi.Input<string>;
|
|
95
104
|
}>;
|
package/rds/getCluster.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getCluster.js","sourceRoot":"","sources":["../../rds/getCluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;GAaG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IAExE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,+BAA+B,EAAE;QAC1D,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,gCAOC;
|
|
1
|
+
{"version":3,"file":"getCluster.js","sourceRoot":"","sources":["../../rds/getCluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;GAaG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IAExE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,+BAA+B,EAAE;QAC1D,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,gCAOC;AA0DD;;;;;;;;;;;;;GAaG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAA2B;IACpF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,UAAU,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACrE,CAAC;AAFD,4CAEC"}
|
package/types/input.d.ts
CHANGED
|
@@ -1488,7 +1488,7 @@ export declare namespace apigateway {
|
|
|
1488
1488
|
}
|
|
1489
1489
|
interface RestApiEndpointConfiguration {
|
|
1490
1490
|
/**
|
|
1491
|
-
* List of endpoint types. This resource currently only supports managing a single value. Valid values: `EDGE`, `REGIONAL` or `PRIVATE`. If unspecified, defaults to `EDGE`.
|
|
1491
|
+
* List of endpoint types. This resource currently only supports managing a single value. Valid values: `EDGE`, `REGIONAL` or `PRIVATE`. If unspecified, defaults to `EDGE`. If set to `PRIVATE` recommend to set `putRestApiMode` = `merge` to not cause the endpoints and associated Route53 records to be deleted. Refer to the [documentation](https://docs.aws.amazon.com/apigateway/latest/developerguide/create-regional-api.html) for more information on the difference between edge-optimized and regional APIs.
|
|
1492
1492
|
*/
|
|
1493
1493
|
types: pulumi.Input<string>;
|
|
1494
1494
|
/**
|
|
@@ -6798,7 +6798,7 @@ export declare namespace autoscaling {
|
|
|
6798
6798
|
}
|
|
6799
6799
|
interface GroupMixedInstancesPolicyInstancesDistribution {
|
|
6800
6800
|
/**
|
|
6801
|
-
* Strategy to use when launching on-demand instances. Valid values: `prioritized`. Default: `prioritized`.
|
|
6801
|
+
* Strategy to use when launching on-demand instances. Valid values: `prioritized`, `lowest-price`. Default: `prioritized`.
|
|
6802
6802
|
*/
|
|
6803
6803
|
onDemandAllocationStrategy?: pulumi.Input<string>;
|
|
6804
6804
|
/**
|
|
@@ -14388,7 +14388,7 @@ export declare namespace dms {
|
|
|
14388
14388
|
*/
|
|
14389
14389
|
encryptionMode?: pulumi.Input<string>;
|
|
14390
14390
|
/**
|
|
14391
|
-
*
|
|
14391
|
+
* ARN or Id of KMS Key to use when `encryptionMode` is `SSE_KMS`.
|
|
14392
14392
|
*/
|
|
14393
14393
|
serverSideEncryptionKmsKeyId?: pulumi.Input<string>;
|
|
14394
14394
|
/**
|
|
@@ -14530,7 +14530,7 @@ export declare namespace dms {
|
|
|
14530
14530
|
*/
|
|
14531
14531
|
rowGroupLength?: pulumi.Input<number>;
|
|
14532
14532
|
/**
|
|
14533
|
-
*
|
|
14533
|
+
* ARN or Id of KMS Key to use when `encryptionMode` is `SSE_KMS`.
|
|
14534
14534
|
*/
|
|
14535
14535
|
serverSideEncryptionKmsKeyId?: pulumi.Input<string>;
|
|
14536
14536
|
/**
|
|
@@ -14659,6 +14659,10 @@ export declare namespace dynamodb {
|
|
|
14659
14659
|
enabled: pulumi.Input<boolean>;
|
|
14660
14660
|
}
|
|
14661
14661
|
interface TableReplica {
|
|
14662
|
+
/**
|
|
14663
|
+
* ARN of the table
|
|
14664
|
+
*/
|
|
14665
|
+
arn?: pulumi.Input<string>;
|
|
14662
14666
|
/**
|
|
14663
14667
|
* ARN of the CMK that should be used for the AWS KMS encryption. This argument should only be used if the key is different from the default KMS-managed DynamoDB key, `alias/aws/dynamodb`. **Note:** This attribute will _not_ be populated with the ARN of _default_ keys.
|
|
14664
14668
|
*/
|
|
@@ -14675,6 +14679,14 @@ export declare namespace dynamodb {
|
|
|
14675
14679
|
* Region name of the replica.
|
|
14676
14680
|
*/
|
|
14677
14681
|
regionName: pulumi.Input<string>;
|
|
14682
|
+
/**
|
|
14683
|
+
* ARN of the Table Stream. Only available when `streamEnabled = true`
|
|
14684
|
+
*/
|
|
14685
|
+
streamArn?: pulumi.Input<string>;
|
|
14686
|
+
/**
|
|
14687
|
+
* Timestamp, in ISO 8601 format, for this stream. Note that this timestamp is not a unique identifier for the stream on its own. However, the combination of AWS customer ID, table name and this field is guaranteed to be unique. It can be used for creating CloudWatch Alarms. Only available when `streamEnabled = true`.
|
|
14688
|
+
*/
|
|
14689
|
+
streamLabel?: pulumi.Input<string>;
|
|
14678
14690
|
}
|
|
14679
14691
|
interface TableServerSideEncryption {
|
|
14680
14692
|
/**
|
|
@@ -22402,6 +22414,100 @@ export declare namespace evidently {
|
|
|
22402
22414
|
*/
|
|
22403
22415
|
stringValue?: pulumi.Input<string>;
|
|
22404
22416
|
}
|
|
22417
|
+
interface LaunchExecution {
|
|
22418
|
+
/**
|
|
22419
|
+
* The date and time that the launch ended.
|
|
22420
|
+
*/
|
|
22421
|
+
endedTime?: pulumi.Input<string>;
|
|
22422
|
+
/**
|
|
22423
|
+
* The date and time that the launch started.
|
|
22424
|
+
*/
|
|
22425
|
+
startedTime?: pulumi.Input<string>;
|
|
22426
|
+
}
|
|
22427
|
+
interface LaunchGroup {
|
|
22428
|
+
/**
|
|
22429
|
+
* Specifies the description of the launch group.
|
|
22430
|
+
*/
|
|
22431
|
+
description?: pulumi.Input<string>;
|
|
22432
|
+
/**
|
|
22433
|
+
* Specifies the name of the feature that the launch is using.
|
|
22434
|
+
*/
|
|
22435
|
+
feature: pulumi.Input<string>;
|
|
22436
|
+
/**
|
|
22437
|
+
* Specifies the name of the lahnch group.
|
|
22438
|
+
*/
|
|
22439
|
+
name: pulumi.Input<string>;
|
|
22440
|
+
/**
|
|
22441
|
+
* Specifies the feature variation to use for this launch group.
|
|
22442
|
+
*/
|
|
22443
|
+
variation: pulumi.Input<string>;
|
|
22444
|
+
}
|
|
22445
|
+
interface LaunchMetricMonitor {
|
|
22446
|
+
/**
|
|
22447
|
+
* A block that defines the metric. Detailed below.
|
|
22448
|
+
*/
|
|
22449
|
+
metricDefinition: pulumi.Input<inputs.evidently.LaunchMetricMonitorMetricDefinition>;
|
|
22450
|
+
}
|
|
22451
|
+
interface LaunchMetricMonitorMetricDefinition {
|
|
22452
|
+
/**
|
|
22453
|
+
* Specifies the entity, such as a user or session, that does an action that causes a metric value to be recorded. An example is `userDetails.userID`.
|
|
22454
|
+
*/
|
|
22455
|
+
entityIdKey: pulumi.Input<string>;
|
|
22456
|
+
/**
|
|
22457
|
+
* Specifies The EventBridge event pattern that defines how the metric is recorded.
|
|
22458
|
+
*/
|
|
22459
|
+
eventPattern?: pulumi.Input<string>;
|
|
22460
|
+
/**
|
|
22461
|
+
* Specifies the name for the metric.
|
|
22462
|
+
*/
|
|
22463
|
+
name: pulumi.Input<string>;
|
|
22464
|
+
/**
|
|
22465
|
+
* Specifies a label for the units that the metric is measuring.
|
|
22466
|
+
*/
|
|
22467
|
+
unitLabel?: pulumi.Input<string>;
|
|
22468
|
+
/**
|
|
22469
|
+
* Specifies the value that is tracked to produce the metric.
|
|
22470
|
+
*/
|
|
22471
|
+
valueKey: pulumi.Input<string>;
|
|
22472
|
+
}
|
|
22473
|
+
interface LaunchScheduledSplitsConfig {
|
|
22474
|
+
/**
|
|
22475
|
+
* One or up to six blocks that define the traffic allocation percentages among the feature variations during each step of the launch. This also defines the start time of each step. Detailed below.
|
|
22476
|
+
*/
|
|
22477
|
+
steps: pulumi.Input<pulumi.Input<inputs.evidently.LaunchScheduledSplitsConfigStep>[]>;
|
|
22478
|
+
}
|
|
22479
|
+
interface LaunchScheduledSplitsConfigStep {
|
|
22480
|
+
/**
|
|
22481
|
+
* The traffic allocation percentages among the feature variations during one step of a launch. This is a set of key-value pairs. The keys are variation names. The values represent the percentage of traffic to allocate to that variation during this step. For more information, refer to the [AWS documentation for ScheduledSplitConfig groupWeights](https://docs.aws.amazon.com/cloudwatchevidently/latest/APIReference/API_ScheduledSplitConfig.html).
|
|
22482
|
+
*/
|
|
22483
|
+
groupWeights: pulumi.Input<{
|
|
22484
|
+
[key: string]: pulumi.Input<number>;
|
|
22485
|
+
}>;
|
|
22486
|
+
/**
|
|
22487
|
+
* One or up to six blocks that specify different traffic splits for one or more audience segments. A segment is a portion of your audience that share one or more characteristics. Examples could be Chrome browser users, users in Europe, or Firefox browser users in Europe who also fit other criteria that your application collects, such as age. Detailed below.
|
|
22488
|
+
*/
|
|
22489
|
+
segmentOverrides?: pulumi.Input<pulumi.Input<inputs.evidently.LaunchScheduledSplitsConfigStepSegmentOverride>[]>;
|
|
22490
|
+
/**
|
|
22491
|
+
* Specifies the date and time that this step of the launch starts.
|
|
22492
|
+
*/
|
|
22493
|
+
startTime: pulumi.Input<string>;
|
|
22494
|
+
}
|
|
22495
|
+
interface LaunchScheduledSplitsConfigStepSegmentOverride {
|
|
22496
|
+
/**
|
|
22497
|
+
* Specifies a number indicating the order to use to evaluate segment overrides, if there are more than one. Segment overrides with lower numbers are evaluated first.
|
|
22498
|
+
*/
|
|
22499
|
+
evaluationOrder: pulumi.Input<number>;
|
|
22500
|
+
/**
|
|
22501
|
+
* The name or ARN of the segment to use.
|
|
22502
|
+
*/
|
|
22503
|
+
segment: pulumi.Input<string>;
|
|
22504
|
+
/**
|
|
22505
|
+
* The traffic allocation percentages among the feature variations to assign to this segment. This is a set of key-value pairs. The keys are variation names. The values represent the amount of traffic to allocate to that variation for this segment. This is expressed in thousandths of a percent, so a weight of 50000 represents 50% of traffic.
|
|
22506
|
+
*/
|
|
22507
|
+
weights: pulumi.Input<{
|
|
22508
|
+
[key: string]: pulumi.Input<number>;
|
|
22509
|
+
}>;
|
|
22510
|
+
}
|
|
22405
22511
|
interface ProjectDataDelivery {
|
|
22406
22512
|
/**
|
|
22407
22513
|
* A block that defines the CloudWatch Log Group that stores the evaluation events. See below.
|
|
@@ -33304,6 +33410,10 @@ export declare namespace networkfirewall {
|
|
|
33304
33410
|
resourceArn: pulumi.Input<string>;
|
|
33305
33411
|
}
|
|
33306
33412
|
interface FirewallSubnetMapping {
|
|
33413
|
+
/**
|
|
33414
|
+
* The subnet's IP address type. Valida values: `"DUALSTACK"`, `"IPV4"`.
|
|
33415
|
+
*/
|
|
33416
|
+
ipAddressType?: pulumi.Input<string>;
|
|
33307
33417
|
/**
|
|
33308
33418
|
* The unique identifier for the subnet.
|
|
33309
33419
|
*/
|