
OEM 13cR3: Get List of All Targets (or Hosts)
In this short blog I am going to tell about on how to list all targets monitored by EM or filter specific targets p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px...
A journey from Database Administrator to Data Administrator.
In this short blog I am going to tell about on how to list all targets monitored by EM or filter specific targets p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px...
In this blog I discuss on how to remove an IP from Security Group using Boto3 import boto3 ec2 = boto3.resource('ec2') s_group = ec2.SecurityGroup('sg-<ID>') response = s_group.revoke_ingress(IpProtocol="tcp", CidrIp=strIP, FromPort=22, ToPort=22)...
In this simple example, I configure AWS Boto3 to send a message to known queue. import boto3 sqs = boto3.resource('sqs') queue = sqs.get_queue_by_name(QueueName='Your_Queue_Name') response = queue.send_message(MessageBody='BodyText') print(response.get('MD5OfMessageBody')) Note - you...
In this blog I am going to show example on adding an IP address to AWS security group using Boto3. The way is simple, just create your own Lambda and...