azure_mgmt_operational_insights 0.14.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.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/lib/azure_mgmt_operational_insights.rb +8 -0
- data/lib/generated/azure_mgmt_operational_insights.rb +72 -0
- data/lib/generated/azure_mgmt_operational_insights/data_sources.rb +567 -0
- data/lib/generated/azure_mgmt_operational_insights/linked_services.rb +440 -0
- data/lib/generated/azure_mgmt_operational_insights/models/core_summary.rb +54 -0
- data/lib/generated/azure_mgmt_operational_insights/models/data_source.rb +108 -0
- data/lib/generated/azure_mgmt_operational_insights/models/data_source_filter.rb +49 -0
- data/lib/generated/azure_mgmt_operational_insights/models/data_source_kind.rb +29 -0
- data/lib/generated/azure_mgmt_operational_insights/models/data_source_list_result.rb +94 -0
- data/lib/generated/azure_mgmt_operational_insights/models/entity_status.rb +20 -0
- data/lib/generated/azure_mgmt_operational_insights/models/intelligence_pack.rb +55 -0
- data/lib/generated/azure_mgmt_operational_insights/models/link_target.rb +74 -0
- data/lib/generated/azure_mgmt_operational_insights/models/linked_service.rb +83 -0
- data/lib/generated/azure_mgmt_operational_insights/models/linked_service_list_result.rb +53 -0
- data/lib/generated/azure_mgmt_operational_insights/models/management_group.rb +119 -0
- data/lib/generated/azure_mgmt_operational_insights/models/metric_name.rb +54 -0
- data/lib/generated/azure_mgmt_operational_insights/models/proxy_resource.rb +84 -0
- data/lib/generated/azure_mgmt_operational_insights/models/resource.rb +94 -0
- data/lib/generated/azure_mgmt_operational_insights/models/saved_search.rb +121 -0
- data/lib/generated/azure_mgmt_operational_insights/models/saved_searches_list_result.rb +63 -0
- data/lib/generated/azure_mgmt_operational_insights/models/search_error.rb +54 -0
- data/lib/generated/azure_mgmt_operational_insights/models/search_get_schema_response.rb +63 -0
- data/lib/generated/azure_mgmt_operational_insights/models/search_highlight.rb +54 -0
- data/lib/generated/azure_mgmt_operational_insights/models/search_metadata.rb +221 -0
- data/lib/generated/azure_mgmt_operational_insights/models/search_metadata_schema.rb +54 -0
- data/lib/generated/azure_mgmt_operational_insights/models/search_parameters.rb +88 -0
- data/lib/generated/azure_mgmt_operational_insights/models/search_results_response.rb +84 -0
- data/lib/generated/azure_mgmt_operational_insights/models/search_schema_value.rb +114 -0
- data/lib/generated/azure_mgmt_operational_insights/models/search_sort.rb +55 -0
- data/lib/generated/azure_mgmt_operational_insights/models/search_sort_enum.rb +16 -0
- data/lib/generated/azure_mgmt_operational_insights/models/shared_keys.rb +54 -0
- data/lib/generated/azure_mgmt_operational_insights/models/sku.rb +45 -0
- data/lib/generated/azure_mgmt_operational_insights/models/sku_name_enum.rb +20 -0
- data/lib/generated/azure_mgmt_operational_insights/models/storage_account.rb +55 -0
- data/lib/generated/azure_mgmt_operational_insights/models/storage_insight.rb +141 -0
- data/lib/generated/azure_mgmt_operational_insights/models/storage_insight_list_result.rb +95 -0
- data/lib/generated/azure_mgmt_operational_insights/models/storage_insight_state.rb +16 -0
- data/lib/generated/azure_mgmt_operational_insights/models/storage_insight_status.rb +55 -0
- data/lib/generated/azure_mgmt_operational_insights/models/tag.rb +54 -0
- data/lib/generated/azure_mgmt_operational_insights/models/usage_metric.rb +96 -0
- data/lib/generated/azure_mgmt_operational_insights/models/workspace.rb +165 -0
- data/lib/generated/azure_mgmt_operational_insights/models/workspace_list_management_groups_result.rb +53 -0
- data/lib/generated/azure_mgmt_operational_insights/models/workspace_list_result.rb +52 -0
- data/lib/generated/azure_mgmt_operational_insights/models/workspace_list_usages_result.rb +53 -0
- data/lib/generated/azure_mgmt_operational_insights/module_definition.rb +8 -0
- data/lib/generated/azure_mgmt_operational_insights/operational_insights_management_client.rb +143 -0
- data/lib/generated/azure_mgmt_operational_insights/saved_searches.rb +513 -0
- data/lib/generated/azure_mgmt_operational_insights/storage_insights.rb +560 -0
- data/lib/generated/azure_mgmt_operational_insights/version.rb +8 -0
- data/lib/generated/azure_mgmt_operational_insights/workspaces.rb +1569 -0
- metadata +164 -0
@@ -0,0 +1,54 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator.
|
3
|
+
# Changes may cause incorrect behavior and will be lost if the code is
|
4
|
+
# regenerated.
|
5
|
+
|
6
|
+
module Azure::ARM::OperationalInsights
|
7
|
+
module Models
|
8
|
+
#
|
9
|
+
# Schema metadata for search.
|
10
|
+
#
|
11
|
+
class SearchMetadataSchema
|
12
|
+
|
13
|
+
include MsRestAzure
|
14
|
+
|
15
|
+
# @return [String] The name of the metadata schema.
|
16
|
+
attr_accessor :name
|
17
|
+
|
18
|
+
# @return [Integer] The version of the metadata schema.
|
19
|
+
attr_accessor :version
|
20
|
+
|
21
|
+
|
22
|
+
#
|
23
|
+
# Mapper for SearchMetadataSchema class as Ruby Hash.
|
24
|
+
# This will be used for serialization/deserialization.
|
25
|
+
#
|
26
|
+
def self.mapper()
|
27
|
+
{
|
28
|
+
required: false,
|
29
|
+
serialized_name: 'SearchMetadataSchema',
|
30
|
+
type: {
|
31
|
+
name: 'Composite',
|
32
|
+
class_name: 'SearchMetadataSchema',
|
33
|
+
model_properties: {
|
34
|
+
name: {
|
35
|
+
required: false,
|
36
|
+
serialized_name: 'name',
|
37
|
+
type: {
|
38
|
+
name: 'String'
|
39
|
+
}
|
40
|
+
},
|
41
|
+
version: {
|
42
|
+
required: false,
|
43
|
+
serialized_name: 'version',
|
44
|
+
type: {
|
45
|
+
name: 'Number'
|
46
|
+
}
|
47
|
+
}
|
48
|
+
}
|
49
|
+
}
|
50
|
+
}
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
@@ -0,0 +1,88 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator.
|
3
|
+
# Changes may cause incorrect behavior and will be lost if the code is
|
4
|
+
# regenerated.
|
5
|
+
|
6
|
+
module Azure::ARM::OperationalInsights
|
7
|
+
module Models
|
8
|
+
#
|
9
|
+
# Parameters specifying the search query and range.
|
10
|
+
#
|
11
|
+
class SearchParameters
|
12
|
+
|
13
|
+
include MsRestAzure
|
14
|
+
|
15
|
+
# @return [Integer] The number to get from the top.
|
16
|
+
attr_accessor :top
|
17
|
+
|
18
|
+
# @return [SearchHighlight] The highlight that looks for all occurences
|
19
|
+
# of a string.
|
20
|
+
attr_accessor :highlight
|
21
|
+
|
22
|
+
# @return [String] The query to search.
|
23
|
+
attr_accessor :query
|
24
|
+
|
25
|
+
# @return [DateTime] The start date filter, so the only query results
|
26
|
+
# returned are after this date.
|
27
|
+
attr_accessor :start
|
28
|
+
|
29
|
+
# @return [DateTime] The end date filter, so the only query results
|
30
|
+
# returned are before this date.
|
31
|
+
attr_accessor :end_property
|
32
|
+
|
33
|
+
|
34
|
+
#
|
35
|
+
# Mapper for SearchParameters class as Ruby Hash.
|
36
|
+
# This will be used for serialization/deserialization.
|
37
|
+
#
|
38
|
+
def self.mapper()
|
39
|
+
{
|
40
|
+
required: false,
|
41
|
+
serialized_name: 'SearchParameters',
|
42
|
+
type: {
|
43
|
+
name: 'Composite',
|
44
|
+
class_name: 'SearchParameters',
|
45
|
+
model_properties: {
|
46
|
+
top: {
|
47
|
+
required: false,
|
48
|
+
serialized_name: 'top',
|
49
|
+
type: {
|
50
|
+
name: 'Number'
|
51
|
+
}
|
52
|
+
},
|
53
|
+
highlight: {
|
54
|
+
required: false,
|
55
|
+
serialized_name: 'highlight',
|
56
|
+
type: {
|
57
|
+
name: 'Composite',
|
58
|
+
class_name: 'SearchHighlight'
|
59
|
+
}
|
60
|
+
},
|
61
|
+
query: {
|
62
|
+
required: true,
|
63
|
+
serialized_name: 'query',
|
64
|
+
type: {
|
65
|
+
name: 'String'
|
66
|
+
}
|
67
|
+
},
|
68
|
+
start: {
|
69
|
+
required: false,
|
70
|
+
serialized_name: 'start',
|
71
|
+
type: {
|
72
|
+
name: 'DateTime'
|
73
|
+
}
|
74
|
+
},
|
75
|
+
end_property: {
|
76
|
+
required: false,
|
77
|
+
serialized_name: 'end',
|
78
|
+
type: {
|
79
|
+
name: 'DateTime'
|
80
|
+
}
|
81
|
+
}
|
82
|
+
}
|
83
|
+
}
|
84
|
+
}
|
85
|
+
end
|
86
|
+
end
|
87
|
+
end
|
88
|
+
end
|
@@ -0,0 +1,84 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator.
|
3
|
+
# Changes may cause incorrect behavior and will be lost if the code is
|
4
|
+
# regenerated.
|
5
|
+
|
6
|
+
module Azure::ARM::OperationalInsights
|
7
|
+
module Models
|
8
|
+
#
|
9
|
+
# The get search result operation response.
|
10
|
+
#
|
11
|
+
class SearchResultsResponse
|
12
|
+
|
13
|
+
include MsRestAzure
|
14
|
+
|
15
|
+
# @return [String] The id of the search, which includes the full url.
|
16
|
+
attr_accessor :id
|
17
|
+
|
18
|
+
# @return [SearchMetadata] The metadata from search results.
|
19
|
+
attr_accessor :metadata
|
20
|
+
|
21
|
+
# @return The array of result values.
|
22
|
+
attr_accessor :value
|
23
|
+
|
24
|
+
# @return [SearchError] The error.
|
25
|
+
attr_accessor :error
|
26
|
+
|
27
|
+
|
28
|
+
#
|
29
|
+
# Mapper for SearchResultsResponse class as Ruby Hash.
|
30
|
+
# This will be used for serialization/deserialization.
|
31
|
+
#
|
32
|
+
def self.mapper()
|
33
|
+
{
|
34
|
+
required: false,
|
35
|
+
serialized_name: 'SearchResultsResponse',
|
36
|
+
type: {
|
37
|
+
name: 'Composite',
|
38
|
+
class_name: 'SearchResultsResponse',
|
39
|
+
model_properties: {
|
40
|
+
id: {
|
41
|
+
required: false,
|
42
|
+
read_only: true,
|
43
|
+
serialized_name: 'id',
|
44
|
+
type: {
|
45
|
+
name: 'String'
|
46
|
+
}
|
47
|
+
},
|
48
|
+
metadata: {
|
49
|
+
required: false,
|
50
|
+
serialized_name: '__metadata',
|
51
|
+
type: {
|
52
|
+
name: 'Composite',
|
53
|
+
class_name: 'SearchMetadata'
|
54
|
+
}
|
55
|
+
},
|
56
|
+
value: {
|
57
|
+
required: false,
|
58
|
+
serialized_name: 'value',
|
59
|
+
type: {
|
60
|
+
name: 'Sequence',
|
61
|
+
element: {
|
62
|
+
required: false,
|
63
|
+
serialized_name: 'ObjectElementType',
|
64
|
+
type: {
|
65
|
+
name: 'Object'
|
66
|
+
}
|
67
|
+
}
|
68
|
+
}
|
69
|
+
},
|
70
|
+
error: {
|
71
|
+
required: false,
|
72
|
+
serialized_name: 'error',
|
73
|
+
type: {
|
74
|
+
name: 'Composite',
|
75
|
+
class_name: 'SearchError'
|
76
|
+
}
|
77
|
+
}
|
78
|
+
}
|
79
|
+
}
|
80
|
+
}
|
81
|
+
end
|
82
|
+
end
|
83
|
+
end
|
84
|
+
end
|
@@ -0,0 +1,114 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator.
|
3
|
+
# Changes may cause incorrect behavior and will be lost if the code is
|
4
|
+
# regenerated.
|
5
|
+
|
6
|
+
module Azure::ARM::OperationalInsights
|
7
|
+
module Models
|
8
|
+
#
|
9
|
+
# Value object for schema results.
|
10
|
+
#
|
11
|
+
class SearchSchemaValue
|
12
|
+
|
13
|
+
include MsRestAzure
|
14
|
+
|
15
|
+
# @return [String] The name of the schema.
|
16
|
+
attr_accessor :name
|
17
|
+
|
18
|
+
# @return [String] The display name of the schema.
|
19
|
+
attr_accessor :display_name
|
20
|
+
|
21
|
+
# @return [String] The type.
|
22
|
+
attr_accessor :type
|
23
|
+
|
24
|
+
# @return [Boolean] The boolean that indicates the field is searchable as
|
25
|
+
# free text.
|
26
|
+
attr_accessor :indexed
|
27
|
+
|
28
|
+
# @return [Boolean] The boolean that indicates whether or not the field
|
29
|
+
# is stored.
|
30
|
+
attr_accessor :stored
|
31
|
+
|
32
|
+
# @return [Boolean] The boolean that indicates whether or not the field
|
33
|
+
# is a facet.
|
34
|
+
attr_accessor :facet
|
35
|
+
|
36
|
+
# @return [Array<String>] The array of workflows containing the field.
|
37
|
+
attr_accessor :owner_type
|
38
|
+
|
39
|
+
|
40
|
+
#
|
41
|
+
# Mapper for SearchSchemaValue class as Ruby Hash.
|
42
|
+
# This will be used for serialization/deserialization.
|
43
|
+
#
|
44
|
+
def self.mapper()
|
45
|
+
{
|
46
|
+
required: false,
|
47
|
+
serialized_name: 'SearchSchemaValue',
|
48
|
+
type: {
|
49
|
+
name: 'Composite',
|
50
|
+
class_name: 'SearchSchemaValue',
|
51
|
+
model_properties: {
|
52
|
+
name: {
|
53
|
+
required: false,
|
54
|
+
serialized_name: 'name',
|
55
|
+
type: {
|
56
|
+
name: 'String'
|
57
|
+
}
|
58
|
+
},
|
59
|
+
display_name: {
|
60
|
+
required: false,
|
61
|
+
serialized_name: 'displayName',
|
62
|
+
type: {
|
63
|
+
name: 'String'
|
64
|
+
}
|
65
|
+
},
|
66
|
+
type: {
|
67
|
+
required: false,
|
68
|
+
serialized_name: 'type',
|
69
|
+
type: {
|
70
|
+
name: 'String'
|
71
|
+
}
|
72
|
+
},
|
73
|
+
indexed: {
|
74
|
+
required: true,
|
75
|
+
serialized_name: 'indexed',
|
76
|
+
type: {
|
77
|
+
name: 'Boolean'
|
78
|
+
}
|
79
|
+
},
|
80
|
+
stored: {
|
81
|
+
required: true,
|
82
|
+
serialized_name: 'stored',
|
83
|
+
type: {
|
84
|
+
name: 'Boolean'
|
85
|
+
}
|
86
|
+
},
|
87
|
+
facet: {
|
88
|
+
required: true,
|
89
|
+
serialized_name: 'facet',
|
90
|
+
type: {
|
91
|
+
name: 'Boolean'
|
92
|
+
}
|
93
|
+
},
|
94
|
+
owner_type: {
|
95
|
+
required: false,
|
96
|
+
serialized_name: 'ownerType',
|
97
|
+
type: {
|
98
|
+
name: 'Sequence',
|
99
|
+
element: {
|
100
|
+
required: false,
|
101
|
+
serialized_name: 'StringElementType',
|
102
|
+
type: {
|
103
|
+
name: 'String'
|
104
|
+
}
|
105
|
+
}
|
106
|
+
}
|
107
|
+
}
|
108
|
+
}
|
109
|
+
}
|
110
|
+
}
|
111
|
+
end
|
112
|
+
end
|
113
|
+
end
|
114
|
+
end
|
@@ -0,0 +1,55 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator.
|
3
|
+
# Changes may cause incorrect behavior and will be lost if the code is
|
4
|
+
# regenerated.
|
5
|
+
|
6
|
+
module Azure::ARM::OperationalInsights
|
7
|
+
module Models
|
8
|
+
#
|
9
|
+
# The sort parameters for search.
|
10
|
+
#
|
11
|
+
class SearchSort
|
12
|
+
|
13
|
+
include MsRestAzure
|
14
|
+
|
15
|
+
# @return [String] The name of the field the search query is sorted on.
|
16
|
+
attr_accessor :name
|
17
|
+
|
18
|
+
# @return [SearchSortEnum] The sort order of the search. Possible values
|
19
|
+
# include: 'asc', 'desc'
|
20
|
+
attr_accessor :order
|
21
|
+
|
22
|
+
|
23
|
+
#
|
24
|
+
# Mapper for SearchSort class as Ruby Hash.
|
25
|
+
# This will be used for serialization/deserialization.
|
26
|
+
#
|
27
|
+
def self.mapper()
|
28
|
+
{
|
29
|
+
required: false,
|
30
|
+
serialized_name: 'SearchSort',
|
31
|
+
type: {
|
32
|
+
name: 'Composite',
|
33
|
+
class_name: 'SearchSort',
|
34
|
+
model_properties: {
|
35
|
+
name: {
|
36
|
+
required: false,
|
37
|
+
serialized_name: 'name',
|
38
|
+
type: {
|
39
|
+
name: 'String'
|
40
|
+
}
|
41
|
+
},
|
42
|
+
order: {
|
43
|
+
required: false,
|
44
|
+
serialized_name: 'order',
|
45
|
+
type: {
|
46
|
+
name: 'String'
|
47
|
+
}
|
48
|
+
}
|
49
|
+
}
|
50
|
+
}
|
51
|
+
}
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator.
|
3
|
+
# Changes may cause incorrect behavior and will be lost if the code is
|
4
|
+
# regenerated.
|
5
|
+
|
6
|
+
module Azure::ARM::OperationalInsights
|
7
|
+
module Models
|
8
|
+
#
|
9
|
+
# Defines values for SearchSortEnum
|
10
|
+
#
|
11
|
+
module SearchSortEnum
|
12
|
+
Asc = "asc"
|
13
|
+
Desc = "desc"
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,54 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator.
|
3
|
+
# Changes may cause incorrect behavior and will be lost if the code is
|
4
|
+
# regenerated.
|
5
|
+
|
6
|
+
module Azure::ARM::OperationalInsights
|
7
|
+
module Models
|
8
|
+
#
|
9
|
+
# The shared keys for a workspace.
|
10
|
+
#
|
11
|
+
class SharedKeys
|
12
|
+
|
13
|
+
include MsRestAzure
|
14
|
+
|
15
|
+
# @return [String] The primary shared key of a workspace.
|
16
|
+
attr_accessor :primary_shared_key
|
17
|
+
|
18
|
+
# @return [String] The secondary shared key of a workspace.
|
19
|
+
attr_accessor :secondary_shared_key
|
20
|
+
|
21
|
+
|
22
|
+
#
|
23
|
+
# Mapper for SharedKeys class as Ruby Hash.
|
24
|
+
# This will be used for serialization/deserialization.
|
25
|
+
#
|
26
|
+
def self.mapper()
|
27
|
+
{
|
28
|
+
required: false,
|
29
|
+
serialized_name: 'SharedKeys',
|
30
|
+
type: {
|
31
|
+
name: 'Composite',
|
32
|
+
class_name: 'SharedKeys',
|
33
|
+
model_properties: {
|
34
|
+
primary_shared_key: {
|
35
|
+
required: false,
|
36
|
+
serialized_name: 'primarySharedKey',
|
37
|
+
type: {
|
38
|
+
name: 'String'
|
39
|
+
}
|
40
|
+
},
|
41
|
+
secondary_shared_key: {
|
42
|
+
required: false,
|
43
|
+
serialized_name: 'secondarySharedKey',
|
44
|
+
type: {
|
45
|
+
name: 'String'
|
46
|
+
}
|
47
|
+
}
|
48
|
+
}
|
49
|
+
}
|
50
|
+
}
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|