How to Override the Authentication Credentials
Unless otherwise configured, the client libraries use Application Default Credentials to authenticate with Google Cloud Services. While this works for most applications, in some cases you may need to override this default. You can do so by providing the UnifiedCredentialsOption The following example shows how to explicitly load a service account key file:
[](std::string const& keyfile) {
auto is = std::ifstream(keyfile);
is.exceptions(std::ios::badbit); // Minimal error handling in examples
auto contents = std::string(std::istreambuf_iterator<char>(is.rdbuf()), {});
auto options =
google::cloud::Options{}.set<google::cloud::UnifiedCredentialsOption>(
google::cloud::MakeServiceAccountCredentials(contents));
return google::cloud::compute_accelerator_types_v1::AcceleratorTypesClient(
google::cloud::compute_accelerator_types_v1::
MakeAcceleratorTypesConnectionRest(options));
}
Follow these links to find examples for other *Client
classes:
compute_accelerator_types_v1::AcceleratorTypesClient
compute_addresses_v1::AddressesClient
compute_autoscalers_v1::AutoscalersClient
compute_backend_buckets_v1::BackendBucketsClient
compute_backend_services_v1::BackendServicesClient
compute_disk_types_v1::DiskTypesClient
compute_disks_v1::DisksClient
compute_external_vpn_gateways_v1::ExternalVpnGatewaysClient
compute_firewall_policies_v1::FirewallPoliciesClient
compute_firewalls_v1::FirewallsClient
compute_forwarding_rules_v1::ForwardingRulesClient
compute_global_addresses_v1::GlobalAddressesClient
compute_global_forwarding_rules_v1::GlobalForwardingRulesClient
compute_global_network_endpoint_groups_v1::GlobalNetworkEndpointGroupsClient
compute_global_operations_v1::GlobalOperationsClient
compute_global_organization_operations_v1::GlobalOrganizationOperationsClient
compute_global_public_delegated_prefixes_v1::GlobalPublicDelegatedPrefixesClient
compute_health_checks_v1::HealthChecksClient
compute_http_health_checks_v1::HttpHealthChecksClient
compute_https_health_checks_v1::HttpsHealthChecksClient
compute_image_family_views_v1::ImageFamilyViewsClient
compute_images_v1::ImagesClient
compute_instance_group_managers_v1::InstanceGroupManagersClient
compute_instance_groups_v1::InstanceGroupsClient
compute_instance_templates_v1::InstanceTemplatesClient
compute_instances_v1::InstancesClient
compute_interconnect_attachments_v1::InterconnectAttachmentsClient
compute_interconnect_locations_v1::InterconnectLocationsClient
compute_interconnect_remote_locations_v1::InterconnectRemoteLocationsClient
compute_interconnects_v1::InterconnectsClient
compute_license_codes_v1::LicenseCodesClient
compute_licenses_v1::LicensesClient
compute_machine_images_v1::MachineImagesClient
compute_machine_types_v1::MachineTypesClient
compute_network_attachments_v1::NetworkAttachmentsClient
compute_network_edge_security_services_v1::NetworkEdgeSecurityServicesClient
compute_network_endpoint_groups_v1::NetworkEndpointGroupsClient
compute_network_firewall_policies_v1::NetworkFirewallPoliciesClient
compute_networks_v1::NetworksClient
compute_node_groups_v1::NodeGroupsClient
compute_node_templates_v1::NodeTemplatesClient
compute_node_types_v1::NodeTypesClient
compute_packet_mirrorings_v1::PacketMirroringsClient
compute_projects_v1::ProjectsClient
compute_public_advertised_prefixes_v1::PublicAdvertisedPrefixesClient
compute_public_delegated_prefixes_v1::PublicDelegatedPrefixesClient
compute_region_autoscalers_v1::RegionAutoscalersClient
compute_region_backend_services_v1::RegionBackendServicesClient
compute_region_commitments_v1::RegionCommitmentsClient
compute_region_disk_types_v1::RegionDiskTypesClient
compute_region_disks_v1::RegionDisksClient
compute_region_health_check_services_v1::RegionHealthCheckServicesClient
compute_region_health_checks_v1::RegionHealthChecksClient
compute_region_instance_group_managers_v1::RegionInstanceGroupManagersClient
compute_region_instance_groups_v1::RegionInstanceGroupsClient
compute_region_instance_templates_v1::RegionInstanceTemplatesClient
compute_region_instances_v1::RegionInstancesClient
compute_region_network_endpoint_groups_v1::RegionNetworkEndpointGroupsClient
compute_region_network_firewall_policies_v1::RegionNetworkFirewallPoliciesClient
compute_region_notification_endpoints_v1::RegionNotificationEndpointsClient
compute_region_operations_v1::RegionOperationsClient
compute_region_security_policies_v1::RegionSecurityPoliciesClient
compute_region_ssl_certificates_v1::RegionSslCertificatesClient
compute_region_ssl_policies_v1::RegionSslPoliciesClient
compute_region_target_http_proxies_v1::RegionTargetHttpProxiesClient
compute_region_target_https_proxies_v1::RegionTargetHttpsProxiesClient
compute_region_target_tcp_proxies_v1::RegionTargetTcpProxiesClient
compute_region_url_maps_v1::RegionUrlMapsClient
compute_region_zones_v1::RegionZonesClient
compute_regions_v1::RegionsClient
compute_reservations_v1::ReservationsClient
compute_resource_policies_v1::ResourcePoliciesClient
compute_routers_v1::RoutersClient
compute_routes_v1::RoutesClient
compute_security_policies_v1::SecurityPoliciesClient
compute_service_attachments_v1::ServiceAttachmentsClient
compute_snapshot_settings_v1::SnapshotSettingsClient
compute_snapshots_v1::SnapshotsClient
compute_ssl_certificates_v1::SslCertificatesClient
compute_ssl_policies_v1::SslPoliciesClient
compute_subnetworks_v1::SubnetworksClient
compute_target_grpc_proxies_v1::TargetGrpcProxiesClient
compute_target_http_proxies_v1::TargetHttpProxiesClient
compute_target_https_proxies_v1::TargetHttpsProxiesClient
compute_target_instances_v1::TargetInstancesClient
compute_target_pools_v1::TargetPoolsClient
compute_target_ssl_proxies_v1::TargetSslProxiesClient
compute_target_tcp_proxies_v1::TargetTcpProxiesClient
compute_target_vpn_gateways_v1::TargetVpnGatewaysClient
compute_url_maps_v1::UrlMapsClient
compute_vpn_gateways_v1::VpnGatewaysClient
compute_vpn_tunnels_v1::VpnTunnelsClient
compute_zone_operations_v1::ZoneOperationsClient
compute_zones_v1::ZonesClient
Keep in mind that we chose this as an example because it is relatively easy to understand. Consult the Best practices for managing service account keys guide for more details.
See Also
Authentication Components - for more information on the factory functions to create google::cloud::Credentials
objects.