API Reference google_api_managed_identities v0.7.1

Modules

API client metadata for GoogleApi.ManagedIdentities.V1.

API calls for all endpoints tagged Projects.

Handle Tesla connections for GoogleApi.ManagedIdentities.V1.

Associates members with a role.

The request message for Operations.CancelOperation.

Represents a managed Microsoft Active Directory domain.

A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); } The JSON representation for Empty is empty JSON object {}.

Represents a textual expression in the Common Expression Language (CEL) syntax. CEL is a C-like expression language. The syntax and semantics of CEL are documented at https://github.com/google/cel-spec. Example (Comparison): title: "Summary size limit" description: "Determines if a summary is less than 100 chars" expression: "document.summary.size() < 100" Example (Equality): title: "Requestor is owner" description: "Determines if requestor is the document owner" expression: "document.owner == request.auth.claims.email" Example (Logic): title: "Public documents" description: "Determine whether the document should be publicly visible" expression: "document.type != 'private' && document.type != 'internal'" Example (Data Manipulation): title: "Notification string" description: "Create a notification string with a timestamp." expression: "'New message received at ' + string(document.create_time)" The exact variables and functions that may be referenced within an expression are determined by the service that evaluates it. See the service documentation for additional information.

Represents the metadata of the long-running operation.

Represents the metadata of the long-running operation.

Represents the metadata of the long-running operation.

Attributes

  • consumerDefinedName (type: String.t, default: nil) - consumer_defined_name is the name that is set by the consumer. On the other hand Name field represents system-assigned id of an instance so consumers are not necessarily aware of it. consumer_defined_name is used for notification/UI purposes for consumer to recognize their instances.
  • createTime (type: DateTime.t, default: nil) - Output only. Timestamp when the resource was created.
  • labels (type: map(), default: nil) - Optional. Resource labels to represent user provided metadata. Each label is a key-value pair, where both the key and the value are arbitrary strings provided by the user.
  • maintenancePolicyNames (type: map(), default: nil) - The MaintenancePolicies that have been attached to the instance. The key must be of the type name of the oneof policy name defined in MaintenancePolicy, and the referenced policy must define the same policy type. For complete details of MaintenancePolicy, please refer to go/cloud-saas-mw-ug.
  • maintenanceSchedules (type: %{optional(String.t) => GoogleApi.ManagedIdentities.V1.Model.GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSchedule.t}, default: nil) - The MaintenanceSchedule contains the scheduling information of published maintenance schedule with same key as software_versions.
  • maintenanceSettings (type: GoogleApi.ManagedIdentities.V1.Model.GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSettings.t, default: nil) - Optional. The MaintenanceSettings associated with instance.
  • name (type: String.t, default: nil) - Unique name of the resource. It uses the form: projects/{project_id}/locations/{location_id}/instances/{instance_id}
  • producerMetadata (type: map(), default: nil) - Output only. Custom string attributes used primarily to expose producer-specific information in monitoring dashboards. See go/get-instance-metadata.
  • provisionedResources (type: list(GoogleApi.ManagedIdentities.V1.Model.GoogleCloudSaasacceleratorManagementProvidersV1ProvisionedResource.t), default: nil) - Output only. The list of data plane resources provisioned for this instance, e.g. compute VMs. See go/get-instance-metadata.
  • slmInstanceTemplate (type: String.t, default: nil) - Link to the SLM instance template. Only populated when updating SLM instances via SSA's Actuation service adaptor. Service producers with custom control plane (e.g. Cloud SQL) doesn't need to populate this field. Instead they should use software_versions.
  • sloMetadata (type: GoogleApi.ManagedIdentities.V1.Model.GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata.t, default: nil) - Output only. SLO metadata for instance classification in the Standardized dataplane SLO platform. See go/cloud-ssa-standard-slo for feature description.
  • softwareVersions (type: map(), default: nil) - Software versions that are used to deploy this instance. This can be mutated by rollout services.
  • state (type: String.t, default: nil) - Output only. Current lifecycle state of the resource (e.g. if it's being created or ready to use).
  • tenantProjectId (type: String.t, default: nil) - Output only. ID of the associated GCP tenant project. See go/get-instance-metadata.
  • updateTime (type: DateTime.t, default: nil) - Output only. Timestamp when the resource was last modified.

Maintenance schedule which is exposed to customer and potentially end user, indicating published upcoming future maintenance schedule

Maintenance settings associated with instance. Allows service producers and end users to assign settings that controls maintenance on this instance.

Node information for custom per-node SLO implementations. SSA does not support per-node SLO, but producers can populate per-node information in SloMetadata for custom precomputations. SSA Eligibility Exporter will emit per-node metric based on this information.

SloEligibility is a tuple containing eligibility value: true if an instance is eligible for SLO calculation or false if it should be excluded from all SLO-related calculations along with a user-defined reason.

SloExclusion represents an exclusion in SLI calculation applies to all SLOs.

SloMetadata contains resources required for proper SLO classification of the instance.

The response message for Locations.ListLocations.

The response message for Operations.ListOperations.

A resource that represents Google Cloud Platform location.

This resource represents a long-running operation that is the result of a network API call.

Represents the metadata of the long-running operation.

An Identity and Access Management (IAM) policy, which specifies access controls for Google Cloud resources. A Policy is a collection of bindings. A binding binds one or more members to a single role. Members can be user accounts, service accounts, Google groups, and domains (such as G Suite). A role is a named list of permissions; each role can be an IAM predefined role or a user-created custom role. For some types of Google Cloud resources, a binding can also specify a condition, which is a logical expression that allows access to a resource only if the expression evaluates to true. A condition can add constraints based on attributes of the request, the resource, or both. To learn which resources support conditions in their IAM policies, see the IAM documentation. JSON example: { "bindings": [ { "role": "roles/resourcemanager.organizationAdmin", "members": [ "user:mike@example.com", "group:admins@example.com", "domain:google.com", "serviceAccount:my-project-id@appspot.gserviceaccount.com" ] }, { "role": "roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com" ], "condition": { "title": "expirable access", "description": "Does not grant access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:00:00.000Z')", } } ], "etag": "BwWWja0YfJA=", "version": 3 } YAML example: bindings: - members: - user:mike@example.com - group:admins@example.com - domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.com role: roles/resourcemanager.organizationViewer condition: title: expirable access description: Does not grant access after Sep 2020 expression: request.time < timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a description of IAM and its features, see the IAM documentation.

Response message for ResetAdminPassword

Request message for SetIamPolicy method.

The Status type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by gRPC. Each Status message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the API Design Guide.

Request message for TestIamPermissions method.

Response message for TestIamPermissions method.

Represents a relationship between two domains. This allows a controller in one domain to authenticate a user in another domain.