Can I get the date at which a location started to exist in Azure maps? - azure-maps

I'm looking to understand the age of stores in Azure maps.
Does Azure provide a way to query when a particular store opened?

Azure Maps doesn't have that information in their services. To be honest, I haven't seen that in any service from anyone.

Related

is it possible tracking all authentication requests on AD Server?

is it possible tracking all authentication requests on AD Server? no matter the requests go through LDAP, Kerberos or NTLM, and getting know the source IP address and account name?
That information is already in the Event Viewer on each of your domain controllers.
If you search online, you may be able to find some software that can be installed on each DC that will consolidate all that information for you to make it easier to look at and search. But I've never done that, so I can't recommend anything.

How can I Monetize a Google Data Studio Connector?

I'm trying to understand how to monetize GDS connectors once are publicated in the community. Does something know how to do it. I can't find a clue on this on the URL: https://developers.google.com/datastudio/connector/get-started
Monetization is entirely upto the developer. You will need to implement your own payment and verification for this.
You can verify the user identify and level of access through either your own 3P authentication for the connector OR by calling your own API with the effective user's email address.

how to check my azure search quota usage?

For storage and VM, I can check the current quota usage by following powershell command:
Get-AzureRmStorageUsage
Get-AzureRmVMUsage
Is there similar thing for Azure Search? Either via powershell or Portal is ok.
In addition to monitor usage on portal, you could also get it via Service Statistics.
The Service Statistics request is constructed using HTTP GET and returns from Azure Search the current usage and limits of the following properties.
GET https://[service name].search.windows.net/servicestats?api-version=[api-version]
Content-Type: application/json
api-key: [admin key]
how many S2 or S3 services I can created on a give region?
You can create multiple services within a subscription. Each one can be provisioned at a specific tier. You're limited only by the number of services allowed at each tier. For example, you could create up to 12 services at the Basic tier and another 12 services at the S1 tier within the same subscription. Please refer to this article.
There is an easy way to check your quota usage for an Azure search service, via the portal:
If you open up the overview tab for you search service, you'll be presented with something like this: (image from a search service that I've created)
This shows the quota of resources for your search service and how much of the quota has been used up.
https://learn.microsoft.com/en-us/azure/search/search-limits-quotas-capacity
By using above url if you know what is your service plan then you can see the limits

How access Azure Active Directory (Users/Groups) through rest api using C#?

I'm new to Azure and also Azure Active Directory, I'm not familiar with Azure environment but I got enough credentials.
Can anyone help me with my first api call for Azure using C# console application.
Thanks in advance!
The best way to get started is to take a look at our open source samples available on GitHub.
Here is a good one for your needs: https://github.com/Azure-Samples/active-directory-dotnet-graphapi-console
You should follow the instructions which are written in the ReadMe, and it should walk you through the application registration process and getting the application up and running. The application itself should make a number of queries to the Azure Active Directory Graph API.
You can find all of those queries here: https://github.com/Azure-Samples/active-directory-dotnet-graphapi-console/blob/master/GraphConsoleAppV3/GraphRequests.cs
I hope this helps you with your first application!

iPhone App Built on Amazon Web Services

I am building an iPhone app that stores user logon credentials in an AWS DynamoDB. In another DynamoDB I am storing locations of files (stored in S3) for that user. What I don't understand is how to make this secure. If I use a Token Vending Machine that gives that application an ID with access to the user DynamoDB, isn't it possible that any user could access the entire DB and just add or delete any information that they desire? They would also be able to access the entire S3 bucket using this setup. Any recommendations on how I could set this up securely and properly?
I am new to user DB management, and any links to helpful resources would be much appreciated.
Regarding S3 and permissions, you may find the answer on the following question useful:
Temporary Credentials Using AWS IAM
IAM permissions are more finegrained than you think. You can allow/disallow specific API calls, so for example you might only allow read operations. You can also allow access to a specific resource only. On S3 this means that you can limit access to a specific file or folder , but dynamodb policies can only be set at the table level.
Personally I wouldn't allow users direct access to dynamodb - I'd have a webservice mediating access to that, although users being able to upload directly to s3 or download straight from s3 is a good thing (Your web service can in general give out pre signed urls for that though)

Resources