Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(ci): update schema generate examples #160

Merged
merged 3 commits into from
Aug 20, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ only_tfgen: install_plugins upstream build_schema
tfgen: only_tfgen generate_examples

# Generate examples after the schema is generated
generate_examples: examples
generate_examples: examples build_schema

# Build the tfgen binary and generate the schema
build_schema: $(PULUMICTL_BIN)
Expand Down
38 changes: 19 additions & 19 deletions docs/resource/equinix_fabric_cloud_router.examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,28 +38,28 @@ import pulumi_equinix as equinix
new_cloud_router = equinix.fabric.CloudRouter("newCloudRouter",
name="Router-SV",
type="XF_ROUTER",
notifications=[{
"type": "ALL",
"emails": [
notifications=[equinix.fabric.CloudRouterNotificationArgs(
type="ALL",
emails=[
"[email protected]",
"[email protected]",
],
}],
order={
"purchase_order_number": "1-323292",
},
location={
"metro_code": "SV",
},
package={
"code": "STANDARD",
},
project={
"project_id": "776847000642406",
},
account={
"account_number": 203612,
})
)],
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,
))
```
```go
package main
Expand Down
Loading
Loading