azure_mgmt_machine_learning 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. checksums.yaml +7 -0
  2. data/.rspec +3 -0
  3. data/LICENSE.txt +21 -0
  4. data/Rakefile +5 -0
  5. data/azure_mgmt_machine_learning.gemspec +34 -0
  6. data/lib/azure_mgmt_machine_learning.rb +5 -0
  7. data/lib/generated/azure_mgmt_machine_learning.rb +61 -0
  8. data/lib/generated/azure_mgmt_machine_learning/azure_mlweb_services_management_client.rb +67 -0
  9. data/lib/generated/azure_mgmt_machine_learning/models/asset_item.rb +151 -0
  10. data/lib/generated/azure_mgmt_machine_learning/models/asset_location.rb +56 -0
  11. data/lib/generated/azure_mgmt_machine_learning/models/asset_type.rb +16 -0
  12. data/lib/generated/azure_mgmt_machine_learning/models/column_format.rb +28 -0
  13. data/lib/generated/azure_mgmt_machine_learning/models/column_specification.rb +100 -0
  14. data/lib/generated/azure_mgmt_machine_learning/models/column_type.rb +18 -0
  15. data/lib/generated/azure_mgmt_machine_learning/models/commitment_plan.rb +45 -0
  16. data/lib/generated/azure_mgmt_machine_learning/models/diagnostics_configuration.rb +58 -0
  17. data/lib/generated/azure_mgmt_machine_learning/models/diagnostics_level.rb +17 -0
  18. data/lib/generated/azure_mgmt_machine_learning/models/example_request.rb +83 -0
  19. data/lib/generated/azure_mgmt_machine_learning/models/graph_edge.rb +76 -0
  20. data/lib/generated/azure_mgmt_machine_learning/models/graph_node.rb +85 -0
  21. data/lib/generated/azure_mgmt_machine_learning/models/graph_package.rb +93 -0
  22. data/lib/generated/azure_mgmt_machine_learning/models/graph_parameter.rb +76 -0
  23. data/lib/generated/azure_mgmt_machine_learning/models/graph_parameter_link.rb +55 -0
  24. data/lib/generated/azure_mgmt_machine_learning/models/input_port.rb +46 -0
  25. data/lib/generated/azure_mgmt_machine_learning/models/input_port_type.rb +15 -0
  26. data/lib/generated/azure_mgmt_machine_learning/models/machine_learning_workspace.rb +45 -0
  27. data/lib/generated/azure_mgmt_machine_learning/models/mode_value_info.rb +62 -0
  28. data/lib/generated/azure_mgmt_machine_learning/models/module_asset_parameter.rb +73 -0
  29. data/lib/generated/azure_mgmt_machine_learning/models/output_port.rb +46 -0
  30. data/lib/generated/azure_mgmt_machine_learning/models/output_port_type.rb +15 -0
  31. data/lib/generated/azure_mgmt_machine_learning/models/paginated_web_services_list.rb +63 -0
  32. data/lib/generated/azure_mgmt_machine_learning/models/parameter_type.rb +26 -0
  33. data/lib/generated/azure_mgmt_machine_learning/models/provisioning_state.rb +19 -0
  34. data/lib/generated/azure_mgmt_machine_learning/models/realtime_configuration.rb +50 -0
  35. data/lib/generated/azure_mgmt_machine_learning/models/service_input_output_specification.rb +86 -0
  36. data/lib/generated/azure_mgmt_machine_learning/models/storage_account.rb +54 -0
  37. data/lib/generated/azure_mgmt_machine_learning/models/table_specification.rb +96 -0
  38. data/lib/generated/azure_mgmt_machine_learning/models/web_service.rb +91 -0
  39. data/lib/generated/azure_mgmt_machine_learning/models/web_service_keys.rb +54 -0
  40. data/lib/generated/azure_mgmt_machine_learning/models/web_service_properties.rb +290 -0
  41. data/lib/generated/azure_mgmt_machine_learning/models/web_service_properties_for_graph.rb +221 -0
  42. data/lib/generated/azure_mgmt_machine_learning/module_definition.rb +8 -0
  43. data/lib/generated/azure_mgmt_machine_learning/version.rb +8 -0
  44. data/lib/generated/azure_mgmt_machine_learning/web_services.rb +868 -0
  45. metadata +157 -0
@@ -0,0 +1,46 @@
1
+ # encoding: utf-8
2
+ # Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0
3
+ # Changes may cause incorrect behavior and will be lost if the code is
4
+ # regenerated.
5
+
6
+ module Azure::ARM::MachineLearning
7
+ module Models
8
+ #
9
+ # Asset output port
10
+ #
11
+ class OutputPort
12
+
13
+ include MsRestAzure
14
+
15
+ # @return [OutputPortType] Port data type. Possible values include:
16
+ # 'Dataset'. Default value: 'Dataset' .
17
+ attr_accessor :type
18
+
19
+
20
+ #
21
+ # Mapper for OutputPort class as Ruby Hash.
22
+ # This will be used for serialization/deserialization.
23
+ #
24
+ def self.mapper()
25
+ {
26
+ required: false,
27
+ serialized_name: 'OutputPort',
28
+ type: {
29
+ name: 'Composite',
30
+ class_name: 'OutputPort',
31
+ model_properties: {
32
+ type: {
33
+ required: false,
34
+ serialized_name: 'type',
35
+ default_value: 'Dataset',
36
+ type: {
37
+ name: 'String'
38
+ }
39
+ }
40
+ }
41
+ }
42
+ }
43
+ end
44
+ end
45
+ end
46
+ end
@@ -0,0 +1,15 @@
1
+ # encoding: utf-8
2
+ # Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0
3
+ # Changes may cause incorrect behavior and will be lost if the code is
4
+ # regenerated.
5
+
6
+ module Azure::ARM::MachineLearning
7
+ module Models
8
+ #
9
+ # Defines values for OutputPortType
10
+ #
11
+ module OutputPortType
12
+ Dataset = "Dataset"
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,63 @@
1
+ # encoding: utf-8
2
+ # Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0
3
+ # Changes may cause incorrect behavior and will be lost if the code is
4
+ # regenerated.
5
+
6
+ module Azure::ARM::MachineLearning
7
+ module Models
8
+ #
9
+ # Paginated list of web services.
10
+ #
11
+ class PaginatedWebServicesList
12
+
13
+ include MsRestAzure
14
+
15
+ # @return [Array<WebService>] List of web services objects.
16
+ attr_accessor :value
17
+
18
+ # @return [String] Continuation link to be used to potentially retrieve
19
+ # the next page of results in the list.
20
+ attr_accessor :next_link
21
+
22
+
23
+ #
24
+ # Mapper for PaginatedWebServicesList class as Ruby Hash.
25
+ # This will be used for serialization/deserialization.
26
+ #
27
+ def self.mapper()
28
+ {
29
+ required: false,
30
+ serialized_name: 'PaginatedWebServicesList',
31
+ type: {
32
+ name: 'Composite',
33
+ class_name: 'PaginatedWebServicesList',
34
+ model_properties: {
35
+ value: {
36
+ required: false,
37
+ serialized_name: 'value',
38
+ type: {
39
+ name: 'Sequence',
40
+ element: {
41
+ required: false,
42
+ serialized_name: 'WebServiceElementType',
43
+ type: {
44
+ name: 'Composite',
45
+ class_name: 'WebService'
46
+ }
47
+ }
48
+ }
49
+ },
50
+ next_link: {
51
+ required: false,
52
+ serialized_name: 'nextLink',
53
+ type: {
54
+ name: 'String'
55
+ }
56
+ }
57
+ }
58
+ }
59
+ }
60
+ end
61
+ end
62
+ end
63
+ end
@@ -0,0 +1,26 @@
1
+ # encoding: utf-8
2
+ # Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0
3
+ # Changes may cause incorrect behavior and will be lost if the code is
4
+ # regenerated.
5
+
6
+ module Azure::ARM::MachineLearning
7
+ module Models
8
+ #
9
+ # Defines values for ParameterType
10
+ #
11
+ module ParameterType
12
+ String = "String"
13
+ Int = "Int"
14
+ Float = "Float"
15
+ Enumerated = "Enumerated"
16
+ Script = "Script"
17
+ Mode = "Mode"
18
+ Credential = "Credential"
19
+ Boolean = "Boolean"
20
+ Double = "Double"
21
+ ColumnPicker = "ColumnPicker"
22
+ ParameterRange = "ParameterRange"
23
+ DataGatewayName = "DataGatewayName"
24
+ end
25
+ end
26
+ end
@@ -0,0 +1,19 @@
1
+ # encoding: utf-8
2
+ # Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0
3
+ # Changes may cause incorrect behavior and will be lost if the code is
4
+ # regenerated.
5
+
6
+ module Azure::ARM::MachineLearning
7
+ module Models
8
+ #
9
+ # Defines values for ProvisioningState
10
+ #
11
+ module ProvisioningState
12
+ Unknown = "Unknown"
13
+ Provisioning = "Provisioning"
14
+ Succeeded = "Succeeded"
15
+ Failed = "Failed"
16
+ Canceled = "Canceled"
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,50 @@
1
+ # encoding: utf-8
2
+ # Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0
3
+ # Changes may cause incorrect behavior and will be lost if the code is
4
+ # regenerated.
5
+
6
+ module Azure::ARM::MachineLearning
7
+ module Models
8
+ #
9
+ # Holds the available configuration options for an Azure ML web service
10
+ # endpoint.
11
+ #
12
+ class RealtimeConfiguration
13
+
14
+ include MsRestAzure
15
+
16
+ # @return [Integer] Maximum number of concurrent calls allowed on the
17
+ # realtime endpoint.
18
+ attr_accessor :max_concurrent_calls
19
+
20
+
21
+ #
22
+ # Mapper for RealtimeConfiguration class as Ruby Hash.
23
+ # This will be used for serialization/deserialization.
24
+ #
25
+ def self.mapper()
26
+ {
27
+ required: false,
28
+ serialized_name: 'RealtimeConfiguration',
29
+ type: {
30
+ name: 'Composite',
31
+ class_name: 'RealtimeConfiguration',
32
+ model_properties: {
33
+ max_concurrent_calls: {
34
+ required: false,
35
+ serialized_name: 'maxConcurrentCalls',
36
+ constraints: {
37
+ InclusiveMaximum: 200,
38
+ InclusiveMinimum: 4
39
+ },
40
+ type: {
41
+ name: 'Number'
42
+ }
43
+ }
44
+ }
45
+ }
46
+ }
47
+ end
48
+ end
49
+ end
50
+ end
@@ -0,0 +1,86 @@
1
+ # encoding: utf-8
2
+ # Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0
3
+ # Changes may cause incorrect behavior and will be lost if the code is
4
+ # regenerated.
5
+
6
+ module Azure::ARM::MachineLearning
7
+ module Models
8
+ #
9
+ # The swagger 2.0 schema describing the service's inputs or outputs. See
10
+ # Swagger specification: http://swagger.io/specification/
11
+ #
12
+ class ServiceInputOutputSpecification
13
+
14
+ include MsRestAzure
15
+
16
+ # @return [String] Swagger schema title.
17
+ attr_accessor :title
18
+
19
+ # @return [String] Swagger schema description.
20
+ attr_accessor :description
21
+
22
+ # @return [String] The type of the entity described in swagger. Always
23
+ # 'object'. Default value: 'object' .
24
+ attr_accessor :type
25
+
26
+ # @return [Hash{String => TableSpecification}] Map of name to swagger
27
+ # schema for each input or output of the web service.
28
+ attr_accessor :properties
29
+
30
+
31
+ #
32
+ # Mapper for ServiceInputOutputSpecification class as Ruby Hash.
33
+ # This will be used for serialization/deserialization.
34
+ #
35
+ def self.mapper()
36
+ {
37
+ required: false,
38
+ serialized_name: 'ServiceInputOutputSpecification',
39
+ type: {
40
+ name: 'Composite',
41
+ class_name: 'ServiceInputOutputSpecification',
42
+ model_properties: {
43
+ title: {
44
+ required: false,
45
+ serialized_name: 'title',
46
+ type: {
47
+ name: 'String'
48
+ }
49
+ },
50
+ description: {
51
+ required: false,
52
+ serialized_name: 'description',
53
+ type: {
54
+ name: 'String'
55
+ }
56
+ },
57
+ type: {
58
+ required: true,
59
+ serialized_name: 'type',
60
+ default_value: 'object',
61
+ type: {
62
+ name: 'String'
63
+ }
64
+ },
65
+ properties: {
66
+ required: true,
67
+ serialized_name: 'properties',
68
+ type: {
69
+ name: 'Dictionary',
70
+ value: {
71
+ required: false,
72
+ serialized_name: 'TableSpecificationElementType',
73
+ type: {
74
+ name: 'Composite',
75
+ class_name: 'TableSpecification'
76
+ }
77
+ }
78
+ }
79
+ }
80
+ }
81
+ }
82
+ }
83
+ end
84
+ end
85
+ end
86
+ end
@@ -0,0 +1,54 @@
1
+ # encoding: utf-8
2
+ # Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0
3
+ # Changes may cause incorrect behavior and will be lost if the code is
4
+ # regenerated.
5
+
6
+ module Azure::ARM::MachineLearning
7
+ module Models
8
+ #
9
+ # Access information for a storage account.
10
+ #
11
+ class StorageAccount
12
+
13
+ include MsRestAzure
14
+
15
+ # @return [String] The storage account's name.
16
+ attr_accessor :name
17
+
18
+ # @return [String] The storage account's active key.
19
+ attr_accessor :key
20
+
21
+
22
+ #
23
+ # Mapper for StorageAccount class as Ruby Hash.
24
+ # This will be used for serialization/deserialization.
25
+ #
26
+ def self.mapper()
27
+ {
28
+ required: false,
29
+ serialized_name: 'StorageAccount',
30
+ type: {
31
+ name: 'Composite',
32
+ class_name: 'StorageAccount',
33
+ model_properties: {
34
+ name: {
35
+ required: false,
36
+ serialized_name: 'name',
37
+ type: {
38
+ name: 'String'
39
+ }
40
+ },
41
+ key: {
42
+ required: false,
43
+ serialized_name: 'key',
44
+ type: {
45
+ name: 'String'
46
+ }
47
+ }
48
+ }
49
+ }
50
+ }
51
+ end
52
+ end
53
+ end
54
+ end
@@ -0,0 +1,96 @@
1
+ # encoding: utf-8
2
+ # Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0
3
+ # Changes may cause incorrect behavior and will be lost if the code is
4
+ # regenerated.
5
+
6
+ module Azure::ARM::MachineLearning
7
+ module Models
8
+ #
9
+ # The swagger 2.0 schema describing a single service input or output. See
10
+ # Swagger specification: http://swagger.io/specification/
11
+ #
12
+ class TableSpecification
13
+
14
+ include MsRestAzure
15
+
16
+ # @return [String] Swagger schema title.
17
+ attr_accessor :title
18
+
19
+ # @return [String] Swagger schema description.
20
+ attr_accessor :description
21
+
22
+ # @return [String] The type of the entity described in swagger. Default
23
+ # value: 'object' .
24
+ attr_accessor :type
25
+
26
+ # @return [String] The format, if 'type' is not 'object'
27
+ attr_accessor :format
28
+
29
+ # @return [Hash{String => ColumnSpecification}] The set of columns
30
+ # within the data table.
31
+ attr_accessor :properties
32
+
33
+
34
+ #
35
+ # Mapper for TableSpecification class as Ruby Hash.
36
+ # This will be used for serialization/deserialization.
37
+ #
38
+ def self.mapper()
39
+ {
40
+ required: false,
41
+ serialized_name: 'TableSpecification',
42
+ type: {
43
+ name: 'Composite',
44
+ class_name: 'TableSpecification',
45
+ model_properties: {
46
+ title: {
47
+ required: false,
48
+ serialized_name: 'title',
49
+ type: {
50
+ name: 'String'
51
+ }
52
+ },
53
+ description: {
54
+ required: false,
55
+ serialized_name: 'description',
56
+ type: {
57
+ name: 'String'
58
+ }
59
+ },
60
+ type: {
61
+ required: true,
62
+ serialized_name: 'type',
63
+ default_value: 'object',
64
+ type: {
65
+ name: 'String'
66
+ }
67
+ },
68
+ format: {
69
+ required: false,
70
+ serialized_name: 'format',
71
+ type: {
72
+ name: 'String'
73
+ }
74
+ },
75
+ properties: {
76
+ required: false,
77
+ serialized_name: 'properties',
78
+ type: {
79
+ name: 'Dictionary',
80
+ value: {
81
+ required: false,
82
+ serialized_name: 'ColumnSpecificationElementType',
83
+ type: {
84
+ name: 'Composite',
85
+ class_name: 'ColumnSpecification'
86
+ }
87
+ }
88
+ }
89
+ }
90
+ }
91
+ }
92
+ }
93
+ end
94
+ end
95
+ end
96
+ end