Skip to content

Commit

Permalink
[mgmt] eventgrid release (#27969)
Browse files Browse the repository at this point in the history
  • Loading branch information
kazrael2119 authored Dec 11, 2023
1 parent 4248b4f commit 3ffd7c7
Show file tree
Hide file tree
Showing 120 changed files with 585 additions and 161 deletions.
363 changes: 354 additions & 9 deletions sdk/eventgrid/arm-eventgrid/CHANGELOG.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions sdk/eventgrid/arm-eventgrid/_meta.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"commit": "6301be1289cf6b8cf44074f0e4229c2adf822991",
"commit": "cb798ffa99c193a88388f358965f377fde3699e8",
"readme": "specification/eventgrid/resource-manager/readme.md",
"autorest_command": "autorest --version=3.9.7 --typescript --modelerfour.lenient-model-deduplication --azure-arm --head-as-boolean=true --license-header=MICROSOFT_MIT_NO_VERSION --generate-test --typescript-sdks-folder=D:\\Git\\azure-sdk-for-js ..\\azure-rest-api-specs\\specification\\eventgrid\\resource-manager\\readme.md --use=@autorest/typescript@6.0.12 --generate-sample=true",
"repository_url": "https://github.com/Azure/azure-rest-api-specs.git",
"release_tool": "@azure-tools/js-sdk-release-tools@2.7.2",
"release_tool": "@azure-tools/js-sdk-release-tools@2.7.4",
"use": "@autorest/typescript@6.0.12"
}
2 changes: 1 addition & 1 deletion sdk/eventgrid/arm-eventgrid/assets.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"AssetsRepo": "Azure/azure-sdk-assets",
"AssetsRepoPrefixPath": "js",
"TagPrefix": "js/eventgrid/arm-eventgrid",
"Tag": "js/eventgrid/arm-eventgrid_2abdc21875"
"Tag": "js/eventgrid/arm-eventgrid_518e326595"
}
15 changes: 12 additions & 3 deletions sdk/eventgrid/arm-eventgrid/review/arm-eventgrid.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -3695,7 +3695,7 @@ export interface RoutingEnrichments {
// (undocumented)
dynamic?: DynamicRoutingEnrichment[];
// (undocumented)
static?: StaticRoutingEnrichment[];
static?: StaticRoutingEnrichmentUnion[];
}

// @public
Expand Down Expand Up @@ -3736,15 +3736,24 @@ export interface StaticDeliveryAttributeMapping extends DeliveryAttributeMapping
value?: string;
}

// @public (undocumented)
// @public
export interface StaticRoutingEnrichment {
key?: string;
valueType?: StaticRoutingEnrichmentType;
valueType: "String";
}

// @public
export type StaticRoutingEnrichmentType = string;

// @public (undocumented)
export type StaticRoutingEnrichmentUnion = StaticRoutingEnrichment | StaticStringRoutingEnrichment;

// @public (undocumented)
export interface StaticStringRoutingEnrichment extends StaticRoutingEnrichment {
value?: string;
valueType: "String";
}

// @public
export interface StorageBlobDeadLetterDestination extends DeadLetterDestination {
blobContainerName?: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ async function caCertificatesCreateOrUpdate() {
resourceGroupName,
namespaceName,
caCertificateName,
caCertificateInfo
caCertificateInfo,
);
console.log(result);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ async function caCertificatesDelete() {
const result = await client.caCertificates.beginDeleteAndWait(
resourceGroupName,
namespaceName,
caCertificateName
caCertificateName,
);
console.log(result);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ async function caCertificatesGet() {
const result = await client.caCertificates.get(
resourceGroupName,
namespaceName,
caCertificateName
caCertificateName,
);
console.log(result);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ async function channelsCreateOrUpdate() {
resourceGroupName,
partnerNamespaceName,
channelName,
channelInfo
channelInfo,
);
console.log(result);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ async function channelsDelete() {
const result = await client.channels.beginDeleteAndWait(
resourceGroupName,
partnerNamespaceName,
channelName
channelName,
);
console.log(result);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ async function channelsGetFullUrl() {
const result = await client.channels.getFullUrl(
resourceGroupName,
partnerNamespaceName,
channelName
channelName,
);
console.log(result);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ async function channelsListByPartnerNamespace() {
const resArray = new Array();
for await (let item of client.channels.listByPartnerNamespace(
resourceGroupName,
partnerNamespaceName
partnerNamespaceName,
)) {
resArray.push(item);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ async function channelsUpdate() {
resourceGroupName,
partnerNamespaceName,
channelName,
channelUpdateParameters
channelUpdateParameters,
);
console.log(result);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ async function clientGroupsCreateOrUpdate() {
resourceGroupName,
namespaceName,
clientGroupName,
clientGroupInfo
clientGroupInfo,
);
console.log(result);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ async function clientGroupsDelete() {
const result = await client.clientGroups.beginDeleteAndWait(
resourceGroupName,
namespaceName,
clientGroupName
clientGroupName,
);
console.log(result);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ async function clientsCreateOrUpdate() {
resourceGroupName,
namespaceName,
clientName,
clientInfo
clientInfo,
);
console.log(result);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ async function clientsDelete() {
const result = await client.clients.beginDeleteAndWait(
resourceGroupName,
namespaceName,
clientName
clientName,
);
console.log(result);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ async function domainEventSubscriptionsCreateOrUpdate() {
resourceGroupName,
domainName,
eventSubscriptionName,
eventSubscriptionInfo
eventSubscriptionInfo,
);
console.log(result);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ async function domainEventSubscriptionsDelete() {
const result = await client.domainEventSubscriptions.beginDeleteAndWait(
resourceGroupName,
domainName,
eventSubscriptionName
eventSubscriptionName,
);
console.log(result);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ async function domainEventSubscriptionsGetDeliveryAttributes() {
const result = await client.domainEventSubscriptions.getDeliveryAttributes(
resourceGroupName,
domainName,
eventSubscriptionName
eventSubscriptionName,
);
console.log(result);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ async function domainEventSubscriptionsGetFullUrl() {
const result = await client.domainEventSubscriptions.getFullUrl(
resourceGroupName,
domainName,
eventSubscriptionName
eventSubscriptionName,
);
console.log(result);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ async function domainEventSubscriptionsGet() {
const result = await client.domainEventSubscriptions.get(
resourceGroupName,
domainName,
eventSubscriptionName
eventSubscriptionName,
);
console.log(result);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ async function domainEventSubscriptionsUpdate() {
resourceGroupName,
domainName,
eventSubscriptionName,
eventSubscriptionUpdateParameters
eventSubscriptionUpdateParameters,
);
console.log(result);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ async function domainTopicEventSubscriptionsCreateOrUpdate() {
domainName,
topicName,
eventSubscriptionName,
eventSubscriptionInfo
eventSubscriptionInfo,
);
console.log(result);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ async function domainTopicEventSubscriptionsDelete() {
resourceGroupName,
domainName,
topicName,
eventSubscriptionName
eventSubscriptionName,
);
console.log(result);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ async function domainTopicEventSubscriptionsGetDeliveryAttributes() {
resourceGroupName,
domainName,
topicName,
eventSubscriptionName
eventSubscriptionName,
);
console.log(result);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ async function domainTopicEventSubscriptionsGetFullUrl() {
resourceGroupName,
domainName,
topicName,
eventSubscriptionName
eventSubscriptionName,
);
console.log(result);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ async function domainTopicEventSubscriptionsGet() {
resourceGroupName,
domainName,
topicName,
eventSubscriptionName
eventSubscriptionName,
);
console.log(result);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ async function domainTopicEventSubscriptionsList() {
for await (let item of client.domainTopicEventSubscriptions.list(
resourceGroupName,
domainName,
topicName
topicName,
)) {
resArray.push(item);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ async function domainTopicEventSubscriptionsUpdate() {
domainName,
topicName,
eventSubscriptionName,
eventSubscriptionUpdateParameters
eventSubscriptionUpdateParameters,
);
console.log(result);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ async function domainTopicsCreateOrUpdate() {
const result = await client.domainTopics.beginCreateOrUpdateAndWait(
resourceGroupName,
domainName,
domainTopicName
domainTopicName,
);
console.log(result);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ async function domainTopicsDelete() {
const result = await client.domainTopics.beginDeleteAndWait(
resourceGroupName,
domainName,
domainTopicName
domainTopicName,
);
console.log(result);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ async function domainsCreateOrUpdate() {
const result = await client.domains.beginCreateOrUpdateAndWait(
resourceGroupName,
domainName,
domainInfo
domainInfo,
);
console.log(result);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ async function domainsRegenerateKey() {
const result = await client.domains.regenerateKey(
resourceGroupName,
domainName,
regenerateKeyRequest
regenerateKeyRequest,
);
console.log(result);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ async function domainsUpdate() {
const result = await client.domains.beginUpdateAndWait(
resourceGroupName,
domainName,
domainUpdateParameters
domainUpdateParameters,
);
console.log(result);
}
Expand Down
Loading

0 comments on commit 3ffd7c7

Please sign in to comment.