Sha256: 027007900e3520350fcc7a64732b20363313503e77cc3741408fd8ef88fafb5c

Contents?: true

Size: 797 Bytes

Versions: 3

Compression:

Stored size: 797 Bytes

Contents

# Update STS Service Account returns "OK" response with enable resource collection turned on

require "datadog_api_client"
api_instance = DatadogAPIClient::V2::GCPIntegrationAPI.new

# there is a valid "gcp_sts_account" in the system
GCP_STS_ACCOUNT_DATA_ID = ENV["GCP_STS_ACCOUNT_DATA_ID"]

body = DatadogAPIClient::V2::GCPSTSServiceAccountUpdateRequest.new({
  data: DatadogAPIClient::V2::GCPSTSServiceAccountUpdateRequestData.new({
    attributes: DatadogAPIClient::V2::GCPSTSServiceAccountAttributes.new({
      client_email: "252bf553ef04b351@example.com",
      resource_collection_enabled: true,
    }),
    id: GCP_STS_ACCOUNT_DATA_ID,
    type: DatadogAPIClient::V2::GCPServiceAccountType::GCP_SERVICE_ACCOUNT,
  }),
})
p api_instance.update_gcpsts_account(GCP_STS_ACCOUNT_DATA_ID, body)

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
datadog_api_client-2.21.0 examples/v2/gcp-integration/UpdateGCPSTSAccount_3205636354.rb
datadog_api_client-2.20.0 examples/v2/gcp-integration/UpdateGCPSTSAccount_3205636354.rb
datadog_api_client-2.19.0 examples/v2/gcp-integration/UpdateGCPSTSAccount_3205636354.rb