You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `armcomputeschedule` module provides operations for working with Azure Computeschedule.
5
+
Microsoft Azure Compute Schedule allows customers to schedule one off operations on their virtual machines. These operations include:
6
+
- Start
7
+
- Deallocate
8
+
- Hibernate
9
+
10
+
There are 2 groups of schedule type operations that customers can perform on their virtual machines
11
+
12
+
-`Submit Type Operations`: These type of operations can be scheduled at a later date in the future, up to 14 days ahead.
13
+
-`Execute Type Operations`: These type of operations allow clients to perform operations on their virtual machines immediately.
14
+
15
+
Other operations include endpoints to get operation status on virtual machines, cancel operations scheduled on virtual machines and get errors that might have occured during operations.
@@ -17,15 +27,15 @@ The `armcomputeschedule` module provides operations for working with Azure Compu
17
27
18
28
This project uses [Go modules](https://github.com/golang/go/wiki/Modules) for versioning and dependency management.
19
29
20
-
Install the Azure Computeschedule module:
30
+
Install the Azure Compute Schedule module:
21
31
22
32
```sh
23
33
go get github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/computeschedule/armcomputeschedule
24
34
```
25
35
26
36
## Authorization
27
37
28
-
When creating a client, you will need to provide a credential for authenticating with Azure Computeschedule. The `azidentity` module provides facilities for various ways of authenticating with Azure including client/secret, certificate, managed identity, and more.
38
+
When creating a client, you will need to provide a credential for authenticating with Azure Compute Schedule. The `azidentity` module provides facilities for various ways of authenticating with Azure including client/secret, certificate, managed identity, and more.
0 commit comments