Interpret access assignments – Manage Azure identities and governance – AZ-104 Study Guide

Interpret access assignments To manage access (role) assignments, you can use the Azure portal, the Azure CLI, Azure PowerShell, Azure SDKs, or the Resource Manager REST APIs. The following section describes how to manage role assignments using the Azure portal. In the Azure portal, the Access Control (IAM) blade is used to manage access to resources, and […]

Note – OSPF Configurations and Verifications – Networking – 350-601 Study Guide

Note Use the ip ospf mtu-ignore command for OSPFv2 or ipv6 ospf mtu-ignore command for OSPFv3 to disable MTU mismatch detection on an interface. By default, OSPF checks whether neighbors use the same MTU on a common interface. If the receiving MTU is higher than the IP MTU configured on the incoming interface, OSPF does […]

Create a custom role – Manage Azure identities and governance – AZ-104 Study Guide

Create a custom role In addition to built-in roles available in Azure, you might need to create a custom role to provide a set of permissions that are not available in any of the built-in roles. Custom roles can be created and assigned through the Azure portal, Azure PowerShell, Azure CLI, and REST API. This […]

Reviewing Primitive Assignments – Working with Binary Arithmetic Operators – 1Z0-829 Study Guide

Reviewing Primitive Assignments See if you can figure out why each of the following lines does not compile: int fish = 1.0; // DOES NOT COMPILE short bird = 1921222; // DOES NOT COMPILE int mammal = 9f; // DOES NOT COMPILE long reptile = 192_301_398_193_810_323; // DOES NOT COMPILE The first statement does not […]

Preserving traceability and business rule context – Master Data Management – Salesforce Certified Data Architect Study Guide

Preserving traceability and business rule context In line with our establishment of a golden record, or single source of truth, it is important that an MDM strategy plays nicely with existing business rules, and changes to data are preserved throughout the organization. For example, the process of creating a bank account in a connected system […]

Understand how RBAC works 2 – Manage Azure identities and governance – AZ-104 Study Guide

Understand how RBAC works The specific permissions that are applied to a resource with RBAC are defined in a role definition. A role definition contains the list of permissions—or declared permissions—and those permissions define what actions can or cannot be performed against a type of resource, such as read, write, or delete. Role definitions, or roles, can be […]

Assigning Values – Working with Binary Arithmetic Operators – 1Z0-829 Study Guide

Assigning Values Compilation errors from assignment operators are often overlooked on the exam, in part because of how subtle these errors can be. To be successful with the assignment operators, you should be fluent in understanding how the compiler handles numeric promotion and when casting is required. Being able to spot these issues is critical […]

Using Bastion Hosts to Connect to Your VPC – Configuring Infrastructure Security – SCS-C02 Study Guide

Using Bastion Hosts to Connect to Your VPC Bastion hosts are used to gain access to your instances that reside within your private subnets from the internet, and the bastion itself resides within the public subnet. The difference between a public subnet and a private subnet is that subnets only become classed as public when […]

Understand how RBAC works – Manage Azure identities and governance – AZ-104 Study Guide

Understand how RBAC works Role-based access control (RBAC) facilitates the management of access to Azure resources by entities referred to as security principals, as well as controls what actions those entities can perform. In addition to determining who can do what, in Azure, access can be granted to users, groups, service principals, and managed identities through role assignments, […]

Try-Catch Method – Testing – Salesforce Certified Platform Developer I Study Guide

9.2 Try-Catch Method In Apex, the Try-Catch method is used to handle exceptions that may occur during the execution of a block of code. It allows you to catch and handle specific types of exceptions, preventing your code from crashing and providing error handling capabilities. If you try to execute the code example as follows […]