-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Oscar Cobles <[email protected]>
- Loading branch information
Oscar Cobles
committed
Aug 21, 2024
1 parent
9a88027
commit 54f6761
Showing
17 changed files
with
1,656 additions
and
1,658 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -535,28 +535,28 @@ def __init__(__self__, | |
new_cloud_router = equinix.fabric.CloudRouter("newCloudRouter", | ||
name="Router-SV", | ||
type="XF_ROUTER", | ||
notifications=[equinix.fabric.CloudRouterNotificationArgs( | ||
type="ALL", | ||
emails=[ | ||
notifications=[{ | ||
"type": "ALL", | ||
"emails": [ | ||
"[email protected]", | ||
"[email protected]", | ||
], | ||
)], | ||
order=equinix.fabric.CloudRouterOrderArgs( | ||
purchase_order_number="1-323292", | ||
), | ||
location=equinix.fabric.CloudRouterLocationArgs( | ||
metro_code="SV", | ||
), | ||
package=equinix.fabric.CloudRouterPackageArgs( | ||
code="STANDARD", | ||
), | ||
project=equinix.fabric.CloudRouterProjectArgs( | ||
project_id="776847000642406", | ||
), | ||
account=equinix.fabric.CloudRouterAccountArgs( | ||
account_number=203612, | ||
)) | ||
}], | ||
order={ | ||
"purchase_order_number": "1-323292", | ||
}, | ||
location={ | ||
"metro_code": "SV", | ||
}, | ||
package={ | ||
"code": "STANDARD", | ||
}, | ||
project={ | ||
"project_id": "776847000642406", | ||
}, | ||
account={ | ||
"account_number": 203612, | ||
}) | ||
``` | ||
:param str resource_name: The name of the resource. | ||
|
@@ -594,28 +594,28 @@ def __init__(__self__, | |
new_cloud_router = equinix.fabric.CloudRouter("newCloudRouter", | ||
name="Router-SV", | ||
type="XF_ROUTER", | ||
notifications=[equinix.fabric.CloudRouterNotificationArgs( | ||
type="ALL", | ||
emails=[ | ||
notifications=[{ | ||
"type": "ALL", | ||
"emails": [ | ||
"[email protected]", | ||
"[email protected]", | ||
], | ||
)], | ||
order=equinix.fabric.CloudRouterOrderArgs( | ||
purchase_order_number="1-323292", | ||
), | ||
location=equinix.fabric.CloudRouterLocationArgs( | ||
metro_code="SV", | ||
), | ||
package=equinix.fabric.CloudRouterPackageArgs( | ||
code="STANDARD", | ||
), | ||
project=equinix.fabric.CloudRouterProjectArgs( | ||
project_id="776847000642406", | ||
), | ||
account=equinix.fabric.CloudRouterAccountArgs( | ||
account_number=203612, | ||
)) | ||
}], | ||
order={ | ||
"purchase_order_number": "1-323292", | ||
}, | ||
location={ | ||
"metro_code": "SV", | ||
}, | ||
package={ | ||
"code": "STANDARD", | ||
}, | ||
project={ | ||
"project_id": "776847000642406", | ||
}, | ||
account={ | ||
"account_number": 203612, | ||
}) | ||
``` | ||
:param str resource_name: The name of the resource. | ||
|
Oops, something went wrong.