-
Notifications
You must be signed in to change notification settings - Fork 204
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move ARM types for resources (#4426)
* Remove suppression for resources * Update generated files for resources * Update PR * Format code
- Loading branch information
1 parent
97d0ccf
commit a91754f
Showing
11 changed files
with
226 additions
and
325 deletions.
There are no files selected for viewing
12 changes: 6 additions & 6 deletions
12
...0601/resource_group_spec_arm_types_gen.go → ...0601/arm/resource_group_spec_types_gen.go
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
37 changes: 18 additions & 19 deletions
37
...resource_group_spec_arm_types_gen_test.go → ...arm/resource_group_spec_types_gen_test.go
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
8 changes: 4 additions & 4 deletions
8
...01/resource_group_status_arm_types_gen.go → ...01/arm/resource_group_status_types_gen.go
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
161 changes: 161 additions & 0 deletions
161
v2/api/resources/v1api20200601/arm/resource_group_status_types_gen_test.go
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// Code generated by azure-service-operator-codegen. DO NOT EDIT. | ||
github.com/Azure/azure-service-operator/v2/api/resources/v1api20200601/arm | ||
-------------------------------------------------------------------------- | ||
ResourceGroup_STATUS: Object (7 properties) | ||
├── Id: *string | ||
├── Location: *string | ||
├── ManagedBy: *string | ||
├── Name: *string | ||
├── Properties: *Object (1 property) | ||
│ └── ProvisioningState: *string | ||
├── Tags: map[string]string | ||
└── Type: *string | ||
ResourceGroup_Spec: Object (4 properties) | ||
├── Location: *string | ||
├── ManagedBy: *string | ||
├── Name: string | ||
└── Tags: map[string]string |
Oops, something went wrong.