@pulumi/alicloud 3.35.0-alpha.1679413983 → 3.35.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.
Files changed (39) hide show
  1. package/cen/getTransitRouteTableAggregations.d.ts +138 -0
  2. package/cen/getTransitRouteTableAggregations.js +74 -0
  3. package/cen/getTransitRouteTableAggregations.js.map +1 -0
  4. package/cen/index.d.ts +6 -0
  5. package/cen/index.js +11 -2
  6. package/cen/index.js.map +1 -1
  7. package/cen/transitRouteTableAggregation.d.ts +139 -0
  8. package/cen/transitRouteTableAggregation.js +103 -0
  9. package/cen/transitRouteTableAggregation.js.map +1 -0
  10. package/databasefilesystem/autoSnapShotPolicy.d.ts +163 -0
  11. package/databasefilesystem/autoSnapShotPolicy.js +110 -0
  12. package/databasefilesystem/autoSnapShotPolicy.js.map +1 -0
  13. package/databasefilesystem/getAutoSnapShotPolicies.d.ts +95 -0
  14. package/databasefilesystem/getAutoSnapShotPolicies.js +58 -0
  15. package/databasefilesystem/getAutoSnapShotPolicies.js.map +1 -0
  16. package/databasefilesystem/index.d.ts +6 -0
  17. package/databasefilesystem/index.js +9 -1
  18. package/databasefilesystem/index.js.map +1 -1
  19. package/ecs/ecsDiskAttachment.d.ts +1 -1
  20. package/ecs/ecsDiskAttachment.js +1 -1
  21. package/hbase/instance.d.ts +5 -5
  22. package/hbase/instance.js +2 -2
  23. package/log/store.d.ts +24 -0
  24. package/log/store.js +4 -0
  25. package/log/store.js.map +1 -1
  26. package/package.json +2 -2
  27. package/package.json.dev +2 -2
  28. package/rds/dbNode.d.ts +156 -0
  29. package/rds/dbNode.js +128 -0
  30. package/rds/dbNode.js.map +1 -0
  31. package/rds/getInstanceClasses.d.ts +2 -2
  32. package/rds/getZones.d.ts +2 -2
  33. package/rds/index.d.ts +3 -0
  34. package/rds/index.js +6 -1
  35. package/rds/index.js.map +1 -1
  36. package/rds/instance.d.ts +4 -1
  37. package/rds/instance.js.map +1 -1
  38. package/types/output.d.ts +90 -2
  39. package/vpn/connection.d.ts +6 -6
@@ -0,0 +1,138 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as outputs from "../types/output";
3
+ /**
4
+ * This data source provides the Cen Transit Route Table Aggregations of the current Alibaba Cloud user.
5
+ *
6
+ * > **NOTE:** Available in v1.202.0+.
7
+ *
8
+ * ## Example Usage
9
+ *
10
+ * Basic Usage
11
+ *
12
+ * ```typescript
13
+ * import * as pulumi from "@pulumi/pulumi";
14
+ * import * as alicloud from "@pulumi/alicloud";
15
+ *
16
+ * const ids = alicloud.cen.getTransitRouteTableAggregations({
17
+ * ids: ["example_id"],
18
+ * transitRouteTableId: "your_transit_route_table_id",
19
+ * });
20
+ * export const cenTransitRouterMulticastDomainId0 = ids.then(ids => ids.transitRouteTableAggregations?.[0]?.id);
21
+ * const nameRegex = alicloud.cen.getTransitRouteTableAggregations({
22
+ * nameRegex: "^my-name",
23
+ * transitRouteTableId: "your_transit_route_table_id",
24
+ * });
25
+ * export const cenTransitRouterMulticastDomainId1 = nameRegex.then(nameRegex => nameRegex.transitRouteTableAggregations?.[0]?.id);
26
+ * ```
27
+ */
28
+ export declare function getTransitRouteTableAggregations(args: GetTransitRouteTableAggregationsArgs, opts?: pulumi.InvokeOptions): Promise<GetTransitRouteTableAggregationsResult>;
29
+ /**
30
+ * A collection of arguments for invoking getTransitRouteTableAggregations.
31
+ */
32
+ export interface GetTransitRouteTableAggregationsArgs {
33
+ /**
34
+ * A list of Transit Route Table Aggregation IDs.
35
+ */
36
+ ids?: string[];
37
+ /**
38
+ * A regex string to filter results by Transit Route Table Aggregation name.
39
+ */
40
+ nameRegex?: string;
41
+ outputFile?: string;
42
+ /**
43
+ * The status of Transit Route Table Aggregation. Valid Values: `AllConfigured`, `Configuring`, `ConfigFailed`, `PartialConfigured`, `Deleting`.
44
+ */
45
+ status?: string;
46
+ /**
47
+ * The destination CIDR block of the aggregate route.
48
+ */
49
+ transitRouteTableAggregationCidr?: string;
50
+ /**
51
+ * The ID of the route table of the Enterprise Edition transit router.
52
+ */
53
+ transitRouteTableId: string;
54
+ }
55
+ /**
56
+ * A collection of values returned by getTransitRouteTableAggregations.
57
+ */
58
+ export interface GetTransitRouteTableAggregationsResult {
59
+ /**
60
+ * The provider-assigned unique ID for this managed resource.
61
+ */
62
+ readonly id: string;
63
+ readonly ids: string[];
64
+ readonly nameRegex?: string;
65
+ /**
66
+ * A list of Transit Route Table Aggregation names.
67
+ */
68
+ readonly names: string[];
69
+ readonly outputFile?: string;
70
+ /**
71
+ * The status of the Transit Route Table Aggregation.
72
+ */
73
+ readonly status?: string;
74
+ /**
75
+ * The destination CIDR block of the aggregate route.
76
+ */
77
+ readonly transitRouteTableAggregationCidr?: string;
78
+ /**
79
+ * A list of Cen Transit Route Table Aggregations. Each element contains the following attributes:
80
+ */
81
+ readonly transitRouteTableAggregations: outputs.cen.GetTransitRouteTableAggregationsTransitRouteTableAggregation[];
82
+ /**
83
+ * The ID of the route table of the Enterprise Edition transit router.
84
+ */
85
+ readonly transitRouteTableId: string;
86
+ }
87
+ /**
88
+ * This data source provides the Cen Transit Route Table Aggregations of the current Alibaba Cloud user.
89
+ *
90
+ * > **NOTE:** Available in v1.202.0+.
91
+ *
92
+ * ## Example Usage
93
+ *
94
+ * Basic Usage
95
+ *
96
+ * ```typescript
97
+ * import * as pulumi from "@pulumi/pulumi";
98
+ * import * as alicloud from "@pulumi/alicloud";
99
+ *
100
+ * const ids = alicloud.cen.getTransitRouteTableAggregations({
101
+ * ids: ["example_id"],
102
+ * transitRouteTableId: "your_transit_route_table_id",
103
+ * });
104
+ * export const cenTransitRouterMulticastDomainId0 = ids.then(ids => ids.transitRouteTableAggregations?.[0]?.id);
105
+ * const nameRegex = alicloud.cen.getTransitRouteTableAggregations({
106
+ * nameRegex: "^my-name",
107
+ * transitRouteTableId: "your_transit_route_table_id",
108
+ * });
109
+ * export const cenTransitRouterMulticastDomainId1 = nameRegex.then(nameRegex => nameRegex.transitRouteTableAggregations?.[0]?.id);
110
+ * ```
111
+ */
112
+ export declare function getTransitRouteTableAggregationsOutput(args: GetTransitRouteTableAggregationsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetTransitRouteTableAggregationsResult>;
113
+ /**
114
+ * A collection of arguments for invoking getTransitRouteTableAggregations.
115
+ */
116
+ export interface GetTransitRouteTableAggregationsOutputArgs {
117
+ /**
118
+ * A list of Transit Route Table Aggregation IDs.
119
+ */
120
+ ids?: pulumi.Input<pulumi.Input<string>[]>;
121
+ /**
122
+ * A regex string to filter results by Transit Route Table Aggregation name.
123
+ */
124
+ nameRegex?: pulumi.Input<string>;
125
+ outputFile?: pulumi.Input<string>;
126
+ /**
127
+ * The status of Transit Route Table Aggregation. Valid Values: `AllConfigured`, `Configuring`, `ConfigFailed`, `PartialConfigured`, `Deleting`.
128
+ */
129
+ status?: pulumi.Input<string>;
130
+ /**
131
+ * The destination CIDR block of the aggregate route.
132
+ */
133
+ transitRouteTableAggregationCidr?: pulumi.Input<string>;
134
+ /**
135
+ * The ID of the route table of the Enterprise Edition transit router.
136
+ */
137
+ transitRouteTableId: pulumi.Input<string>;
138
+ }
@@ -0,0 +1,74 @@
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.getTransitRouteTableAggregationsOutput = exports.getTransitRouteTableAggregations = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * This data source provides the Cen Transit Route Table Aggregations of the current Alibaba Cloud user.
10
+ *
11
+ * > **NOTE:** Available in v1.202.0+.
12
+ *
13
+ * ## Example Usage
14
+ *
15
+ * Basic Usage
16
+ *
17
+ * ```typescript
18
+ * import * as pulumi from "@pulumi/pulumi";
19
+ * import * as alicloud from "@pulumi/alicloud";
20
+ *
21
+ * const ids = alicloud.cen.getTransitRouteTableAggregations({
22
+ * ids: ["example_id"],
23
+ * transitRouteTableId: "your_transit_route_table_id",
24
+ * });
25
+ * export const cenTransitRouterMulticastDomainId0 = ids.then(ids => ids.transitRouteTableAggregations?.[0]?.id);
26
+ * const nameRegex = alicloud.cen.getTransitRouteTableAggregations({
27
+ * nameRegex: "^my-name",
28
+ * transitRouteTableId: "your_transit_route_table_id",
29
+ * });
30
+ * export const cenTransitRouterMulticastDomainId1 = nameRegex.then(nameRegex => nameRegex.transitRouteTableAggregations?.[0]?.id);
31
+ * ```
32
+ */
33
+ function getTransitRouteTableAggregations(args, opts) {
34
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
35
+ return pulumi.runtime.invoke("alicloud:cen/getTransitRouteTableAggregations:getTransitRouteTableAggregations", {
36
+ "ids": args.ids,
37
+ "nameRegex": args.nameRegex,
38
+ "outputFile": args.outputFile,
39
+ "status": args.status,
40
+ "transitRouteTableAggregationCidr": args.transitRouteTableAggregationCidr,
41
+ "transitRouteTableId": args.transitRouteTableId,
42
+ }, opts);
43
+ }
44
+ exports.getTransitRouteTableAggregations = getTransitRouteTableAggregations;
45
+ /**
46
+ * This data source provides the Cen Transit Route Table Aggregations of the current Alibaba Cloud user.
47
+ *
48
+ * > **NOTE:** Available in v1.202.0+.
49
+ *
50
+ * ## Example Usage
51
+ *
52
+ * Basic Usage
53
+ *
54
+ * ```typescript
55
+ * import * as pulumi from "@pulumi/pulumi";
56
+ * import * as alicloud from "@pulumi/alicloud";
57
+ *
58
+ * const ids = alicloud.cen.getTransitRouteTableAggregations({
59
+ * ids: ["example_id"],
60
+ * transitRouteTableId: "your_transit_route_table_id",
61
+ * });
62
+ * export const cenTransitRouterMulticastDomainId0 = ids.then(ids => ids.transitRouteTableAggregations?.[0]?.id);
63
+ * const nameRegex = alicloud.cen.getTransitRouteTableAggregations({
64
+ * nameRegex: "^my-name",
65
+ * transitRouteTableId: "your_transit_route_table_id",
66
+ * });
67
+ * export const cenTransitRouterMulticastDomainId1 = nameRegex.then(nameRegex => nameRegex.transitRouteTableAggregations?.[0]?.id);
68
+ * ```
69
+ */
70
+ function getTransitRouteTableAggregationsOutput(args, opts) {
71
+ return pulumi.output(args).apply((a) => getTransitRouteTableAggregations(a, opts));
72
+ }
73
+ exports.getTransitRouteTableAggregationsOutput = getTransitRouteTableAggregationsOutput;
74
+ //# sourceMappingURL=getTransitRouteTableAggregations.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getTransitRouteTableAggregations.js","sourceRoot":"","sources":["../../cen/getTransitRouteTableAggregations.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,SAAgB,gCAAgC,CAAC,IAA0C,EAAE,IAA2B;IAEpH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,gFAAgF,EAAE;QAC3G,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,kCAAkC,EAAE,IAAI,CAAC,gCAAgC;QACzE,qBAAqB,EAAE,IAAI,CAAC,mBAAmB;KAClD,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,4EAWC;AA6DD;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,SAAgB,sCAAsC,CAAC,IAAgD,EAAE,IAA2B;IAChI,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,gCAAgC,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC3F,CAAC;AAFD,wFAEC"}
package/cen/index.d.ts CHANGED
@@ -55,6 +55,9 @@ export declare const getRouteServicesOutput: typeof import("./getRouteServices")
55
55
  export { GetTrafficMarkingPoliciesArgs, GetTrafficMarkingPoliciesResult, GetTrafficMarkingPoliciesOutputArgs } from "./getTrafficMarkingPolicies";
56
56
  export declare const getTrafficMarkingPolicies: typeof import("./getTrafficMarkingPolicies").getTrafficMarkingPolicies;
57
57
  export declare const getTrafficMarkingPoliciesOutput: typeof import("./getTrafficMarkingPolicies").getTrafficMarkingPoliciesOutput;
58
+ export { GetTransitRouteTableAggregationsArgs, GetTransitRouteTableAggregationsResult, GetTransitRouteTableAggregationsOutputArgs } from "./getTransitRouteTableAggregations";
59
+ export declare const getTransitRouteTableAggregations: typeof import("./getTransitRouteTableAggregations").getTransitRouteTableAggregations;
60
+ export declare const getTransitRouteTableAggregationsOutput: typeof import("./getTransitRouteTableAggregations").getTransitRouteTableAggregationsOutput;
58
61
  export { GetTransitRouterAvailableResourcesArgs, GetTransitRouterAvailableResourcesResult, GetTransitRouterAvailableResourcesOutputArgs } from "./getTransitRouterAvailableResources";
59
62
  export declare const getTransitRouterAvailableResources: typeof import("./getTransitRouterAvailableResources").getTransitRouterAvailableResources;
60
63
  export declare const getTransitRouterAvailableResourcesOutput: typeof import("./getTransitRouterAvailableResources").getTransitRouterAvailableResourcesOutput;
@@ -142,6 +145,9 @@ export declare const RouteService: typeof import("./routeService").RouteService;
142
145
  export { TrafficMarkingPolicyArgs, TrafficMarkingPolicyState } from "./trafficMarkingPolicy";
143
146
  export type TrafficMarkingPolicy = import("./trafficMarkingPolicy").TrafficMarkingPolicy;
144
147
  export declare const TrafficMarkingPolicy: typeof import("./trafficMarkingPolicy").TrafficMarkingPolicy;
148
+ export { TransitRouteTableAggregationArgs, TransitRouteTableAggregationState } from "./transitRouteTableAggregation";
149
+ export type TransitRouteTableAggregation = import("./transitRouteTableAggregation").TransitRouteTableAggregation;
150
+ export declare const TransitRouteTableAggregation: typeof import("./transitRouteTableAggregation").TransitRouteTableAggregation;
145
151
  export { TransitRouterArgs, TransitRouterState } from "./transitRouter";
146
152
  export type TransitRouter = import("./transitRouter").TransitRouter;
147
153
  export declare const TransitRouter: typeof import("./transitRouter").TransitRouter;
package/cen/index.js CHANGED
@@ -2,8 +2,9 @@
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.getTransitRouterPrefixListAssociations = exports.getTransitRouterPeerAttachmentsOutput = exports.getTransitRouterPeerAttachments = exports.getTransitRouterMulticastDomainsOutput = exports.getTransitRouterMulticastDomains = exports.getTransitRouterMulticastDomainSourcesOutput = exports.getTransitRouterMulticastDomainSources = exports.getTransitRouterMulticastDomainPeerMembersOutput = exports.getTransitRouterMulticastDomainPeerMembers = exports.getTransitRouterMulticastDomainMembersOutput = exports.getTransitRouterMulticastDomainMembers = exports.getTransitRouterMulticastDomainAssociationsOutput = exports.getTransitRouterMulticastDomainAssociations = exports.getTransitRouterCidrsOutput = exports.getTransitRouterCidrs = exports.getTransitRouterAvailableResourcesOutput = exports.getTransitRouterAvailableResources = exports.getTrafficMarkingPoliciesOutput = exports.getTrafficMarkingPolicies = exports.getRouteServicesOutput = exports.getRouteServices = exports.getRouteMapsOutput = exports.getRouteMaps = exports.getRouteEntriesOutput = exports.getRouteEntries = exports.getRegionRouteEntriesOutput = exports.getRegionRouteEntries = exports.getPrivateZonesOutput = exports.getPrivateZones = exports.getInterRegionTrafficQosQueuesOutput = exports.getInterRegionTrafficQosQueues = exports.getInterRegionTrafficQosPoliciesOutput = exports.getInterRegionTrafficQosPolicies = exports.getInstancesOutput = exports.getInstances = exports.getInstanceAttachmentsOutput = exports.getInstanceAttachments = exports.getFlowlogsOutput = exports.getFlowlogs = exports.getChildInstanceRouteEntryToAttachmentsOutput = exports.getChildInstanceRouteEntryToAttachments = exports.getBandwidthPackagesOutput = exports.getBandwidthPackages = exports.getBandwidthLimitsOutput = exports.getBandwidthLimits = exports.FlowLog = exports.ChildInstanceRouteEntryToAttachment = exports.BandwidthPackageAttachment = exports.BandwidthPackage = exports.BandwidthLimit = void 0;
6
- exports.VbrHealthCheck = exports.TransitRouterVpnAttachment = exports.TransitRouterVpcAttachment = exports.TransitRouterVbrAttachment = exports.TransitRouterRouteTablePropagation = exports.TransitRouterRouteTableAssociation = exports.TransitRouterRouteTable = exports.TransitRouterRouteEntry = exports.TransitRouterPrefixListAssociation = exports.TransitRouterPeerAttachment = exports.TransitRouterMulticastDomainSource = exports.TransitRouterMulticastDomainPeerMember = exports.TransitRouterMulticastDomainMember = exports.TransitRouterMulticastDomainAssociation = exports.TransitRouterMulticastDomain = exports.TransitRouterGrantAttachment = exports.TransitRouterCidr = exports.TransitRouter = exports.TrafficMarkingPolicy = exports.RouteService = exports.RouteMap = exports.RouteEntry = exports.PrivateZone = exports.InterRegionTrafficQosQueue = exports.InterRegionTrafficQosPolicy = exports.InstanceGrant = exports.InstanceAttachment = exports.Instance = exports.getVbrHealthChecksOutput = exports.getVbrHealthChecks = exports.getTransitRoutersOutput = exports.getTransitRouters = exports.getTransitRouterVpnAttachmentsOutput = exports.getTransitRouterVpnAttachments = exports.getTransitRouterVpcAttachmentsOutput = exports.getTransitRouterVpcAttachments = exports.getTransitRouterVbrAttachmentsOutput = exports.getTransitRouterVbrAttachments = exports.getTransitRouterServiceOutput = exports.getTransitRouterService = exports.getTransitRouterRouteTablesOutput = exports.getTransitRouterRouteTables = exports.getTransitRouterRouteTablePropagationsOutput = exports.getTransitRouterRouteTablePropagations = exports.getTransitRouterRouteTableAssociationsOutput = exports.getTransitRouterRouteTableAssociations = exports.getTransitRouterRouteEntriesOutput = exports.getTransitRouterRouteEntries = exports.getTransitRouterPrefixListAssociationsOutput = void 0;
5
+ exports.getTransitRouterPeerAttachments = exports.getTransitRouterMulticastDomainsOutput = exports.getTransitRouterMulticastDomains = exports.getTransitRouterMulticastDomainSourcesOutput = exports.getTransitRouterMulticastDomainSources = exports.getTransitRouterMulticastDomainPeerMembersOutput = exports.getTransitRouterMulticastDomainPeerMembers = exports.getTransitRouterMulticastDomainMembersOutput = exports.getTransitRouterMulticastDomainMembers = exports.getTransitRouterMulticastDomainAssociationsOutput = exports.getTransitRouterMulticastDomainAssociations = exports.getTransitRouterCidrsOutput = exports.getTransitRouterCidrs = exports.getTransitRouterAvailableResourcesOutput = exports.getTransitRouterAvailableResources = exports.getTransitRouteTableAggregationsOutput = exports.getTransitRouteTableAggregations = exports.getTrafficMarkingPoliciesOutput = exports.getTrafficMarkingPolicies = exports.getRouteServicesOutput = exports.getRouteServices = exports.getRouteMapsOutput = exports.getRouteMaps = exports.getRouteEntriesOutput = exports.getRouteEntries = exports.getRegionRouteEntriesOutput = exports.getRegionRouteEntries = exports.getPrivateZonesOutput = exports.getPrivateZones = exports.getInterRegionTrafficQosQueuesOutput = exports.getInterRegionTrafficQosQueues = exports.getInterRegionTrafficQosPoliciesOutput = exports.getInterRegionTrafficQosPolicies = exports.getInstancesOutput = exports.getInstances = exports.getInstanceAttachmentsOutput = exports.getInstanceAttachments = exports.getFlowlogsOutput = exports.getFlowlogs = exports.getChildInstanceRouteEntryToAttachmentsOutput = exports.getChildInstanceRouteEntryToAttachments = exports.getBandwidthPackagesOutput = exports.getBandwidthPackages = exports.getBandwidthLimitsOutput = exports.getBandwidthLimits = exports.FlowLog = exports.ChildInstanceRouteEntryToAttachment = exports.BandwidthPackageAttachment = exports.BandwidthPackage = exports.BandwidthLimit = void 0;
6
+ exports.TransitRouterVpcAttachment = exports.TransitRouterVbrAttachment = exports.TransitRouterRouteTablePropagation = exports.TransitRouterRouteTableAssociation = exports.TransitRouterRouteTable = exports.TransitRouterRouteEntry = exports.TransitRouterPrefixListAssociation = exports.TransitRouterPeerAttachment = exports.TransitRouterMulticastDomainSource = exports.TransitRouterMulticastDomainPeerMember = exports.TransitRouterMulticastDomainMember = exports.TransitRouterMulticastDomainAssociation = exports.TransitRouterMulticastDomain = exports.TransitRouterGrantAttachment = exports.TransitRouterCidr = exports.TransitRouter = exports.TransitRouteTableAggregation = exports.TrafficMarkingPolicy = exports.RouteService = exports.RouteMap = exports.RouteEntry = exports.PrivateZone = exports.InterRegionTrafficQosQueue = exports.InterRegionTrafficQosPolicy = exports.InstanceGrant = exports.InstanceAttachment = exports.Instance = exports.getVbrHealthChecksOutput = exports.getVbrHealthChecks = exports.getTransitRoutersOutput = exports.getTransitRouters = exports.getTransitRouterVpnAttachmentsOutput = exports.getTransitRouterVpnAttachments = exports.getTransitRouterVpcAttachmentsOutput = exports.getTransitRouterVpcAttachments = exports.getTransitRouterVbrAttachmentsOutput = exports.getTransitRouterVbrAttachments = exports.getTransitRouterServiceOutput = exports.getTransitRouterService = exports.getTransitRouterRouteTablesOutput = exports.getTransitRouterRouteTables = exports.getTransitRouterRouteTablePropagationsOutput = exports.getTransitRouterRouteTablePropagations = exports.getTransitRouterRouteTableAssociationsOutput = exports.getTransitRouterRouteTableAssociations = exports.getTransitRouterRouteEntriesOutput = exports.getTransitRouterRouteEntries = exports.getTransitRouterPrefixListAssociationsOutput = exports.getTransitRouterPrefixListAssociations = exports.getTransitRouterPeerAttachmentsOutput = void 0;
7
+ exports.VbrHealthCheck = exports.TransitRouterVpnAttachment = void 0;
7
8
  const pulumi = require("@pulumi/pulumi");
8
9
  const utilities = require("../utilities");
9
10
  exports.BandwidthLimit = null;
@@ -58,6 +59,9 @@ utilities.lazyLoad(exports, ["getRouteServices", "getRouteServicesOutput"], () =
58
59
  exports.getTrafficMarkingPolicies = null;
59
60
  exports.getTrafficMarkingPoliciesOutput = null;
60
61
  utilities.lazyLoad(exports, ["getTrafficMarkingPolicies", "getTrafficMarkingPoliciesOutput"], () => require("./getTrafficMarkingPolicies"));
62
+ exports.getTransitRouteTableAggregations = null;
63
+ exports.getTransitRouteTableAggregationsOutput = null;
64
+ utilities.lazyLoad(exports, ["getTransitRouteTableAggregations", "getTransitRouteTableAggregationsOutput"], () => require("./getTransitRouteTableAggregations"));
61
65
  exports.getTransitRouterAvailableResources = null;
62
66
  exports.getTransitRouterAvailableResourcesOutput = null;
63
67
  utilities.lazyLoad(exports, ["getTransitRouterAvailableResources", "getTransitRouterAvailableResourcesOutput"], () => require("./getTransitRouterAvailableResources"));
@@ -135,6 +139,8 @@ exports.RouteService = null;
135
139
  utilities.lazyLoad(exports, ["RouteService"], () => require("./routeService"));
136
140
  exports.TrafficMarkingPolicy = null;
137
141
  utilities.lazyLoad(exports, ["TrafficMarkingPolicy"], () => require("./trafficMarkingPolicy"));
142
+ exports.TransitRouteTableAggregation = null;
143
+ utilities.lazyLoad(exports, ["TransitRouteTableAggregation"], () => require("./transitRouteTableAggregation"));
138
144
  exports.TransitRouter = null;
139
145
  utilities.lazyLoad(exports, ["TransitRouter"], () => require("./transitRouter"));
140
146
  exports.TransitRouterCidr = null;
@@ -205,6 +211,8 @@ const _module = {
205
211
  return new exports.RouteService(name, undefined, { urn });
206
212
  case "alicloud:cen/trafficMarkingPolicy:TrafficMarkingPolicy":
207
213
  return new exports.TrafficMarkingPolicy(name, undefined, { urn });
214
+ case "alicloud:cen/transitRouteTableAggregation:TransitRouteTableAggregation":
215
+ return new exports.TransitRouteTableAggregation(name, undefined, { urn });
208
216
  case "alicloud:cen/transitRouter:TransitRouter":
209
217
  return new exports.TransitRouter(name, undefined, { urn });
210
218
  case "alicloud:cen/transitRouterCidr:TransitRouterCidr":
@@ -261,6 +269,7 @@ pulumi.runtime.registerResourceModule("alicloud", "cen/routeEntry", _module);
261
269
  pulumi.runtime.registerResourceModule("alicloud", "cen/routeMap", _module);
262
270
  pulumi.runtime.registerResourceModule("alicloud", "cen/routeService", _module);
263
271
  pulumi.runtime.registerResourceModule("alicloud", "cen/trafficMarkingPolicy", _module);
272
+ pulumi.runtime.registerResourceModule("alicloud", "cen/transitRouteTableAggregation", _module);
264
273
  pulumi.runtime.registerResourceModule("alicloud", "cen/transitRouter", _module);
265
274
  pulumi.runtime.registerResourceModule("alicloud", "cen/transitRouterCidr", _module);
266
275
  pulumi.runtime.registerResourceModule("alicloud", "cen/transitRouterGrantAttachment", _module);
package/cen/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../cen/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../cen/index.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,139 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * Provides a Cloud Enterprise Network (CEN) Transit Route Table Aggregation resource.
4
+ *
5
+ * For information about Cloud Enterprise Network (CEN) Transit Route Table Aggregation and how to use it, see [What is Transit Route Table Aggregation](https://www.alibabacloud.com/help/en/cloud-enterprise-network/latest/api-doc-cbn-2017-09-12-api-doc-createtransitroutetableaggregation).
6
+ *
7
+ * > **NOTE:** Available in v1.202.0+.
8
+ *
9
+ * ## Example Usage
10
+ *
11
+ * Basic Usage
12
+ *
13
+ * ```typescript
14
+ * import * as pulumi from "@pulumi/pulumi";
15
+ * import * as alicloud from "@pulumi/alicloud";
16
+ *
17
+ * const defaultInstance = new alicloud.cen.Instance("defaultInstance", {cenInstanceName: "tf-example"});
18
+ * const defaultTransitRouter = new alicloud.cen.TransitRouter("defaultTransitRouter", {cenId: defaultInstance.id});
19
+ * const defaultTransitRouterRouteTable = new alicloud.cen.TransitRouterRouteTable("defaultTransitRouterRouteTable", {transitRouterId: defaultTransitRouter.transitRouterId});
20
+ * const defaultTransitRouteTableAggregation = new alicloud.cen.TransitRouteTableAggregation("defaultTransitRouteTableAggregation", {
21
+ * transitRouteTableId: defaultTransitRouterRouteTable.transitRouterRouteTableId,
22
+ * transitRouteTableAggregationCidr: "10.0.0.0/8",
23
+ * transitRouteTableAggregationScope: "VPC",
24
+ * transitRouteTableAggregationName: "tf-example-name",
25
+ * transitRouteTableAggregationDescription: "tf-example-description",
26
+ * });
27
+ * ```
28
+ *
29
+ * ## Import
30
+ *
31
+ * Cloud Enterprise Network (CEN) Transit Route Table Aggregation can be imported using the id, e.g.
32
+ *
33
+ * ```sh
34
+ * $ pulumi import alicloud:cen/transitRouteTableAggregation:TransitRouteTableAggregation example <transit_route_table_id>:<transit_route_table_aggregation_cidr>
35
+ * ```
36
+ */
37
+ export declare class TransitRouteTableAggregation extends pulumi.CustomResource {
38
+ /**
39
+ * Get an existing TransitRouteTableAggregation resource's state with the given name, ID, and optional extra
40
+ * properties used to qualify the lookup.
41
+ *
42
+ * @param name The _unique_ name of the resulting resource.
43
+ * @param id The _unique_ provider ID of the resource to lookup.
44
+ * @param state Any extra arguments used during the lookup.
45
+ * @param opts Optional settings to control the behavior of the CustomResource.
46
+ */
47
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: TransitRouteTableAggregationState, opts?: pulumi.CustomResourceOptions): TransitRouteTableAggregation;
48
+ /**
49
+ * Returns true if the given object is an instance of TransitRouteTableAggregation. This is designed to work even
50
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
51
+ */
52
+ static isInstance(obj: any): obj is TransitRouteTableAggregation;
53
+ /**
54
+ * The status of the Transit Route Table Aggregation.
55
+ */
56
+ readonly status: pulumi.Output<string>;
57
+ /**
58
+ * The destination CIDR block of the aggregate route. CIDR blocks that start with `0` or `100.64`. Multicast CIDR blocks, including `224.0.0.1` to `239.255.255.254`.
59
+ */
60
+ readonly transitRouteTableAggregationCidr: pulumi.Output<string>;
61
+ /**
62
+ * The description of the aggregate route.
63
+ */
64
+ readonly transitRouteTableAggregationDescription: pulumi.Output<string | undefined>;
65
+ /**
66
+ * The name of the aggregate route.
67
+ */
68
+ readonly transitRouteTableAggregationName: pulumi.Output<string | undefined>;
69
+ /**
70
+ * The scope of networks that you want to advertise the aggregate route. Valid Value: `VPC`.
71
+ */
72
+ readonly transitRouteTableAggregationScope: pulumi.Output<string>;
73
+ /**
74
+ * The ID of the route table of the Enterprise Edition transit router.
75
+ */
76
+ readonly transitRouteTableId: pulumi.Output<string>;
77
+ /**
78
+ * Create a TransitRouteTableAggregation resource with the given unique name, arguments, and options.
79
+ *
80
+ * @param name The _unique_ name of the resource.
81
+ * @param args The arguments to use to populate this resource's properties.
82
+ * @param opts A bag of options that control this resource's behavior.
83
+ */
84
+ constructor(name: string, args: TransitRouteTableAggregationArgs, opts?: pulumi.CustomResourceOptions);
85
+ }
86
+ /**
87
+ * Input properties used for looking up and filtering TransitRouteTableAggregation resources.
88
+ */
89
+ export interface TransitRouteTableAggregationState {
90
+ /**
91
+ * The status of the Transit Route Table Aggregation.
92
+ */
93
+ status?: pulumi.Input<string>;
94
+ /**
95
+ * The destination CIDR block of the aggregate route. CIDR blocks that start with `0` or `100.64`. Multicast CIDR blocks, including `224.0.0.1` to `239.255.255.254`.
96
+ */
97
+ transitRouteTableAggregationCidr?: pulumi.Input<string>;
98
+ /**
99
+ * The description of the aggregate route.
100
+ */
101
+ transitRouteTableAggregationDescription?: pulumi.Input<string>;
102
+ /**
103
+ * The name of the aggregate route.
104
+ */
105
+ transitRouteTableAggregationName?: pulumi.Input<string>;
106
+ /**
107
+ * The scope of networks that you want to advertise the aggregate route. Valid Value: `VPC`.
108
+ */
109
+ transitRouteTableAggregationScope?: pulumi.Input<string>;
110
+ /**
111
+ * The ID of the route table of the Enterprise Edition transit router.
112
+ */
113
+ transitRouteTableId?: pulumi.Input<string>;
114
+ }
115
+ /**
116
+ * The set of arguments for constructing a TransitRouteTableAggregation resource.
117
+ */
118
+ export interface TransitRouteTableAggregationArgs {
119
+ /**
120
+ * The destination CIDR block of the aggregate route. CIDR blocks that start with `0` or `100.64`. Multicast CIDR blocks, including `224.0.0.1` to `239.255.255.254`.
121
+ */
122
+ transitRouteTableAggregationCidr: pulumi.Input<string>;
123
+ /**
124
+ * The description of the aggregate route.
125
+ */
126
+ transitRouteTableAggregationDescription?: pulumi.Input<string>;
127
+ /**
128
+ * The name of the aggregate route.
129
+ */
130
+ transitRouteTableAggregationName?: pulumi.Input<string>;
131
+ /**
132
+ * The scope of networks that you want to advertise the aggregate route. Valid Value: `VPC`.
133
+ */
134
+ transitRouteTableAggregationScope: pulumi.Input<string>;
135
+ /**
136
+ * The ID of the route table of the Enterprise Edition transit router.
137
+ */
138
+ transitRouteTableId: pulumi.Input<string>;
139
+ }
@@ -0,0 +1,103 @@
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.TransitRouteTableAggregation = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * Provides a Cloud Enterprise Network (CEN) Transit Route Table Aggregation resource.
10
+ *
11
+ * For information about Cloud Enterprise Network (CEN) Transit Route Table Aggregation and how to use it, see [What is Transit Route Table Aggregation](https://www.alibabacloud.com/help/en/cloud-enterprise-network/latest/api-doc-cbn-2017-09-12-api-doc-createtransitroutetableaggregation).
12
+ *
13
+ * > **NOTE:** Available in v1.202.0+.
14
+ *
15
+ * ## Example Usage
16
+ *
17
+ * Basic Usage
18
+ *
19
+ * ```typescript
20
+ * import * as pulumi from "@pulumi/pulumi";
21
+ * import * as alicloud from "@pulumi/alicloud";
22
+ *
23
+ * const defaultInstance = new alicloud.cen.Instance("defaultInstance", {cenInstanceName: "tf-example"});
24
+ * const defaultTransitRouter = new alicloud.cen.TransitRouter("defaultTransitRouter", {cenId: defaultInstance.id});
25
+ * const defaultTransitRouterRouteTable = new alicloud.cen.TransitRouterRouteTable("defaultTransitRouterRouteTable", {transitRouterId: defaultTransitRouter.transitRouterId});
26
+ * const defaultTransitRouteTableAggregation = new alicloud.cen.TransitRouteTableAggregation("defaultTransitRouteTableAggregation", {
27
+ * transitRouteTableId: defaultTransitRouterRouteTable.transitRouterRouteTableId,
28
+ * transitRouteTableAggregationCidr: "10.0.0.0/8",
29
+ * transitRouteTableAggregationScope: "VPC",
30
+ * transitRouteTableAggregationName: "tf-example-name",
31
+ * transitRouteTableAggregationDescription: "tf-example-description",
32
+ * });
33
+ * ```
34
+ *
35
+ * ## Import
36
+ *
37
+ * Cloud Enterprise Network (CEN) Transit Route Table Aggregation can be imported using the id, e.g.
38
+ *
39
+ * ```sh
40
+ * $ pulumi import alicloud:cen/transitRouteTableAggregation:TransitRouteTableAggregation example <transit_route_table_id>:<transit_route_table_aggregation_cidr>
41
+ * ```
42
+ */
43
+ class TransitRouteTableAggregation extends pulumi.CustomResource {
44
+ /**
45
+ * Get an existing TransitRouteTableAggregation resource's state with the given name, ID, and optional extra
46
+ * properties used to qualify the lookup.
47
+ *
48
+ * @param name The _unique_ name of the resulting resource.
49
+ * @param id The _unique_ provider ID of the resource to lookup.
50
+ * @param state Any extra arguments used during the lookup.
51
+ * @param opts Optional settings to control the behavior of the CustomResource.
52
+ */
53
+ static get(name, id, state, opts) {
54
+ return new TransitRouteTableAggregation(name, state, Object.assign(Object.assign({}, opts), { id: id }));
55
+ }
56
+ /**
57
+ * Returns true if the given object is an instance of TransitRouteTableAggregation. This is designed to work even
58
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
59
+ */
60
+ static isInstance(obj) {
61
+ if (obj === undefined || obj === null) {
62
+ return false;
63
+ }
64
+ return obj['__pulumiType'] === TransitRouteTableAggregation.__pulumiType;
65
+ }
66
+ constructor(name, argsOrState, opts) {
67
+ let resourceInputs = {};
68
+ opts = opts || {};
69
+ if (opts.id) {
70
+ const state = argsOrState;
71
+ resourceInputs["status"] = state ? state.status : undefined;
72
+ resourceInputs["transitRouteTableAggregationCidr"] = state ? state.transitRouteTableAggregationCidr : undefined;
73
+ resourceInputs["transitRouteTableAggregationDescription"] = state ? state.transitRouteTableAggregationDescription : undefined;
74
+ resourceInputs["transitRouteTableAggregationName"] = state ? state.transitRouteTableAggregationName : undefined;
75
+ resourceInputs["transitRouteTableAggregationScope"] = state ? state.transitRouteTableAggregationScope : undefined;
76
+ resourceInputs["transitRouteTableId"] = state ? state.transitRouteTableId : undefined;
77
+ }
78
+ else {
79
+ const args = argsOrState;
80
+ if ((!args || args.transitRouteTableAggregationCidr === undefined) && !opts.urn) {
81
+ throw new Error("Missing required property 'transitRouteTableAggregationCidr'");
82
+ }
83
+ if ((!args || args.transitRouteTableAggregationScope === undefined) && !opts.urn) {
84
+ throw new Error("Missing required property 'transitRouteTableAggregationScope'");
85
+ }
86
+ if ((!args || args.transitRouteTableId === undefined) && !opts.urn) {
87
+ throw new Error("Missing required property 'transitRouteTableId'");
88
+ }
89
+ resourceInputs["transitRouteTableAggregationCidr"] = args ? args.transitRouteTableAggregationCidr : undefined;
90
+ resourceInputs["transitRouteTableAggregationDescription"] = args ? args.transitRouteTableAggregationDescription : undefined;
91
+ resourceInputs["transitRouteTableAggregationName"] = args ? args.transitRouteTableAggregationName : undefined;
92
+ resourceInputs["transitRouteTableAggregationScope"] = args ? args.transitRouteTableAggregationScope : undefined;
93
+ resourceInputs["transitRouteTableId"] = args ? args.transitRouteTableId : undefined;
94
+ resourceInputs["status"] = undefined /*out*/;
95
+ }
96
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
97
+ super(TransitRouteTableAggregation.__pulumiType, name, resourceInputs, opts);
98
+ }
99
+ }
100
+ exports.TransitRouteTableAggregation = TransitRouteTableAggregation;
101
+ /** @internal */
102
+ TransitRouteTableAggregation.__pulumiType = 'alicloud:cen/transitRouteTableAggregation:TransitRouteTableAggregation';
103
+ //# sourceMappingURL=transitRouteTableAggregation.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"transitRouteTableAggregation.js","sourceRoot":"","sources":["../../cen/transitRouteTableAggregation.ts"],"names":[],"mappings":"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"}