ワンクリックで
gcloud-assured
Assured Workloads via gcloud (`gcloud assured`). Read and manipulate Assured Workloads data controls — operations, workloads.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Assured Workloads via gcloud (`gcloud assured`). Read and manipulate Assured Workloads data controls — operations, workloads.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
gcloud CLI reference: 128 GCP services, all GA commands with full flags, plus the standalone bq CLI. Use for any Google Cloud / GCP command-line task — managing resources, debugging gcloud commands, auth/config/scripting — or whenever a GCP product is named (GKE, Cloud Run, BigQuery, Cloud SQL, Pub/Sub...), even without 'gcloud'.
Access Approval via gcloud (`gcloud access-approval`). Manage Access Approval requests and settings — requests, service-account, settings.
Access Context Manager (VPC Service Controls) via gcloud (`gcloud access-context-manager`). Manage Access Context Manager resources — authorized-orgs, cloud-bindings, levels, perimeters, policies, supported-services.
Managed Service for Microsoft AD via gcloud (`gcloud active-directory`). Manage Managed Microsoft AD resources — domains, operations, peerings.
Agent Registry via gcloud (`gcloud agent-registry`). Manage Agent Registry resources — agents, bindings, endpoints, mcp-servers, operations, services.
AI Platform (legacy) via gcloud (`gcloud ai-platform`). Manage AI Platform jobs and models — jobs, local, models, operations, versions.
| name | gcloud-assured |
| description | Assured Workloads via gcloud (`gcloud assured`). Read and manipulate Assured Workloads data controls — operations, workloads. |
Assured Workloads lets organizations apply sovereign data, access, and personnel controls to Google Cloud resources by provisioning them inside a compliance-bounded environment (a "workload"). Each workload enforces a chosen compliance regime (FedRAMP, IL2/4/5, CJIS, ITAR, HIPAA, EU/regional data boundaries, partner-managed sovereign controls, and more), manages encryption-key rotation, and surfaces compliance violations for review. Reach for gcloud assured to create and maintain these environments, monitor for policy violations, and acknowledge them with a business justification. All commands operate at the organization level.
gcloud services enable assuredworkloads.googleapis.com
gcloud assured workloads create \
--organization=123 \
--location=us-central1 \
--display-name=Test-Workload \
--compliance-regime=fedramp-moderate \
--billing-account=billingAccounts/456 \
--next-rotation-time=2020-12-30T10:15:00.00Z \
--rotation-period=172800s \
--labels=Env=prod,Team=security \
--provisioned-resources-parent=folders/789 \
--resource-settings=consumer-project-id=my-custom-id \
--external-identifier=external-id
# List workloads in an org/location (page-by-page, capped)
gcloud assured workloads list \
--organization=123 --location=us-central1 \
--limit=30 --page-size=10
# Describe one workload by fully qualified name
gcloud assured workloads describe \
organizations/123/locations/us-central1/workloads/456
gcloud assured workloads update \
organizations/123/locations/us-central1/workloads/456 \
--display-name=Test-Workload-2 \
--labels=Env=prod,Team=security \
--etag=789
Update requires at least one of --display-name, --labels, or --violation-notifications-enabled. Pass the --etag read from describe to avoid clobbering concurrent changes.
# List violations for a workload
gcloud assured workloads violations list \
--organization=123 --location=us-central1 --workload=w123 \
--limit=30 --page-size=10
# Inspect one violation
gcloud assured workloads violations describe \
organizations/123/locations/us-central1/workloads/456/violations/789
# Acknowledge with a business justification
gcloud assured workloads violations acknowledge \
organizations/123/locations/us-central1/workloads/456/violations/789 \
--comment="Reviewed and accepted per security team approval" \
--acknowledge-type=SINGLE_VIOLATION
# Turn on resource-violation monitoring for a workload
gcloud assured workloads enable-resource-monitoring \
organizations/123/locations/us-central1/workloads/456
# List operations (e.g. workload creation/deletion) for an org/location
gcloud assured operations list \
organizations/123/locations/us-central1 --limit=30 --page-size=10
# Describe a single operation
gcloud assured operations describe \
organizations/123/locations/us-central1/operations/456
gcloud assured workloads delete \
organizations/123/locations/us-central1/workloads/456 --etag=789
| Group | Reference file | Commands | Description |
|---|---|---|---|
assured operations | operations.md | 2 | Read Assured Workloads long-running operation resources (describe, list) |
assured workloads | workloads.md | 9 | Create/read/update/delete workloads, enable monitoring, and manage violations |
See index.md for a one-line index of all 11 commands.
--organization=123 --location=us-central1 [--workload=456]) or, for commands that take a positional, as a fully qualified name like organizations/123/locations/us-central1/workloads/456. Violation commands also need --workload.--compliance-regime accepts a long enum (e.g. fedramp-moderate, fedramp-high, il2, il4, il5, cjis, itar, hipaa, hitrust, eu-regions-and-support, regional-controls, assured-workloads-for-partners). It cannot be changed afterward — only --display-name, --labels, and --violation-notifications-enabled are updatable.--next-rotation-time (RFC 3339, e.g. 2020-12-30T10:15:30.00Z) and --rotation-period (seconds, e.g. 172800s) configure key rotation at create time.--compliance-regime=assured-workloads-for-partners with --partner= (e.g. sovereign-controls-by-cntxt, local-controls-by-s3ns), plus --partner-services-billing-account= and optional --partner-permissions=data-logs-viewer=true.--enable-sovereign-controls=true is currently supported only with the EU regions regime.update and delete accept --etag; pass the value from describe to guard against lost updates.list commands support --limit, --page-size, --filter, --sort-by, and --uri. Useful pattern: --filter to narrow and --format to project, e.g. --format="table(name, complianceRegime, createTime)".--comment is required; --acknowledge-type is SINGLE_VIOLATION (default behavior) or EXISTING_CHILD_RESOURCE_VIOLATIONS to also clear child-resource violations of an org-policy violation.gcloud beta assured and gcloud alpha assured expose the same command surface as GA (the operations and workloads groups with identical subcommands). No beta/alpha-exclusive commands exist; partner workload creation is part of GA.
--location values per compliance regime.