Questions tagged [policies]

200 questions
2
votes
1 answer

Sails.js how to modify routes to interprate comma separated list of ids

According to some JSON API specifciations, such as http://jsonapi.org/format/#urls-individual-resources, the server should interpret a GET request to /myResources/1,2,3,4,5. Right now the Sails.js router sends this to the findOne action. What is the…
leejt489
  • 615
  • 6
  • 13
2
votes
0 answers

Is it possible that poilcy created on table will not be dropped even if the table gets dropped in oracle

I have Created a table and a policy on that table. Now whenver I am dropping a table that policy gets dropped automatiocally.Is there any way if i retain the policy even though the associated table is dropped. Or is there any way that we can…
user3819801
  • 41
  • 1
  • 1
  • 3
2
votes
1 answer

Can I create a user in AWS IAM that only has rights to create users and place them in a specific Group?

I am relatively new to AWS, I own the primary AWS account, but need to create a "super-user" account that only has rights to create new users and can only add those users to a set predefined groups with their respective policies (eg. SES-Readonly…
Grant Mac
  • 21
  • 4
2
votes
2 answers

How to save LocalGPO for non-administrator group

Windows 7, 32 bit. I have added the "Group Policy Object" to the MMC with group selected as "non-administrators" (from [browse]-->Users). I have locked down the capabilities of the local machine so that non-administrators can do very little, and…
Pop
  • 61
  • 8
1
vote
0 answers

Oracle WSM local optimization disabled by any policy

I have a lot of composites on my Oracle SOA Suite 11g server. They are succesfully invoking each other using Local Invocation / Optimization. But since I am trying to attach any policy, local optimization disappear. I have checked in Oracle EM -…
Denys
  • 23
  • 6
1
vote
1 answer

C++ Policy design with dependencies

This is a followup to this question. Basically I want a container that stores objects and later does something with them. I want to put both, the action performed on the objects (ActionPolicy), and the storage (StoragePolicy), into policy classes.…
lucas clemente
  • 6,255
  • 8
  • 41
  • 61
1
vote
0 answers

Precheck checkbox for posting a stream story

Is it within Facebooks App Policies to have a form for an action in my app that includes a pre-checked checkbox to share the story on Facebook (which then creates a post after submitting the form)? I can only find this relevant part in their…
Patrick Glandien
  • 7,791
  • 5
  • 41
  • 47
1
vote
2 answers

How to programmatically add tags to a GCP dataset

Have no ideas how to programmatically add tags to a GCP dataset Ad Tag. I can create and manage tagKeys&tagValues, can add conditions to policies but I can't get how to add tags to dataset using Python: Can't find any information in GCP…
1
vote
0 answers

Keycloak - use authorized API resources with public client

Using a Vue SPA with Keycloak as IAM to connect API of various microservices. The user can be login to Keycloak with Authorization PKCE Code Grant Flow with a public client (no client-secret on the browser). It is used the official JavaScript…
1
vote
1 answer

Do the policies attached to IAM groups take precedence over the policies attached to individual IAM users?

I have a question let's assume I attached IAM policy "EC2FullAccess" to a user and then I added that specific user to a group but that group don't have "EC2FullAccess" Policy is he will still able to access to EC2?
1
vote
2 answers

Unable to set body & return response in APIM policies, getting 500 error

I am using this code for azure APIM policies
Shree
  • 59
  • 6
1
vote
1 answer

unable to apply json deny policy using gcloud

I am unable to apply deny policy in gcloud. gcloud beta iam policies create newdenypolicy \ --attachment-point=cloudresourcemanager.googleapis.com/projects/projectid-1 \ --kind=denypolicies \ --policy-file=policy.json` { "displayName": "My deny…
Jr Dna
  • 39
  • 1
  • 9
1
vote
1 answer

Azure APIM Policies Transforming Body of Payload

I am still currently exploring in APIM. I have a payload in payload #1, which I want to transform into another payload # 2(expected). How would I edit my policy to construct this pay load? Payload 1 { "dependtee_name": "Steve", …
1
vote
1 answer

GCP Monitoring: Is it possible to set up the monitor with a time range specifically

I want to set up a monitor just at night as its when we really need the alert monitoring, is it possible?
1
vote
0 answers

Azure API Management Policy for validate Request Parameter Values

I need to validate parameter values in every request received. The validation will match every suscriptión ID to his posible parameter values. I can't do it in the backend service, seems that the standard "validate-parameters" policy don't allow…