summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHentioe <me@bluerain.io>2020-10-29 00:36:21 +0800
committerHentioe <me@bluerain.io>2020-10-29 00:36:21 +0800
commit704787ffd5904cdc69353676290fd69f40bff8c0 (patch)
tree8a519d38c7b32bbb67dd8293a2aeab95dd95aae6
parentFix token refresh interval (diff)
Delete all models
-rw-r--r--lib/azure_ex/model/virtual_machine.ex21
-rw-r--r--lib/azure_ex/model/virtual_machine_list_result.ex17
2 files changed, 0 insertions, 38 deletions
diff --git a/lib/azure_ex/model/virtual_machine.ex b/lib/azure_ex/model/virtual_machine.ex
deleted file mode 100644
index 2886c14..0000000
--- a/lib/azure_ex/model/virtual_machine.ex
+++ /dev/null
@@ -1,21 +0,0 @@
-defmodule AzureEx.Model.VirtualMachine do
- @moduledoc """
- A struct representing a virtual machine.
- """
- use TypedStruct
-
- typedstruct do
- @typedoc "Describes a Virtual Machine."
-
- # Resource Id.
- field :id, String.t()
- # Resource location.
- field :location, String.t()
- # Resource name.
- field :name, String.t()
- # Resource type.
- field :type, String.t()
- # The virtual machine zones.
- field :zones, [String.t()]
- end
-end
diff --git a/lib/azure_ex/model/virtual_machine_list_result.ex b/lib/azure_ex/model/virtual_machine_list_result.ex
deleted file mode 100644
index 87d6475..0000000
--- a/lib/azure_ex/model/virtual_machine_list_result.ex
+++ /dev/null
@@ -1,17 +0,0 @@
-defmodule AzureEx.Model.VirtualMachineListResult do
- @moduledoc """
- A struct representing a list virtual machine operation response.
- """
-
- use TypedStruct
-
- typedstruct do
- @typedoc "The List Virtual Machine operation response."
-
- # The URI to fetch the next page of VMs.
- # Call ListNext() with this URI to fetch the next page of Virtual Machines.
- field :next_link, String.t()
- # The list of virtual machines.
- field :value, [AzureEx.Model.VirtualMachine.t()]
- end
-end