azure_mgmt_event_grid 0.18.0 → 0.19.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 +4 -4
- data/lib/2017-06-15-preview/generated/azure_mgmt_event_grid/event_grid_management_client.rb +1 -1
- data/lib/2017-09-15-preview/generated/azure_mgmt_event_grid/event_grid_management_client.rb +1 -1
- data/lib/2018-01-01/generated/azure_mgmt_event_grid/event_grid_management_client.rb +1 -1
- data/lib/2018-05-01-preview/generated/azure_mgmt_event_grid/event_grid_management_client.rb +1 -1
- data/lib/2018-09-15-preview/generated/azure_mgmt_event_grid/event_grid_management_client.rb +1 -1
- data/lib/2019-01-01/generated/azure_mgmt_event_grid/event_grid_management_client.rb +1 -1
- data/lib/2019-02-01-preview/generated/azure_mgmt_event_grid/event_grid_management_client.rb +1 -1
- data/lib/2019-06-01/generated/azure_mgmt_event_grid/event_grid_management_client.rb +1 -1
- data/lib/2020-01-01-preview/generated/azure_mgmt_event_grid/event_grid_management_client.rb +1 -1
- data/lib/2020-04-01-preview/generated/azure_mgmt_event_grid.rb +38 -39
- data/lib/2020-04-01-preview/generated/azure_mgmt_event_grid/event_channels.rb +106 -62
- data/lib/2020-04-01-preview/generated/azure_mgmt_event_grid/event_grid_management_client.rb +1 -1
- data/lib/2020-04-01-preview/generated/azure_mgmt_event_grid/models/connection_state.rb +1 -1
- data/lib/2020-04-01-preview/generated/azure_mgmt_event_grid/models/event_channel.rb +13 -0
- data/lib/2020-04-01-preview/generated/azure_mgmt_event_grid/models/event_channel_filter.rb +119 -0
- data/lib/2020-04-01-preview/generated/azure_mgmt_event_grid/models/partner_registration_update_parameters.rb +20 -0
- data/lib/2020-04-01-preview/generated/azure_mgmt_event_grid/models/private_endpoint_connection.rb +2 -1
- data/lib/2020-04-01-preview/generated/azure_mgmt_event_grid/models/topic.rb +1 -2
- data/lib/2020-04-01-preview/generated/azure_mgmt_event_grid/partner_topic_event_subscriptions.rb +173 -8
- data/lib/2020-04-01-preview/generated/azure_mgmt_event_grid/private_endpoint_connections.rb +27 -9
- data/lib/2020-04-01-preview/generated/azure_mgmt_event_grid/system_topic_event_subscriptions.rb +173 -8
- data/lib/profiles/latest/modules/eventgrid_profile_module.rb +126 -130
- data/lib/version.rb +1 -1
- metadata +3 -4
- data/lib/2020-04-01-preview/generated/azure_mgmt_event_grid/models/sku_definitions_for_resource_type.rb +0 -67
- data/lib/2020-04-01-preview/generated/azure_mgmt_event_grid/models/sku_definitions_for_resource_type_list_result.rb +0 -67
data/lib/2020-04-01-preview/generated/azure_mgmt_event_grid/system_topic_event_subscriptions.rb
CHANGED
@@ -416,14 +416,25 @@ module Azure::EventGrid::Mgmt::V2020_04_01_preview
|
|
416
416
|
# @param resource_group_name [String] The name of the resource group within the
|
417
417
|
# user's subscription.
|
418
418
|
# @param system_topic_name [String] Name of the system topic.
|
419
|
+
# @param filter [String] The query used to filter the search results using
|
420
|
+
# OData syntax. Filtering is permitted on the 'name' property only and with
|
421
|
+
# limited number of OData operations. These operations are: the 'contains'
|
422
|
+
# function as well as the following logical operations: not, and, or, eq (for
|
423
|
+
# equal), and ne (for not equal). No arithmetic operations are supported. The
|
424
|
+
# following is a valid filter example: $filter=contains(namE, 'PATTERN') and
|
425
|
+
# name ne 'PATTERN-1'. The following is not a valid filter example:
|
426
|
+
# $filter=location eq 'westus'.
|
427
|
+
# @param top [Integer] The number of results to return per page for the list
|
428
|
+
# operation. Valid range for top parameter is 1 to 100. If not specified, the
|
429
|
+
# default number of results to be returned is 20 items per page.
|
419
430
|
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
420
431
|
# will be added to the HTTP request.
|
421
432
|
#
|
422
|
-
# @return [
|
433
|
+
# @return [Array<EventSubscription>] operation results.
|
423
434
|
#
|
424
|
-
def list_by_system_topic(resource_group_name, system_topic_name, custom_headers:nil)
|
425
|
-
|
426
|
-
|
435
|
+
def list_by_system_topic(resource_group_name, system_topic_name, filter:nil, top:nil, custom_headers:nil)
|
436
|
+
first_page = list_by_system_topic_as_lazy(resource_group_name, system_topic_name, filter:filter, top:top, custom_headers:custom_headers)
|
437
|
+
first_page.get_all_items
|
427
438
|
end
|
428
439
|
|
429
440
|
#
|
@@ -434,13 +445,24 @@ module Azure::EventGrid::Mgmt::V2020_04_01_preview
|
|
434
445
|
# @param resource_group_name [String] The name of the resource group within the
|
435
446
|
# user's subscription.
|
436
447
|
# @param system_topic_name [String] Name of the system topic.
|
448
|
+
# @param filter [String] The query used to filter the search results using
|
449
|
+
# OData syntax. Filtering is permitted on the 'name' property only and with
|
450
|
+
# limited number of OData operations. These operations are: the 'contains'
|
451
|
+
# function as well as the following logical operations: not, and, or, eq (for
|
452
|
+
# equal), and ne (for not equal). No arithmetic operations are supported. The
|
453
|
+
# following is a valid filter example: $filter=contains(namE, 'PATTERN') and
|
454
|
+
# name ne 'PATTERN-1'. The following is not a valid filter example:
|
455
|
+
# $filter=location eq 'westus'.
|
456
|
+
# @param top [Integer] The number of results to return per page for the list
|
457
|
+
# operation. Valid range for top parameter is 1 to 100. If not specified, the
|
458
|
+
# default number of results to be returned is 20 items per page.
|
437
459
|
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
438
460
|
# will be added to the HTTP request.
|
439
461
|
#
|
440
462
|
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
441
463
|
#
|
442
|
-
def list_by_system_topic_with_http_info(resource_group_name, system_topic_name, custom_headers:nil)
|
443
|
-
list_by_system_topic_async(resource_group_name, system_topic_name, custom_headers:custom_headers).value!
|
464
|
+
def list_by_system_topic_with_http_info(resource_group_name, system_topic_name, filter:nil, top:nil, custom_headers:nil)
|
465
|
+
list_by_system_topic_async(resource_group_name, system_topic_name, filter:filter, top:top, custom_headers:custom_headers).value!
|
444
466
|
end
|
445
467
|
|
446
468
|
#
|
@@ -451,12 +473,23 @@ module Azure::EventGrid::Mgmt::V2020_04_01_preview
|
|
451
473
|
# @param resource_group_name [String] The name of the resource group within the
|
452
474
|
# user's subscription.
|
453
475
|
# @param system_topic_name [String] Name of the system topic.
|
476
|
+
# @param filter [String] The query used to filter the search results using
|
477
|
+
# OData syntax. Filtering is permitted on the 'name' property only and with
|
478
|
+
# limited number of OData operations. These operations are: the 'contains'
|
479
|
+
# function as well as the following logical operations: not, and, or, eq (for
|
480
|
+
# equal), and ne (for not equal). No arithmetic operations are supported. The
|
481
|
+
# following is a valid filter example: $filter=contains(namE, 'PATTERN') and
|
482
|
+
# name ne 'PATTERN-1'. The following is not a valid filter example:
|
483
|
+
# $filter=location eq 'westus'.
|
484
|
+
# @param top [Integer] The number of results to return per page for the list
|
485
|
+
# operation. Valid range for top parameter is 1 to 100. If not specified, the
|
486
|
+
# default number of results to be returned is 20 items per page.
|
454
487
|
# @param [Hash{String => String}] A hash of custom headers that will be added
|
455
488
|
# to the HTTP request.
|
456
489
|
#
|
457
490
|
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
458
491
|
#
|
459
|
-
def list_by_system_topic_async(resource_group_name, system_topic_name, custom_headers:nil)
|
492
|
+
def list_by_system_topic_async(resource_group_name, system_topic_name, filter:nil, top:nil, custom_headers:nil)
|
460
493
|
fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
|
461
494
|
fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil?
|
462
495
|
fail ArgumentError, 'system_topic_name is nil' if system_topic_name.nil?
|
@@ -476,7 +509,7 @@ module Azure::EventGrid::Mgmt::V2020_04_01_preview
|
|
476
509
|
options = {
|
477
510
|
middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
|
478
511
|
path_params: {'subscriptionId' => @client.subscription_id,'resourceGroupName' => resource_group_name,'systemTopicName' => system_topic_name},
|
479
|
-
query_params: {'api-version' => @client.api_version},
|
512
|
+
query_params: {'api-version' => @client.api_version,'$filter' => filter,'$top' => top},
|
480
513
|
headers: request_headers.merge(custom_headers || {}),
|
481
514
|
base_url: request_url
|
482
515
|
}
|
@@ -870,5 +903,137 @@ module Azure::EventGrid::Mgmt::V2020_04_01_preview
|
|
870
903
|
promise.execute
|
871
904
|
end
|
872
905
|
|
906
|
+
#
|
907
|
+
# List event subscriptions of a system topic.
|
908
|
+
#
|
909
|
+
# List event subscriptions that belong to a specific system topic.
|
910
|
+
#
|
911
|
+
# @param next_page_link [String] The NextLink from the previous successful call
|
912
|
+
# to List operation.
|
913
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
914
|
+
# will be added to the HTTP request.
|
915
|
+
#
|
916
|
+
# @return [EventSubscriptionsListResult] operation results.
|
917
|
+
#
|
918
|
+
def list_by_system_topic_next(next_page_link, custom_headers:nil)
|
919
|
+
response = list_by_system_topic_next_async(next_page_link, custom_headers:custom_headers).value!
|
920
|
+
response.body unless response.nil?
|
921
|
+
end
|
922
|
+
|
923
|
+
#
|
924
|
+
# List event subscriptions of a system topic.
|
925
|
+
#
|
926
|
+
# List event subscriptions that belong to a specific system topic.
|
927
|
+
#
|
928
|
+
# @param next_page_link [String] The NextLink from the previous successful call
|
929
|
+
# to List operation.
|
930
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
931
|
+
# will be added to the HTTP request.
|
932
|
+
#
|
933
|
+
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
934
|
+
#
|
935
|
+
def list_by_system_topic_next_with_http_info(next_page_link, custom_headers:nil)
|
936
|
+
list_by_system_topic_next_async(next_page_link, custom_headers:custom_headers).value!
|
937
|
+
end
|
938
|
+
|
939
|
+
#
|
940
|
+
# List event subscriptions of a system topic.
|
941
|
+
#
|
942
|
+
# List event subscriptions that belong to a specific system topic.
|
943
|
+
#
|
944
|
+
# @param next_page_link [String] The NextLink from the previous successful call
|
945
|
+
# to List operation.
|
946
|
+
# @param [Hash{String => String}] A hash of custom headers that will be added
|
947
|
+
# to the HTTP request.
|
948
|
+
#
|
949
|
+
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
950
|
+
#
|
951
|
+
def list_by_system_topic_next_async(next_page_link, custom_headers:nil)
|
952
|
+
fail ArgumentError, 'next_page_link is nil' if next_page_link.nil?
|
953
|
+
|
954
|
+
|
955
|
+
request_headers = {}
|
956
|
+
request_headers['Content-Type'] = 'application/json; charset=utf-8'
|
957
|
+
|
958
|
+
# Set Headers
|
959
|
+
request_headers['x-ms-client-request-id'] = SecureRandom.uuid
|
960
|
+
request_headers['accept-language'] = @client.accept_language unless @client.accept_language.nil?
|
961
|
+
path_template = '{nextLink}'
|
962
|
+
|
963
|
+
request_url = @base_url || @client.base_url
|
964
|
+
|
965
|
+
options = {
|
966
|
+
middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
|
967
|
+
skip_encoding_path_params: {'nextLink' => next_page_link},
|
968
|
+
headers: request_headers.merge(custom_headers || {}),
|
969
|
+
base_url: request_url
|
970
|
+
}
|
971
|
+
promise = @client.make_request_async(:get, path_template, options)
|
972
|
+
|
973
|
+
promise = promise.then do |result|
|
974
|
+
http_response = result.response
|
975
|
+
status_code = http_response.status
|
976
|
+
response_content = http_response.body
|
977
|
+
unless status_code == 200
|
978
|
+
error_model = JSON.load(response_content)
|
979
|
+
fail MsRestAzure::AzureOperationError.new(result.request, http_response, error_model)
|
980
|
+
end
|
981
|
+
|
982
|
+
result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil?
|
983
|
+
result.correlation_request_id = http_response['x-ms-correlation-request-id'] unless http_response['x-ms-correlation-request-id'].nil?
|
984
|
+
result.client_request_id = http_response['x-ms-client-request-id'] unless http_response['x-ms-client-request-id'].nil?
|
985
|
+
# Deserialize Response
|
986
|
+
if status_code == 200
|
987
|
+
begin
|
988
|
+
parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content)
|
989
|
+
result_mapper = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::EventSubscriptionsListResult.mapper()
|
990
|
+
result.body = @client.deserialize(result_mapper, parsed_response)
|
991
|
+
rescue Exception => e
|
992
|
+
fail MsRest::DeserializationError.new('Error occurred in deserializing the response', e.message, e.backtrace, result)
|
993
|
+
end
|
994
|
+
end
|
995
|
+
|
996
|
+
result
|
997
|
+
end
|
998
|
+
|
999
|
+
promise.execute
|
1000
|
+
end
|
1001
|
+
|
1002
|
+
#
|
1003
|
+
# List event subscriptions of a system topic.
|
1004
|
+
#
|
1005
|
+
# List event subscriptions that belong to a specific system topic.
|
1006
|
+
#
|
1007
|
+
# @param resource_group_name [String] The name of the resource group within the
|
1008
|
+
# user's subscription.
|
1009
|
+
# @param system_topic_name [String] Name of the system topic.
|
1010
|
+
# @param filter [String] The query used to filter the search results using
|
1011
|
+
# OData syntax. Filtering is permitted on the 'name' property only and with
|
1012
|
+
# limited number of OData operations. These operations are: the 'contains'
|
1013
|
+
# function as well as the following logical operations: not, and, or, eq (for
|
1014
|
+
# equal), and ne (for not equal). No arithmetic operations are supported. The
|
1015
|
+
# following is a valid filter example: $filter=contains(namE, 'PATTERN') and
|
1016
|
+
# name ne 'PATTERN-1'. The following is not a valid filter example:
|
1017
|
+
# $filter=location eq 'westus'.
|
1018
|
+
# @param top [Integer] The number of results to return per page for the list
|
1019
|
+
# operation. Valid range for top parameter is 1 to 100. If not specified, the
|
1020
|
+
# default number of results to be returned is 20 items per page.
|
1021
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
1022
|
+
# will be added to the HTTP request.
|
1023
|
+
#
|
1024
|
+
# @return [EventSubscriptionsListResult] which provide lazy access to pages of
|
1025
|
+
# the response.
|
1026
|
+
#
|
1027
|
+
def list_by_system_topic_as_lazy(resource_group_name, system_topic_name, filter:nil, top:nil, custom_headers:nil)
|
1028
|
+
response = list_by_system_topic_async(resource_group_name, system_topic_name, filter:filter, top:top, custom_headers:custom_headers).value!
|
1029
|
+
unless response.nil?
|
1030
|
+
page = response.body
|
1031
|
+
page.next_method = Proc.new do |next_page_link|
|
1032
|
+
list_by_system_topic_next_async(next_page_link, custom_headers:custom_headers)
|
1033
|
+
end
|
1034
|
+
page
|
1035
|
+
end
|
1036
|
+
end
|
1037
|
+
|
873
1038
|
end
|
874
1039
|
end
|
@@ -24,69 +24,66 @@ module Azure::EventGrid::Profiles::Latest
|
|
24
24
|
TopicTypes = Azure::EventGrid::Mgmt::V2020_04_01_preview::TopicTypes
|
25
25
|
|
26
26
|
module Models
|
27
|
-
|
27
|
+
PartnerTopicTypesListResult = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PartnerTopicTypesListResult
|
28
28
|
PrivateEndpoint = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PrivateEndpoint
|
29
|
-
|
30
|
-
PartnerNamespaceSharedAccessKeys = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PartnerNamespaceSharedAccessKeys
|
31
|
-
InputSchemaMapping = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::InputSchemaMapping
|
32
|
-
PartnerRegistrationsListResult = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PartnerRegistrationsListResult
|
33
|
-
ResourceSku = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::ResourceSku
|
34
|
-
PartnerRegistrationUpdateParameters = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PartnerRegistrationUpdateParameters
|
35
|
-
IdentityInfo = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::IdentityInfo
|
36
|
-
SkuDefinitionsForResourceType = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::SkuDefinitionsForResourceType
|
37
|
-
JsonField = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::JsonField
|
38
|
-
PartnerNamespaceRegenerateKeyRequest = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PartnerNamespaceRegenerateKeyRequest
|
39
|
-
Resource = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::Resource
|
29
|
+
PartnerTopicsListResult = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PartnerTopicsListResult
|
40
30
|
PartnerNamespacesListResult = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PartnerNamespacesListResult
|
31
|
+
PartnerNamespaceUpdateParameters = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PartnerNamespaceUpdateParameters
|
32
|
+
InboundIpRule = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::InboundIpRule
|
33
|
+
PrivateLinkResource = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PrivateLinkResource
|
34
|
+
UserIdentityProperties = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::UserIdentityProperties
|
35
|
+
OperationsListResult = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::OperationsListResult
|
36
|
+
Resource = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::Resource
|
37
|
+
Operation = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::Operation
|
41
38
|
JsonFieldWithDefault = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::JsonFieldWithDefault
|
39
|
+
OperationInfo = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::OperationInfo
|
40
|
+
PartnerRegistrationEventTypesListResult = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PartnerRegistrationEventTypesListResult
|
41
|
+
EventSubscriptionsListResult = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::EventSubscriptionsListResult
|
42
42
|
DomainUpdateParameters = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::DomainUpdateParameters
|
43
|
-
|
43
|
+
ConnectionState = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::ConnectionState
|
44
44
|
DomainSharedAccessKeys = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::DomainSharedAccessKeys
|
45
|
-
|
46
|
-
|
47
|
-
|
45
|
+
EventSubscriptionFullUrl = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::EventSubscriptionFullUrl
|
46
|
+
PartnerRegistrationsListResult = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PartnerRegistrationsListResult
|
47
|
+
EventChannelsListResult = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::EventChannelsListResult
|
48
48
|
EventChannelSource = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::EventChannelSource
|
49
|
-
PrivateEndpointConnectionListResult = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PrivateEndpointConnectionListResult
|
50
|
-
OperationsListResult = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::OperationsListResult
|
51
|
-
PartnerTopicsListResult = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PartnerTopicsListResult
|
52
49
|
EventSubscriptionDestination = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::EventSubscriptionDestination
|
53
|
-
|
50
|
+
AdvancedFilter = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::AdvancedFilter
|
51
|
+
EventSubscriptionIdentity = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::EventSubscriptionIdentity
|
52
|
+
PartnerRegistrationUpdateParameters = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PartnerRegistrationUpdateParameters
|
54
53
|
DeliveryWithResourceIdentity = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::DeliveryWithResourceIdentity
|
55
|
-
|
54
|
+
PartnerNamespaceRegenerateKeyRequest = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PartnerNamespaceRegenerateKeyRequest
|
56
55
|
EventSubscriptionFilter = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::EventSubscriptionFilter
|
57
|
-
|
56
|
+
InputSchemaMapping = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::InputSchemaMapping
|
57
|
+
RetryPolicy = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::RetryPolicy
|
58
|
+
IdentityInfo = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::IdentityInfo
|
58
59
|
DeadLetterDestination = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::DeadLetterDestination
|
59
|
-
|
60
|
-
|
61
|
-
|
60
|
+
PartnerTopicUpdateParameters = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PartnerTopicUpdateParameters
|
61
|
+
DeadLetterWithResourceIdentity = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::DeadLetterWithResourceIdentity
|
62
|
+
DomainsListResult = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::DomainsListResult
|
63
|
+
DomainTopicsListResult = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::DomainTopicsListResult
|
62
64
|
TopicTypesListResult = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::TopicTypesListResult
|
63
|
-
|
65
|
+
EventChannelFilter = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::EventChannelFilter
|
64
66
|
TopicRegenerateKeyRequest = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::TopicRegenerateKeyRequest
|
65
|
-
|
67
|
+
PartnerNamespaceSharedAccessKeys = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PartnerNamespaceSharedAccessKeys
|
66
68
|
TopicSharedAccessKeys = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::TopicSharedAccessKeys
|
67
|
-
|
69
|
+
JsonField = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::JsonField
|
68
70
|
TopicsListResult = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::TopicsListResult
|
69
|
-
|
71
|
+
DomainRegenerateKeyRequest = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::DomainRegenerateKeyRequest
|
70
72
|
TopicUpdateParameters = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::TopicUpdateParameters
|
71
|
-
|
73
|
+
PrivateEndpointConnectionListResult = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PrivateEndpointConnectionListResult
|
72
74
|
SystemTopicsListResult = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::SystemTopicsListResult
|
73
|
-
|
75
|
+
EventTypesListResult = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::EventTypesListResult
|
74
76
|
SystemTopicUpdateParameters = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::SystemTopicUpdateParameters
|
75
|
-
|
77
|
+
ResourceSku = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::ResourceSku
|
78
|
+
PrivateLinkResourcesListResult = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PrivateLinkResourcesListResult
|
79
|
+
EventChannelDestination = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::EventChannelDestination
|
76
80
|
EventSubscriptionUpdateParameters = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::EventSubscriptionUpdateParameters
|
77
|
-
DomainsListResult = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::DomainsListResult
|
78
|
-
EventSubscriptionFullUrl = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::EventSubscriptionFullUrl
|
79
|
-
OperationInfo = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::OperationInfo
|
80
|
-
EventChannelsListResult = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::EventChannelsListResult
|
81
|
-
EventSubscriptionsListResult = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::EventSubscriptionsListResult
|
82
81
|
PrivateEndpointConnection = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PrivateEndpointConnection
|
83
82
|
JsonInputSchemaMapping = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::JsonInputSchemaMapping
|
84
83
|
TrackedResource = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::TrackedResource
|
85
84
|
Domain = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::Domain
|
86
85
|
DomainTopic = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::DomainTopic
|
87
|
-
EventChannel = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::EventChannel
|
88
86
|
NumberInAdvancedFilter = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::NumberInAdvancedFilter
|
89
|
-
StorageBlobDeadLetterDestination = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::StorageBlobDeadLetterDestination
|
90
87
|
NumberNotInAdvancedFilter = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::NumberNotInAdvancedFilter
|
91
88
|
NumberLessThanAdvancedFilter = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::NumberLessThanAdvancedFilter
|
92
89
|
NumberGreaterThanAdvancedFilter = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::NumberGreaterThanAdvancedFilter
|
@@ -98,6 +95,8 @@ module Azure::EventGrid::Profiles::Latest
|
|
98
95
|
StringBeginsWithAdvancedFilter = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::StringBeginsWithAdvancedFilter
|
99
96
|
StringEndsWithAdvancedFilter = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::StringEndsWithAdvancedFilter
|
100
97
|
StringContainsAdvancedFilter = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::StringContainsAdvancedFilter
|
98
|
+
EventChannel = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::EventChannel
|
99
|
+
StorageBlobDeadLetterDestination = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::StorageBlobDeadLetterDestination
|
101
100
|
WebHookEventSubscriptionDestination = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::WebHookEventSubscriptionDestination
|
102
101
|
EventHubEventSubscriptionDestination = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::EventHubEventSubscriptionDestination
|
103
102
|
StorageQueueEventSubscriptionDestination = Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::StorageQueueEventSubscriptionDestination
|
@@ -199,170 +198,167 @@ module Azure::EventGrid::Profiles::Latest
|
|
199
198
|
end
|
200
199
|
|
201
200
|
class ModelClasses
|
202
|
-
def
|
203
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::
|
201
|
+
def partner_topic_types_list_result
|
202
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PartnerTopicTypesListResult
|
204
203
|
end
|
205
204
|
def private_endpoint
|
206
205
|
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PrivateEndpoint
|
207
206
|
end
|
208
|
-
def
|
209
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::
|
210
|
-
end
|
211
|
-
def partner_namespace_shared_access_keys
|
212
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PartnerNamespaceSharedAccessKeys
|
213
|
-
end
|
214
|
-
def input_schema_mapping
|
215
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::InputSchemaMapping
|
216
|
-
end
|
217
|
-
def partner_registrations_list_result
|
218
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PartnerRegistrationsListResult
|
207
|
+
def partner_topics_list_result
|
208
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PartnerTopicsListResult
|
219
209
|
end
|
220
|
-
def
|
221
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::
|
210
|
+
def partner_namespaces_list_result
|
211
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PartnerNamespacesListResult
|
222
212
|
end
|
223
|
-
def
|
224
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::
|
213
|
+
def partner_namespace_update_parameters
|
214
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PartnerNamespaceUpdateParameters
|
225
215
|
end
|
226
|
-
def
|
227
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::
|
216
|
+
def inbound_ip_rule
|
217
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::InboundIpRule
|
228
218
|
end
|
229
|
-
def
|
230
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::
|
219
|
+
def private_link_resource
|
220
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PrivateLinkResource
|
231
221
|
end
|
232
|
-
def
|
233
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::
|
222
|
+
def user_identity_properties
|
223
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::UserIdentityProperties
|
234
224
|
end
|
235
|
-
def
|
236
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::
|
225
|
+
def operations_list_result
|
226
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::OperationsListResult
|
237
227
|
end
|
238
228
|
def resource
|
239
229
|
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::Resource
|
240
230
|
end
|
241
|
-
def
|
242
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::
|
231
|
+
def operation
|
232
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::Operation
|
243
233
|
end
|
244
234
|
def json_field_with_default
|
245
235
|
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::JsonFieldWithDefault
|
246
236
|
end
|
237
|
+
def operation_info
|
238
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::OperationInfo
|
239
|
+
end
|
240
|
+
def partner_registration_event_types_list_result
|
241
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PartnerRegistrationEventTypesListResult
|
242
|
+
end
|
243
|
+
def event_subscriptions_list_result
|
244
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::EventSubscriptionsListResult
|
245
|
+
end
|
247
246
|
def domain_update_parameters
|
248
247
|
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::DomainUpdateParameters
|
249
248
|
end
|
250
|
-
def
|
251
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::
|
249
|
+
def connection_state
|
250
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::ConnectionState
|
252
251
|
end
|
253
252
|
def domain_shared_access_keys
|
254
253
|
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::DomainSharedAccessKeys
|
255
254
|
end
|
256
|
-
def
|
257
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::
|
255
|
+
def event_subscription_full_url
|
256
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::EventSubscriptionFullUrl
|
258
257
|
end
|
259
|
-
def
|
260
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::
|
258
|
+
def partner_registrations_list_result
|
259
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PartnerRegistrationsListResult
|
261
260
|
end
|
262
|
-
def
|
263
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::
|
261
|
+
def event_channels_list_result
|
262
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::EventChannelsListResult
|
264
263
|
end
|
265
264
|
def event_channel_source
|
266
265
|
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::EventChannelSource
|
267
266
|
end
|
268
|
-
def private_endpoint_connection_list_result
|
269
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PrivateEndpointConnectionListResult
|
270
|
-
end
|
271
|
-
def operations_list_result
|
272
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::OperationsListResult
|
273
|
-
end
|
274
|
-
def partner_topics_list_result
|
275
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PartnerTopicsListResult
|
276
|
-
end
|
277
267
|
def event_subscription_destination
|
278
268
|
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::EventSubscriptionDestination
|
279
269
|
end
|
280
|
-
def
|
281
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::
|
270
|
+
def advanced_filter
|
271
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::AdvancedFilter
|
272
|
+
end
|
273
|
+
def event_subscription_identity
|
274
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::EventSubscriptionIdentity
|
275
|
+
end
|
276
|
+
def partner_registration_update_parameters
|
277
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PartnerRegistrationUpdateParameters
|
282
278
|
end
|
283
279
|
def delivery_with_resource_identity
|
284
280
|
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::DeliveryWithResourceIdentity
|
285
281
|
end
|
286
|
-
def
|
287
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::
|
282
|
+
def partner_namespace_regenerate_key_request
|
283
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PartnerNamespaceRegenerateKeyRequest
|
288
284
|
end
|
289
285
|
def event_subscription_filter
|
290
286
|
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::EventSubscriptionFilter
|
291
287
|
end
|
292
|
-
def
|
293
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::
|
288
|
+
def input_schema_mapping
|
289
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::InputSchemaMapping
|
290
|
+
end
|
291
|
+
def retry_policy
|
292
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::RetryPolicy
|
293
|
+
end
|
294
|
+
def identity_info
|
295
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::IdentityInfo
|
294
296
|
end
|
295
297
|
def dead_letter_destination
|
296
298
|
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::DeadLetterDestination
|
297
299
|
end
|
298
|
-
def
|
299
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::
|
300
|
+
def partner_topic_update_parameters
|
301
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PartnerTopicUpdateParameters
|
300
302
|
end
|
301
|
-
def
|
302
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::
|
303
|
+
def dead_letter_with_resource_identity
|
304
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::DeadLetterWithResourceIdentity
|
303
305
|
end
|
304
|
-
def
|
305
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::
|
306
|
+
def domains_list_result
|
307
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::DomainsListResult
|
308
|
+
end
|
309
|
+
def domain_topics_list_result
|
310
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::DomainTopicsListResult
|
306
311
|
end
|
307
312
|
def topic_types_list_result
|
308
313
|
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::TopicTypesListResult
|
309
314
|
end
|
310
|
-
def
|
311
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::
|
315
|
+
def event_channel_filter
|
316
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::EventChannelFilter
|
312
317
|
end
|
313
318
|
def topic_regenerate_key_request
|
314
319
|
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::TopicRegenerateKeyRequest
|
315
320
|
end
|
316
|
-
def
|
317
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::
|
321
|
+
def partner_namespace_shared_access_keys
|
322
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PartnerNamespaceSharedAccessKeys
|
318
323
|
end
|
319
324
|
def topic_shared_access_keys
|
320
325
|
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::TopicSharedAccessKeys
|
321
326
|
end
|
322
|
-
def
|
323
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::
|
327
|
+
def json_field
|
328
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::JsonField
|
324
329
|
end
|
325
330
|
def topics_list_result
|
326
331
|
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::TopicsListResult
|
327
332
|
end
|
328
|
-
def
|
329
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::
|
333
|
+
def domain_regenerate_key_request
|
334
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::DomainRegenerateKeyRequest
|
330
335
|
end
|
331
336
|
def topic_update_parameters
|
332
337
|
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::TopicUpdateParameters
|
333
338
|
end
|
334
|
-
def
|
335
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::
|
339
|
+
def private_endpoint_connection_list_result
|
340
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PrivateEndpointConnectionListResult
|
336
341
|
end
|
337
342
|
def system_topics_list_result
|
338
343
|
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::SystemTopicsListResult
|
339
344
|
end
|
340
|
-
def
|
341
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::
|
345
|
+
def event_types_list_result
|
346
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::EventTypesListResult
|
342
347
|
end
|
343
348
|
def system_topic_update_parameters
|
344
349
|
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::SystemTopicUpdateParameters
|
345
350
|
end
|
346
|
-
def
|
347
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::
|
348
|
-
end
|
349
|
-
def event_subscription_update_parameters
|
350
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::EventSubscriptionUpdateParameters
|
351
|
-
end
|
352
|
-
def domains_list_result
|
353
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::DomainsListResult
|
354
|
-
end
|
355
|
-
def event_subscription_full_url
|
356
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::EventSubscriptionFullUrl
|
351
|
+
def resource_sku
|
352
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::ResourceSku
|
357
353
|
end
|
358
|
-
def
|
359
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::
|
354
|
+
def private_link_resources_list_result
|
355
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PrivateLinkResourcesListResult
|
360
356
|
end
|
361
|
-
def
|
362
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::
|
357
|
+
def event_channel_destination
|
358
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::EventChannelDestination
|
363
359
|
end
|
364
|
-
def
|
365
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::
|
360
|
+
def event_subscription_update_parameters
|
361
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::EventSubscriptionUpdateParameters
|
366
362
|
end
|
367
363
|
def private_endpoint_connection
|
368
364
|
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PrivateEndpointConnection
|
@@ -379,15 +375,9 @@ module Azure::EventGrid::Profiles::Latest
|
|
379
375
|
def domain_topic
|
380
376
|
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::DomainTopic
|
381
377
|
end
|
382
|
-
def event_channel
|
383
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::EventChannel
|
384
|
-
end
|
385
378
|
def number_in_advanced_filter
|
386
379
|
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::NumberInAdvancedFilter
|
387
380
|
end
|
388
|
-
def storage_blob_dead_letter_destination
|
389
|
-
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::StorageBlobDeadLetterDestination
|
390
|
-
end
|
391
381
|
def number_not_in_advanced_filter
|
392
382
|
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::NumberNotInAdvancedFilter
|
393
383
|
end
|
@@ -421,6 +411,12 @@ module Azure::EventGrid::Profiles::Latest
|
|
421
411
|
def string_contains_advanced_filter
|
422
412
|
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::StringContainsAdvancedFilter
|
423
413
|
end
|
414
|
+
def event_channel
|
415
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::EventChannel
|
416
|
+
end
|
417
|
+
def storage_blob_dead_letter_destination
|
418
|
+
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::StorageBlobDeadLetterDestination
|
419
|
+
end
|
424
420
|
def web_hook_event_subscription_destination
|
425
421
|
Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::WebHookEventSubscriptionDestination
|
426
422
|
end
|