azure_mgmt_service_bus 0.8.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_service_bus.rb +5 -0
- data/lib/generated/azure_mgmt_service_bus.rb +57 -0
- data/lib/generated/azure_mgmt_service_bus/models/access_rights.rb +17 -0
- data/lib/generated/azure_mgmt_service_bus/models/entity_availability_status.rb +19 -0
- data/lib/generated/azure_mgmt_service_bus/models/entity_status.rb +23 -0
- data/lib/generated/azure_mgmt_service_bus/models/message_count_details.rb +86 -0
- data/lib/generated/azure_mgmt_service_bus/models/namespace_create_or_update_parameters.rb +147 -0
- data/lib/generated/azure_mgmt_service_bus/models/namespace_list_result.rb +95 -0
- data/lib/generated/azure_mgmt_service_bus/models/namespace_resource.rb +165 -0
- data/lib/generated/azure_mgmt_service_bus/models/namespace_state.rb +27 -0
- data/lib/generated/azure_mgmt_service_bus/models/policykey.rb +16 -0
- data/lib/generated/azure_mgmt_service_bus/models/queue_create_or_update_parameters.rb +301 -0
- data/lib/generated/azure_mgmt_service_bus/models/queue_list_result.rb +94 -0
- data/lib/generated/azure_mgmt_service_bus/models/queue_resource.rb +326 -0
- data/lib/generated/azure_mgmt_service_bus/models/regenerate_keys_parameters.rb +46 -0
- data/lib/generated/azure_mgmt_service_bus/models/resource_list_keys.rb +88 -0
- data/lib/generated/azure_mgmt_service_bus/models/shared_access_authorization_rule_create_or_update_parameters.rb +74 -0
- data/lib/generated/azure_mgmt_service_bus/models/shared_access_authorization_rule_list_result.rb +97 -0
- data/lib/generated/azure_mgmt_service_bus/models/shared_access_authorization_rule_resource.rb +97 -0
- data/lib/generated/azure_mgmt_service_bus/models/sku.rb +66 -0
- data/lib/generated/azure_mgmt_service_bus/models/sku_name.rb +17 -0
- data/lib/generated/azure_mgmt_service_bus/models/sku_tier.rb +17 -0
- data/lib/generated/azure_mgmt_service_bus/models/subscription_create_or_update_parameters.rb +232 -0
- data/lib/generated/azure_mgmt_service_bus/models/subscription_list_result.rb +95 -0
- data/lib/generated/azure_mgmt_service_bus/models/subscription_resource.rb +257 -0
- data/lib/generated/azure_mgmt_service_bus/models/topic_create_or_update_parameters.rb +288 -0
- data/lib/generated/azure_mgmt_service_bus/models/topic_list_result.rb +94 -0
- data/lib/generated/azure_mgmt_service_bus/models/topic_resource.rb +313 -0
- data/lib/generated/azure_mgmt_service_bus/module_definition.rb +8 -0
- data/lib/generated/azure_mgmt_service_bus/namespaces.rb +1494 -0
- data/lib/generated/azure_mgmt_service_bus/queues.rb +1236 -0
- data/lib/generated/azure_mgmt_service_bus/service_bus_management_client.rb +144 -0
- data/lib/generated/azure_mgmt_service_bus/subscriptions.rb +533 -0
- data/lib/generated/azure_mgmt_service_bus/topics.rb +1236 -0
- data/lib/generated/azure_mgmt_service_bus/version.rb +8 -0
- metadata +150 -0
@@ -0,0 +1,288 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0
|
3
|
+
# Changes may cause incorrect behavior and will be lost if the code is
|
4
|
+
# regenerated.
|
5
|
+
|
6
|
+
module Azure::ARM::ServiceBus
|
7
|
+
module Models
|
8
|
+
#
|
9
|
+
# Parameters supplied to the Create Or Update Topic operation.
|
10
|
+
#
|
11
|
+
class TopicCreateOrUpdateParameters
|
12
|
+
|
13
|
+
include MsRestAzure
|
14
|
+
|
15
|
+
# @return [String] Topic name.
|
16
|
+
attr_accessor :name
|
17
|
+
|
18
|
+
# @return [String] Location of the resource.
|
19
|
+
attr_accessor :location
|
20
|
+
|
21
|
+
# @return [DateTime] Last time the message was sent, or a request was
|
22
|
+
# received, for this topic.
|
23
|
+
attr_accessor :accessed_at
|
24
|
+
|
25
|
+
# @return [String] TimeSpan idle interval after which the topic is
|
26
|
+
# automatically deleted. The minimum duration is 5 minutes.
|
27
|
+
attr_accessor :auto_delete_on_idle
|
28
|
+
|
29
|
+
# @return [EntityAvailabilityStatus] Entity availability status for the
|
30
|
+
# topic. Possible values include: 'Available', 'Limited', 'Renaming',
|
31
|
+
# 'Restoring', 'Unknown'
|
32
|
+
attr_accessor :entity_availability_status
|
33
|
+
|
34
|
+
# @return [DateTime] Exact time the message was created.
|
35
|
+
attr_accessor :created_at
|
36
|
+
|
37
|
+
# @return [MessageCountDetails]
|
38
|
+
attr_accessor :count_details
|
39
|
+
|
40
|
+
# @return [String] Default message time to live value. This is the
|
41
|
+
# duration after which the message expires, starting from when the
|
42
|
+
# message is sent to Service Bus. This is the default value used when
|
43
|
+
# TimeToLive is not set on a message itself.
|
44
|
+
attr_accessor :default_message_time_to_live
|
45
|
+
|
46
|
+
# @return [String] TimeSpan structure that defines the duration of the
|
47
|
+
# duplicate detection history. The default value is 10 minutes.
|
48
|
+
attr_accessor :duplicate_detection_history_time_window
|
49
|
+
|
50
|
+
# @return [Boolean] Value that indicates whether server-side batched
|
51
|
+
# operations are enabled.
|
52
|
+
attr_accessor :enable_batched_operations
|
53
|
+
|
54
|
+
# @return [Boolean] Value that indicates whether Express Entities are
|
55
|
+
# enabled. An express topic holds a message in memory temporarily before
|
56
|
+
# writing it to persistent storage.
|
57
|
+
attr_accessor :enable_express
|
58
|
+
|
59
|
+
# @return [Boolean] Value that indicates whether the topic to be
|
60
|
+
# partitioned across multiple message brokers is enabled.
|
61
|
+
attr_accessor :enable_partitioning
|
62
|
+
|
63
|
+
# @return [Boolean] Value that indicates whether partitioning is enabled
|
64
|
+
# or disabled.
|
65
|
+
attr_accessor :enable_subscription_partitioning
|
66
|
+
|
67
|
+
# @return [Boolean] Whether messages should be filtered before
|
68
|
+
# publishing.
|
69
|
+
attr_accessor :filtering_messages_before_publishing
|
70
|
+
|
71
|
+
# @return [Boolean] Value that indicates whether the message is
|
72
|
+
# accessible anonymously.
|
73
|
+
attr_accessor :is_anonymous_accessible
|
74
|
+
|
75
|
+
# @return [Boolean]
|
76
|
+
attr_accessor :is_express
|
77
|
+
|
78
|
+
# @return [Integer] Maximum size of the topic in megabytes, which is the
|
79
|
+
# size of the memory allocated for the topic.
|
80
|
+
attr_accessor :max_size_in_megabytes
|
81
|
+
|
82
|
+
# @return [Boolean] Value indicating if this topic requires duplicate
|
83
|
+
# detection.
|
84
|
+
attr_accessor :requires_duplicate_detection
|
85
|
+
|
86
|
+
# @return [Integer] Size of the topic, in bytes.
|
87
|
+
attr_accessor :size_in_bytes
|
88
|
+
|
89
|
+
# @return [EntityStatus] Enumerates the possible values for the status of
|
90
|
+
# a messaging entity. Possible values include: 'Active', 'Creating',
|
91
|
+
# 'Deleting', 'Disabled', 'ReceiveDisabled', 'Renaming', 'Restoring',
|
92
|
+
# 'SendDisabled', 'Unknown'
|
93
|
+
attr_accessor :status
|
94
|
+
|
95
|
+
# @return [Integer] Number of subscriptions.
|
96
|
+
attr_accessor :subscription_count
|
97
|
+
|
98
|
+
# @return [Boolean] Value that indicates whether the topic supports
|
99
|
+
# ordering.
|
100
|
+
attr_accessor :support_ordering
|
101
|
+
|
102
|
+
# @return [DateTime] The exact time the message was updated.
|
103
|
+
attr_accessor :updated_at
|
104
|
+
|
105
|
+
|
106
|
+
#
|
107
|
+
# Mapper for TopicCreateOrUpdateParameters class as Ruby Hash.
|
108
|
+
# This will be used for serialization/deserialization.
|
109
|
+
#
|
110
|
+
def self.mapper()
|
111
|
+
{
|
112
|
+
required: false,
|
113
|
+
serialized_name: 'TopicCreateOrUpdateParameters',
|
114
|
+
type: {
|
115
|
+
name: 'Composite',
|
116
|
+
class_name: 'TopicCreateOrUpdateParameters',
|
117
|
+
model_properties: {
|
118
|
+
name: {
|
119
|
+
required: false,
|
120
|
+
serialized_name: 'name',
|
121
|
+
type: {
|
122
|
+
name: 'String'
|
123
|
+
}
|
124
|
+
},
|
125
|
+
location: {
|
126
|
+
required: true,
|
127
|
+
serialized_name: 'location',
|
128
|
+
type: {
|
129
|
+
name: 'String'
|
130
|
+
}
|
131
|
+
},
|
132
|
+
accessed_at: {
|
133
|
+
required: false,
|
134
|
+
serialized_name: 'properties.accessedAt',
|
135
|
+
type: {
|
136
|
+
name: 'DateTime'
|
137
|
+
}
|
138
|
+
},
|
139
|
+
auto_delete_on_idle: {
|
140
|
+
required: false,
|
141
|
+
serialized_name: 'properties.autoDeleteOnIdle',
|
142
|
+
type: {
|
143
|
+
name: 'String'
|
144
|
+
}
|
145
|
+
},
|
146
|
+
entity_availability_status: {
|
147
|
+
required: false,
|
148
|
+
serialized_name: 'properties.entityAvailabilityStatus ',
|
149
|
+
type: {
|
150
|
+
name: 'Enum',
|
151
|
+
module: 'EntityAvailabilityStatus'
|
152
|
+
}
|
153
|
+
},
|
154
|
+
created_at: {
|
155
|
+
required: false,
|
156
|
+
serialized_name: 'properties.createdAt',
|
157
|
+
type: {
|
158
|
+
name: 'DateTime'
|
159
|
+
}
|
160
|
+
},
|
161
|
+
count_details: {
|
162
|
+
required: false,
|
163
|
+
serialized_name: 'properties.countDetails',
|
164
|
+
type: {
|
165
|
+
name: 'Composite',
|
166
|
+
class_name: 'MessageCountDetails'
|
167
|
+
}
|
168
|
+
},
|
169
|
+
default_message_time_to_live: {
|
170
|
+
required: false,
|
171
|
+
serialized_name: 'properties.defaultMessageTimeToLive',
|
172
|
+
type: {
|
173
|
+
name: 'String'
|
174
|
+
}
|
175
|
+
},
|
176
|
+
duplicate_detection_history_time_window: {
|
177
|
+
required: false,
|
178
|
+
serialized_name: 'properties.duplicateDetectionHistoryTimeWindow ',
|
179
|
+
type: {
|
180
|
+
name: 'String'
|
181
|
+
}
|
182
|
+
},
|
183
|
+
enable_batched_operations: {
|
184
|
+
required: false,
|
185
|
+
serialized_name: 'properties.enableBatchedOperations',
|
186
|
+
type: {
|
187
|
+
name: 'Boolean'
|
188
|
+
}
|
189
|
+
},
|
190
|
+
enable_express: {
|
191
|
+
required: false,
|
192
|
+
serialized_name: 'properties.enableExpress',
|
193
|
+
type: {
|
194
|
+
name: 'Boolean'
|
195
|
+
}
|
196
|
+
},
|
197
|
+
enable_partitioning: {
|
198
|
+
required: false,
|
199
|
+
serialized_name: 'properties.enablePartitioning',
|
200
|
+
type: {
|
201
|
+
name: 'Boolean'
|
202
|
+
}
|
203
|
+
},
|
204
|
+
enable_subscription_partitioning: {
|
205
|
+
required: false,
|
206
|
+
serialized_name: 'properties.enableSubscriptionPartitioning',
|
207
|
+
type: {
|
208
|
+
name: 'Boolean'
|
209
|
+
}
|
210
|
+
},
|
211
|
+
filtering_messages_before_publishing: {
|
212
|
+
required: false,
|
213
|
+
serialized_name: 'properties.filteringMessagesBeforePublishing',
|
214
|
+
type: {
|
215
|
+
name: 'Boolean'
|
216
|
+
}
|
217
|
+
},
|
218
|
+
is_anonymous_accessible: {
|
219
|
+
required: false,
|
220
|
+
serialized_name: 'properties.isAnonymousAccessible',
|
221
|
+
type: {
|
222
|
+
name: 'Boolean'
|
223
|
+
}
|
224
|
+
},
|
225
|
+
is_express: {
|
226
|
+
required: false,
|
227
|
+
serialized_name: 'properties.isExpress',
|
228
|
+
type: {
|
229
|
+
name: 'Boolean'
|
230
|
+
}
|
231
|
+
},
|
232
|
+
max_size_in_megabytes: {
|
233
|
+
required: false,
|
234
|
+
serialized_name: 'properties.maxSizeInMegabytes',
|
235
|
+
type: {
|
236
|
+
name: 'Number'
|
237
|
+
}
|
238
|
+
},
|
239
|
+
requires_duplicate_detection: {
|
240
|
+
required: false,
|
241
|
+
serialized_name: 'properties.requiresDuplicateDetection',
|
242
|
+
type: {
|
243
|
+
name: 'Boolean'
|
244
|
+
}
|
245
|
+
},
|
246
|
+
size_in_bytes: {
|
247
|
+
required: false,
|
248
|
+
serialized_name: 'properties.sizeInBytes',
|
249
|
+
type: {
|
250
|
+
name: 'Number'
|
251
|
+
}
|
252
|
+
},
|
253
|
+
status: {
|
254
|
+
required: false,
|
255
|
+
serialized_name: 'properties.status',
|
256
|
+
type: {
|
257
|
+
name: 'Enum',
|
258
|
+
module: 'EntityStatus'
|
259
|
+
}
|
260
|
+
},
|
261
|
+
subscription_count: {
|
262
|
+
required: false,
|
263
|
+
serialized_name: 'properties.subscriptionCount',
|
264
|
+
type: {
|
265
|
+
name: 'Number'
|
266
|
+
}
|
267
|
+
},
|
268
|
+
support_ordering: {
|
269
|
+
required: false,
|
270
|
+
serialized_name: 'properties.supportOrdering',
|
271
|
+
type: {
|
272
|
+
name: 'Boolean'
|
273
|
+
}
|
274
|
+
},
|
275
|
+
updated_at: {
|
276
|
+
required: false,
|
277
|
+
serialized_name: 'properties.updatedAt',
|
278
|
+
type: {
|
279
|
+
name: 'DateTime'
|
280
|
+
}
|
281
|
+
}
|
282
|
+
}
|
283
|
+
}
|
284
|
+
}
|
285
|
+
end
|
286
|
+
end
|
287
|
+
end
|
288
|
+
end
|
@@ -0,0 +1,94 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0
|
3
|
+
# Changes may cause incorrect behavior and will be lost if the code is
|
4
|
+
# regenerated.
|
5
|
+
|
6
|
+
module Azure::ARM::ServiceBus
|
7
|
+
module Models
|
8
|
+
#
|
9
|
+
# The response to the List Topics operation.
|
10
|
+
#
|
11
|
+
class TopicListResult
|
12
|
+
|
13
|
+
include MsRestAzure
|
14
|
+
|
15
|
+
# @return [Array<TopicResource>] Result of the List Topics operation.
|
16
|
+
attr_accessor :value
|
17
|
+
|
18
|
+
# @return [String] Link to the next set of results. Not empty if Value
|
19
|
+
# contains incomplete list of topics.
|
20
|
+
attr_accessor :next_link
|
21
|
+
|
22
|
+
# return [Proc] with next page method call.
|
23
|
+
attr_accessor :next_method
|
24
|
+
|
25
|
+
#
|
26
|
+
# Gets the rest of the items for the request, enabling auto-pagination.
|
27
|
+
#
|
28
|
+
# @return [Array<TopicResource>] operation results.
|
29
|
+
#
|
30
|
+
def get_all_items
|
31
|
+
items = @value
|
32
|
+
page = self
|
33
|
+
while page.next_link != nil do
|
34
|
+
page = page.get_next_page
|
35
|
+
items.concat(page.value)
|
36
|
+
end
|
37
|
+
items
|
38
|
+
end
|
39
|
+
|
40
|
+
#
|
41
|
+
# Gets the next page of results.
|
42
|
+
#
|
43
|
+
# @return [TopicListResult] with next page content.
|
44
|
+
#
|
45
|
+
def get_next_page
|
46
|
+
response = @next_method.call(@next_link).value! unless @next_method.nil?
|
47
|
+
unless response.nil?
|
48
|
+
@next_link = response.body.next_link
|
49
|
+
@value = response.body.value
|
50
|
+
self
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
#
|
55
|
+
# Mapper for TopicListResult class as Ruby Hash.
|
56
|
+
# This will be used for serialization/deserialization.
|
57
|
+
#
|
58
|
+
def self.mapper()
|
59
|
+
{
|
60
|
+
required: false,
|
61
|
+
serialized_name: 'TopicListResult',
|
62
|
+
type: {
|
63
|
+
name: 'Composite',
|
64
|
+
class_name: 'TopicListResult',
|
65
|
+
model_properties: {
|
66
|
+
value: {
|
67
|
+
required: false,
|
68
|
+
serialized_name: 'value',
|
69
|
+
type: {
|
70
|
+
name: 'Sequence',
|
71
|
+
element: {
|
72
|
+
required: false,
|
73
|
+
serialized_name: 'TopicResourceElementType',
|
74
|
+
type: {
|
75
|
+
name: 'Composite',
|
76
|
+
class_name: 'TopicResource'
|
77
|
+
}
|
78
|
+
}
|
79
|
+
}
|
80
|
+
},
|
81
|
+
next_link: {
|
82
|
+
required: false,
|
83
|
+
serialized_name: 'nextLink',
|
84
|
+
type: {
|
85
|
+
name: 'String'
|
86
|
+
}
|
87
|
+
}
|
88
|
+
}
|
89
|
+
}
|
90
|
+
}
|
91
|
+
end
|
92
|
+
end
|
93
|
+
end
|
94
|
+
end
|
@@ -0,0 +1,313 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0
|
3
|
+
# Changes may cause incorrect behavior and will be lost if the code is
|
4
|
+
# regenerated.
|
5
|
+
|
6
|
+
module Azure::ARM::ServiceBus
|
7
|
+
module Models
|
8
|
+
#
|
9
|
+
# Description of topic resource.
|
10
|
+
#
|
11
|
+
class TopicResource < MsRestAzure::Resource
|
12
|
+
|
13
|
+
include MsRestAzure
|
14
|
+
|
15
|
+
# @return [DateTime] Last time the message was sent, or a request was
|
16
|
+
# received, for this topic.
|
17
|
+
attr_accessor :accessed_at
|
18
|
+
|
19
|
+
# @return [String] TimeSpan idle interval after which the topic is
|
20
|
+
# automatically deleted. The minimum duration is 5 minutes.
|
21
|
+
attr_accessor :auto_delete_on_idle
|
22
|
+
|
23
|
+
# @return [EntityAvailabilityStatus] Entity availability status for the
|
24
|
+
# topic. Possible values include: 'Available', 'Limited', 'Renaming',
|
25
|
+
# 'Restoring', 'Unknown'
|
26
|
+
attr_accessor :entity_availability_status
|
27
|
+
|
28
|
+
# @return [DateTime] Exact time the message was created.
|
29
|
+
attr_accessor :created_at
|
30
|
+
|
31
|
+
# @return [MessageCountDetails]
|
32
|
+
attr_accessor :count_details
|
33
|
+
|
34
|
+
# @return [String] Default message time to live value. This is the
|
35
|
+
# duration after which the message expires, starting from when the
|
36
|
+
# message is sent to Service Bus. This is the default value used when
|
37
|
+
# TimeToLive is not set on a message itself.
|
38
|
+
attr_accessor :default_message_time_to_live
|
39
|
+
|
40
|
+
# @return [String] TimeSpan structure that defines the duration of the
|
41
|
+
# duplicate detection history. The default value is 10 minutes.
|
42
|
+
attr_accessor :duplicate_detection_history_time_window
|
43
|
+
|
44
|
+
# @return [Boolean] Value that indicates whether server-side batched
|
45
|
+
# operations are enabled.
|
46
|
+
attr_accessor :enable_batched_operations
|
47
|
+
|
48
|
+
# @return [Boolean] Value that indicates whether Express Entities are
|
49
|
+
# enabled. An express topic holds a message in memory temporarily before
|
50
|
+
# writing it to persistent storage.
|
51
|
+
attr_accessor :enable_express
|
52
|
+
|
53
|
+
# @return [Boolean] Value that indicates whether the topic to be
|
54
|
+
# partitioned across multiple message brokers is enabled.
|
55
|
+
attr_accessor :enable_partitioning
|
56
|
+
|
57
|
+
# @return [Boolean] Value that indicates whether partitioning is enabled
|
58
|
+
# or disabled.
|
59
|
+
attr_accessor :enable_subscription_partitioning
|
60
|
+
|
61
|
+
# @return [Boolean] Whether messages should be filtered before
|
62
|
+
# publishing.
|
63
|
+
attr_accessor :filtering_messages_before_publishing
|
64
|
+
|
65
|
+
# @return [Boolean] Value that indicates whether the message is
|
66
|
+
# accessible anonymously.
|
67
|
+
attr_accessor :is_anonymous_accessible
|
68
|
+
|
69
|
+
# @return [Boolean]
|
70
|
+
attr_accessor :is_express
|
71
|
+
|
72
|
+
# @return [Integer] Maximum size of the topic in megabytes, which is the
|
73
|
+
# size of the memory allocated for the topic.
|
74
|
+
attr_accessor :max_size_in_megabytes
|
75
|
+
|
76
|
+
# @return [Boolean] Value indicating if this topic requires duplicate
|
77
|
+
# detection.
|
78
|
+
attr_accessor :requires_duplicate_detection
|
79
|
+
|
80
|
+
# @return [Integer] Size of the topic, in bytes.
|
81
|
+
attr_accessor :size_in_bytes
|
82
|
+
|
83
|
+
# @return [EntityStatus] Enumerates the possible values for the status of
|
84
|
+
# a messaging entity. Possible values include: 'Active', 'Creating',
|
85
|
+
# 'Deleting', 'Disabled', 'ReceiveDisabled', 'Renaming', 'Restoring',
|
86
|
+
# 'SendDisabled', 'Unknown'
|
87
|
+
attr_accessor :status
|
88
|
+
|
89
|
+
# @return [Integer] Number of subscriptions.
|
90
|
+
attr_accessor :subscription_count
|
91
|
+
|
92
|
+
# @return [Boolean] Value that indicates whether the topic supports
|
93
|
+
# ordering.
|
94
|
+
attr_accessor :support_ordering
|
95
|
+
|
96
|
+
# @return [DateTime] The exact time the message was updated.
|
97
|
+
attr_accessor :updated_at
|
98
|
+
|
99
|
+
|
100
|
+
#
|
101
|
+
# Mapper for TopicResource class as Ruby Hash.
|
102
|
+
# This will be used for serialization/deserialization.
|
103
|
+
#
|
104
|
+
def self.mapper()
|
105
|
+
{
|
106
|
+
required: false,
|
107
|
+
serialized_name: 'TopicResource',
|
108
|
+
type: {
|
109
|
+
name: 'Composite',
|
110
|
+
class_name: 'TopicResource',
|
111
|
+
model_properties: {
|
112
|
+
id: {
|
113
|
+
required: false,
|
114
|
+
read_only: true,
|
115
|
+
serialized_name: 'id',
|
116
|
+
type: {
|
117
|
+
name: 'String'
|
118
|
+
}
|
119
|
+
},
|
120
|
+
name: {
|
121
|
+
required: false,
|
122
|
+
read_only: true,
|
123
|
+
serialized_name: 'name',
|
124
|
+
type: {
|
125
|
+
name: 'String'
|
126
|
+
}
|
127
|
+
},
|
128
|
+
type: {
|
129
|
+
required: false,
|
130
|
+
read_only: true,
|
131
|
+
serialized_name: 'type',
|
132
|
+
type: {
|
133
|
+
name: 'String'
|
134
|
+
}
|
135
|
+
},
|
136
|
+
location: {
|
137
|
+
required: true,
|
138
|
+
serialized_name: 'location',
|
139
|
+
type: {
|
140
|
+
name: 'String'
|
141
|
+
}
|
142
|
+
},
|
143
|
+
tags: {
|
144
|
+
required: false,
|
145
|
+
serialized_name: 'tags',
|
146
|
+
type: {
|
147
|
+
name: 'Dictionary',
|
148
|
+
value: {
|
149
|
+
required: false,
|
150
|
+
serialized_name: 'StringElementType',
|
151
|
+
type: {
|
152
|
+
name: 'String'
|
153
|
+
}
|
154
|
+
}
|
155
|
+
}
|
156
|
+
},
|
157
|
+
accessed_at: {
|
158
|
+
required: false,
|
159
|
+
serialized_name: 'properties.accessedAt',
|
160
|
+
type: {
|
161
|
+
name: 'DateTime'
|
162
|
+
}
|
163
|
+
},
|
164
|
+
auto_delete_on_idle: {
|
165
|
+
required: false,
|
166
|
+
serialized_name: 'properties.autoDeleteOnIdle',
|
167
|
+
type: {
|
168
|
+
name: 'String'
|
169
|
+
}
|
170
|
+
},
|
171
|
+
entity_availability_status: {
|
172
|
+
required: false,
|
173
|
+
serialized_name: 'properties.entityAvailabilityStatus ',
|
174
|
+
type: {
|
175
|
+
name: 'Enum',
|
176
|
+
module: 'EntityAvailabilityStatus'
|
177
|
+
}
|
178
|
+
},
|
179
|
+
created_at: {
|
180
|
+
required: false,
|
181
|
+
serialized_name: 'properties.createdAt',
|
182
|
+
type: {
|
183
|
+
name: 'DateTime'
|
184
|
+
}
|
185
|
+
},
|
186
|
+
count_details: {
|
187
|
+
required: false,
|
188
|
+
serialized_name: 'properties.countDetails',
|
189
|
+
type: {
|
190
|
+
name: 'Composite',
|
191
|
+
class_name: 'MessageCountDetails'
|
192
|
+
}
|
193
|
+
},
|
194
|
+
default_message_time_to_live: {
|
195
|
+
required: false,
|
196
|
+
serialized_name: 'properties.defaultMessageTimeToLive',
|
197
|
+
type: {
|
198
|
+
name: 'String'
|
199
|
+
}
|
200
|
+
},
|
201
|
+
duplicate_detection_history_time_window: {
|
202
|
+
required: false,
|
203
|
+
serialized_name: 'properties.duplicateDetectionHistoryTimeWindow ',
|
204
|
+
type: {
|
205
|
+
name: 'String'
|
206
|
+
}
|
207
|
+
},
|
208
|
+
enable_batched_operations: {
|
209
|
+
required: false,
|
210
|
+
serialized_name: 'properties.enableBatchedOperations',
|
211
|
+
type: {
|
212
|
+
name: 'Boolean'
|
213
|
+
}
|
214
|
+
},
|
215
|
+
enable_express: {
|
216
|
+
required: false,
|
217
|
+
serialized_name: 'properties.enableExpress',
|
218
|
+
type: {
|
219
|
+
name: 'Boolean'
|
220
|
+
}
|
221
|
+
},
|
222
|
+
enable_partitioning: {
|
223
|
+
required: false,
|
224
|
+
serialized_name: 'properties.enablePartitioning',
|
225
|
+
type: {
|
226
|
+
name: 'Boolean'
|
227
|
+
}
|
228
|
+
},
|
229
|
+
enable_subscription_partitioning: {
|
230
|
+
required: false,
|
231
|
+
serialized_name: 'properties.enableSubscriptionPartitioning',
|
232
|
+
type: {
|
233
|
+
name: 'Boolean'
|
234
|
+
}
|
235
|
+
},
|
236
|
+
filtering_messages_before_publishing: {
|
237
|
+
required: false,
|
238
|
+
serialized_name: 'properties.filteringMessagesBeforePublishing',
|
239
|
+
type: {
|
240
|
+
name: 'Boolean'
|
241
|
+
}
|
242
|
+
},
|
243
|
+
is_anonymous_accessible: {
|
244
|
+
required: false,
|
245
|
+
serialized_name: 'properties.isAnonymousAccessible',
|
246
|
+
type: {
|
247
|
+
name: 'Boolean'
|
248
|
+
}
|
249
|
+
},
|
250
|
+
is_express: {
|
251
|
+
required: false,
|
252
|
+
serialized_name: 'properties.isExpress',
|
253
|
+
type: {
|
254
|
+
name: 'Boolean'
|
255
|
+
}
|
256
|
+
},
|
257
|
+
max_size_in_megabytes: {
|
258
|
+
required: false,
|
259
|
+
serialized_name: 'properties.maxSizeInMegabytes',
|
260
|
+
type: {
|
261
|
+
name: 'Number'
|
262
|
+
}
|
263
|
+
},
|
264
|
+
requires_duplicate_detection: {
|
265
|
+
required: false,
|
266
|
+
serialized_name: 'properties.requiresDuplicateDetection',
|
267
|
+
type: {
|
268
|
+
name: 'Boolean'
|
269
|
+
}
|
270
|
+
},
|
271
|
+
size_in_bytes: {
|
272
|
+
required: false,
|
273
|
+
serialized_name: 'properties.sizeInBytes',
|
274
|
+
type: {
|
275
|
+
name: 'Number'
|
276
|
+
}
|
277
|
+
},
|
278
|
+
status: {
|
279
|
+
required: false,
|
280
|
+
serialized_name: 'properties.status',
|
281
|
+
type: {
|
282
|
+
name: 'Enum',
|
283
|
+
module: 'EntityStatus'
|
284
|
+
}
|
285
|
+
},
|
286
|
+
subscription_count: {
|
287
|
+
required: false,
|
288
|
+
serialized_name: 'properties.subscriptionCount',
|
289
|
+
type: {
|
290
|
+
name: 'Number'
|
291
|
+
}
|
292
|
+
},
|
293
|
+
support_ordering: {
|
294
|
+
required: false,
|
295
|
+
serialized_name: 'properties.supportOrdering',
|
296
|
+
type: {
|
297
|
+
name: 'Boolean'
|
298
|
+
}
|
299
|
+
},
|
300
|
+
updated_at: {
|
301
|
+
required: false,
|
302
|
+
serialized_name: 'properties.updatedAt',
|
303
|
+
type: {
|
304
|
+
name: 'DateTime'
|
305
|
+
}
|
306
|
+
}
|
307
|
+
}
|
308
|
+
}
|
309
|
+
}
|
310
|
+
end
|
311
|
+
end
|
312
|
+
end
|
313
|
+
end
|