Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
1 change: 1 addition & 0 deletions docs/coverage/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ code does not implement. Machine-readable: [`coverage.json`](./coverage.json).
| `bigtable` | — | — | [Bigtable](./gcp/bigtable.md) | — | 38 |
| `cache` | [ElastiCache](./aws/elasticache.md) | [Cache](./azure/cache.md) | [Memorystore](./gcp/memorystore.md) | — | 17 |
| `certificatemanager` | — | — | [CertificateManager](./gcp/certificatemanager.md) | — | 16 |
| `chaosstudio` | — | [ChaosStudio](./azure/chaosstudio.md) | — | — | 8 |
| `cloudasset` | — | — | [Cloudasset](./gcp/cloudasset.md) | — | 11 |
| `cloudbilling` | — | — | [Cloudbilling](./gcp/cloudbilling.md) | — | 14 |
| `clouddeploy` | — | — | [CloudDeploy](./gcp/clouddeploy.md) | — | 11 |
Expand Down
1 change: 1 addition & 0 deletions docs/coverage/azure/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Services cloudemu emulates for Azure, by native name. Back to the [cross-provide
| [Bastion](./bastion.md) | `bastion` | 4 |
| [BlobStorage](./blobstorage.md) | `storage` | 35 |
| [Cache](./cache.md) | `cache` | 17 |
| [ChaosStudio](./chaosstudio.md) | — (provider-native) | 8 |
| [Communication](./communication.md) | — (provider-native) | 10 |
| [ContainerApps](./containerapps.md) | — (provider-native) | 19 |
| [ContainerInstances](./containerinstances.md) | `containerinstances` | 10 |
Expand Down
21 changes: 21 additions & 0 deletions docs/coverage/azure/chaosstudio.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!-- Generated by `go generate ./...` (internal/coveragegen). Do not edit by hand. -->
# ChaosStudio

provider-native `chaosstudio` wire service (Azure-only) · no portable driver · [Azure index](./README.md)

## Operations (8)

| Operation | Description |
| --- | --- |
| `ARMID` | |
| `CreateOrUpdate` | |
| `Delete` | |
| `DiscoverExperiments` | |
| `Get` | |
| `ListByResourceGroup` | |
| `ListBySubscription` | |
| `PurgeResourceGroup` | |

## Not in scope

_Not documented yet. See the [emulator boundary](../../../README.md) for cloudemu-wide non-goals._
33 changes: 33 additions & 0 deletions docs/coverage/coverage.json
Original file line number Diff line number Diff line change
Expand Up @@ -2478,6 +2478,39 @@
"gcp": "CertificateManager"
}
},
{
"service": "chaosstudio",
"interface": "provider-native",
"operations": [
{
"name": "ARMID"
},
{
"name": "CreateOrUpdate"
},
{
"name": "Delete"
},
{
"name": "DiscoverExperiments"
},
{
"name": "Get"
},
{
"name": "ListByResourceGroup"
},
{
"name": "ListBySubscription"
},
{
"name": "PurgeResourceGroup"
}
],
"providers": {
"azure": "ChaosStudio"
}
},
{
"service": "cloudasset",
"interface": "provider-native",
Expand Down
4 changes: 4 additions & 0 deletions providers/azure/azure.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import (
"github.com/stackshy/cloudemu/v2/providers/azure/bastion"
"github.com/stackshy/cloudemu/v2/providers/azure/blobstorage"
"github.com/stackshy/cloudemu/v2/providers/azure/cache"
"github.com/stackshy/cloudemu/v2/providers/azure/chaosstudio"
"github.com/stackshy/cloudemu/v2/providers/azure/communication"
"github.com/stackshy/cloudemu/v2/providers/azure/containerapps"
"github.com/stackshy/cloudemu/v2/providers/azure/containerinstances"
Expand Down Expand Up @@ -185,6 +186,7 @@ type Provider struct {
ManagedGrafana *managedgrafana.Mock
DevCenter *devcenter.Mock
Purview *purview.Mock
ChaosStudio *chaosstudio.Mock

ResourceDiscovery *resourcediscovery.Engine

Expand Down Expand Up @@ -256,6 +258,7 @@ func New(opts ...config.Option) *Provider {
ManagedGrafana: managedgrafana.New(o),
DevCenter: devcenter.New(o),
Purview: purview.New(o),
ChaosStudio: chaosstudio.New(o),
SubscriptionID: o.AccountID,
Region: o.Region,
EnforceAuth: o.EnforceAuth,
Expand Down Expand Up @@ -299,6 +302,7 @@ func New(opts ...config.Option) *Provider {
managedGrafanaDiscovery{p.ManagedGrafana},
devCenterDiscovery{p.DevCenter},
purviewDiscovery{p.Purview},
chaosStudioDiscovery{p.ChaosStudio},
},
},
)
Expand Down
Loading
Loading