Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for Microsoft.Bing/Accounts #3915

Open
rshade opened this issue Jan 30, 2025 · 2 comments
Open

Add support for Microsoft.Bing/Accounts #3915

rshade opened this issue Jan 30, 2025 · 2 comments

Comments

@rshade
Copy link

rshade commented Jan 30, 2025

Hello!

  • Vote on this issue by adding a 👍 reaction
  • If you want to implement this feature, comment to let us know (we'll work with you on design, scheduling, etc.)

Issue details

I would like to add support for Microsoft.Bing/accounts api. Attached is the arm template:

{
    "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
    "contentVersion": "1.0.0.0",
    "parameters": {
        "name": {
            "type": "string"
        },
        "location": {
            "type": "string"
        },
        "sku": {
            "type": "string"
        },
        "tagValues": {
            "type": "object"
        }
    },
    "resources": [
        {
            "apiVersion": "2020-06-10",
            "name": "[parameters('name')]",
            "location": "[parameters('location')]",
            "type": "Microsoft.Bing/accounts",
            "kind": "Bing.Search.v7",
            "tags": "[if(contains(parameters('tagValues'), 'Microsoft.Bing/accounts'), parameters('tagValues')['Microsoft.Bing/accounts'], json('{}'))]",
            "sku": {
                "name": "[parameters('sku')]"
            }
        }
    ]

Affected area/feature

@rshade rshade added kind/enhancement Improvements or new features needs-triage Needs attention from the triage team labels Jan 30, 2025
@thomas11
Copy link
Contributor

Hi @rshade, unfortunately, there's no trace of the Microsoft.Bing module in the Azure API spec. I also couldn't find any documentation for it. That means we'd need a hand-written implementation, which we'd only do if there was significant demand for it.

@rshade
Copy link
Author

rshade commented Jan 31, 2025

@thomas11 I opened a ticket on the azure repo also. The client gave us some more info for the spec.

{
    "id": "/subscriptions/<subscription-id>/resourceGroups/<resource-group-name>/providers/Microsoft.Bing/accounts/<resource-name>",
    "name": "<resource-name>",
    "type": "microsoft.bing/accounts",
    "sku": {
        "name": "S1"
    },
    "kind": "Bing.Search.v7",
    "location": "global",
    "etag": "\"\"",
    "tags": {},
    "properties": {
        "provisioningState": "Succeeded",
        "endpoint": "https://api.bing.microsoft.com/",
        "internalId": "",
        "statisticsEnabled": false
    },
    "apiVersion": "2020-06-10"
}```

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants