Skip to content

Commit

Permalink
chore: use gapic-generator-python 0.63.2 (#189)
Browse files Browse the repository at this point in the history
* chore: use gapic-generator-python 0.63.2

PiperOrigin-RevId: 427792504

Source-Link: googleapis/googleapis@55b9e1e

Source-Link: googleapis/googleapis-gen@bf4e86b
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiYmY0ZTg2Yjc1M2Y0MmNiMGVkYjFmZDUxZmJlODQwZDdkYTBhMWNkZSJ9

* 🦉 Updates from OwlBot

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
  • Loading branch information
gcf-owl-bot[bot] and gcf-owl-bot[bot] authored Feb 11, 2022
1 parent 4e78fe0 commit 4d8ea32
Show file tree
Hide file tree
Showing 171 changed files with 588 additions and 372 deletions.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ async def sample_acknowledge_user_data_collection():
# Make the request
response = await client.acknowledge_user_data_collection(request=request)

# Handle response
# Handle the response
print(response)

# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_AcknowledgeUserDataCollection_async]
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def sample_acknowledge_user_data_collection():
# Make the request
response = client.acknowledge_user_data_collection(request=request)

# Handle response
# Handle the response
print(response)

# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_AcknowledgeUserDataCollection_sync]
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ async def sample_approve_display_video360_advertiser_link_proposal():
# Make the request
response = await client.approve_display_video360_advertiser_link_proposal(request=request)

# Handle response
# Handle the response
print(response)

# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_ApproveDisplayVideo360AdvertiserLinkProposal_async]
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def sample_approve_display_video360_advertiser_link_proposal():
# Make the request
response = client.approve_display_video360_advertiser_link_proposal(request=request)

# Handle response
# Handle the response
print(response)

# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_ApproveDisplayVideo360AdvertiserLinkProposal_sync]
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ async def sample_archive_custom_dimension():
)

# Make the request
response = await client.archive_custom_dimension(request=request)
await client.archive_custom_dimension(request=request)


# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_ArchiveCustomDimension_async]
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def sample_archive_custom_dimension():
)

# Make the request
response = client.archive_custom_dimension(request=request)
client.archive_custom_dimension(request=request)


# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_ArchiveCustomDimension_sync]
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ async def sample_archive_custom_metric():
)

# Make the request
response = await client.archive_custom_metric(request=request)
await client.archive_custom_metric(request=request)


# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_ArchiveCustomMetric_async]
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def sample_archive_custom_metric():
)

# Make the request
response = client.archive_custom_metric(request=request)
client.archive_custom_metric(request=request)


# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_ArchiveCustomMetric_sync]
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ async def sample_audit_user_links():

# Make the request
page_result = client.audit_user_links(request=request)

# Handle the response
async for response in page_result:
print(response)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ def sample_audit_user_links():

# Make the request
page_result = client.audit_user_links(request=request)

# Handle the response
for response in page_result:
print(response)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ async def sample_batch_create_user_links():
# Make the request
response = await client.batch_create_user_links(request=request)

# Handle response
# Handle the response
print(response)

# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_BatchCreateUserLinks_async]
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def sample_batch_create_user_links():
# Make the request
response = client.batch_create_user_links(request=request)

# Handle response
# Handle the response
print(response)

# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_BatchCreateUserLinks_sync]
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ async def sample_batch_delete_user_links():
)

# Make the request
response = await client.batch_delete_user_links(request=request)
await client.batch_delete_user_links(request=request)


# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_BatchDeleteUserLinks_async]
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def sample_batch_delete_user_links():
)

# Make the request
response = client.batch_delete_user_links(request=request)
client.batch_delete_user_links(request=request)


# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_BatchDeleteUserLinks_sync]
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ async def sample_batch_get_user_links():
# Make the request
response = await client.batch_get_user_links(request=request)

# Handle response
# Handle the response
print(response)

# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_BatchGetUserLinks_async]
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def sample_batch_get_user_links():
# Make the request
response = client.batch_get_user_links(request=request)

# Handle response
# Handle the response
print(response)

# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_BatchGetUserLinks_sync]
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ async def sample_batch_update_user_links():
# Make the request
response = await client.batch_update_user_links(request=request)

# Handle response
# Handle the response
print(response)

# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_BatchUpdateUserLinks_async]
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def sample_batch_update_user_links():
# Make the request
response = client.batch_update_user_links(request=request)

# Handle response
# Handle the response
print(response)

# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_BatchUpdateUserLinks_sync]
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ async def sample_cancel_display_video360_advertiser_link_proposal():
# Make the request
response = await client.cancel_display_video360_advertiser_link_proposal(request=request)

# Handle response
# Handle the response
print(response)

# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_CancelDisplayVideo360AdvertiserLinkProposal_async]
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def sample_cancel_display_video360_advertiser_link_proposal():
# Make the request
response = client.cancel_display_video360_advertiser_link_proposal(request=request)

# Handle response
# Handle the response
print(response)

# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_CancelDisplayVideo360AdvertiserLinkProposal_sync]
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ async def sample_create_conversion_event():
# Make the request
response = await client.create_conversion_event(request=request)

# Handle response
# Handle the response
print(response)

# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_CreateConversionEvent_async]
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def sample_create_conversion_event():
# Make the request
response = client.create_conversion_event(request=request)

# Handle response
# Handle the response
print(response)

# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_CreateConversionEvent_sync]
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ async def sample_create_custom_dimension():
# Make the request
response = await client.create_custom_dimension(request=request)

# Handle response
# Handle the response
print(response)

# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_CreateCustomDimension_async]
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def sample_create_custom_dimension():
# Make the request
response = client.create_custom_dimension(request=request)

# Handle response
# Handle the response
print(response)

# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_CreateCustomDimension_sync]
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ async def sample_create_custom_metric():
# Make the request
response = await client.create_custom_metric(request=request)

# Handle response
# Handle the response
print(response)

# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_CreateCustomMetric_async]
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def sample_create_custom_metric():
# Make the request
response = client.create_custom_metric(request=request)

# Handle response
# Handle the response
print(response)

# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_CreateCustomMetric_sync]
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ async def sample_create_data_stream():
# Make the request
response = await client.create_data_stream(request=request)

# Handle response
# Handle the response
print(response)

# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_CreateDataStream_async]
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def sample_create_data_stream():
# Make the request
response = client.create_data_stream(request=request)

# Handle response
# Handle the response
print(response)

# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_CreateDataStream_sync]
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ async def sample_create_display_video360_advertiser_link():
# Make the request
response = await client.create_display_video360_advertiser_link(request=request)

# Handle response
# Handle the response
print(response)

# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_CreateDisplayVideo360AdvertiserLink_async]
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ async def sample_create_display_video360_advertiser_link_proposal():
# Make the request
response = await client.create_display_video360_advertiser_link_proposal(request=request)

# Handle response
# Handle the response
print(response)

# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_CreateDisplayVideo360AdvertiserLinkProposal_async]
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def sample_create_display_video360_advertiser_link_proposal():
# Make the request
response = client.create_display_video360_advertiser_link_proposal(request=request)

# Handle response
# Handle the response
print(response)

# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_CreateDisplayVideo360AdvertiserLinkProposal_sync]
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def sample_create_display_video360_advertiser_link():
# Make the request
response = client.create_display_video360_advertiser_link(request=request)

# Handle response
# Handle the response
print(response)

# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_CreateDisplayVideo360AdvertiserLink_sync]
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ async def sample_create_firebase_link():
# Make the request
response = await client.create_firebase_link(request=request)

# Handle response
# Handle the response
print(response)

# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_CreateFirebaseLink_async]
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def sample_create_firebase_link():
# Make the request
response = client.create_firebase_link(request=request)

# Handle response
# Handle the response
print(response)

# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_CreateFirebaseLink_sync]
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ async def sample_create_google_ads_link():
# Make the request
response = await client.create_google_ads_link(request=request)

# Handle response
# Handle the response
print(response)

# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_CreateGoogleAdsLink_async]
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def sample_create_google_ads_link():
# Make the request
response = client.create_google_ads_link(request=request)

# Handle response
# Handle the response
print(response)

# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_CreateGoogleAdsLink_sync]
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ async def sample_create_measurement_protocol_secret():
# Make the request
response = await client.create_measurement_protocol_secret(request=request)

# Handle response
# Handle the response
print(response)

# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_CreateMeasurementProtocolSecret_async]
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def sample_create_measurement_protocol_secret():
# Make the request
response = client.create_measurement_protocol_secret(request=request)

# Handle response
# Handle the response
print(response)

# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_CreateMeasurementProtocolSecret_sync]
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ async def sample_create_property():
# Make the request
response = await client.create_property(request=request)

# Handle response
# Handle the response
print(response)

# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_CreateProperty_async]
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def sample_create_property():
# Make the request
response = client.create_property(request=request)

# Handle response
# Handle the response
print(response)

# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_CreateProperty_sync]
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ async def sample_create_user_link():
# Make the request
response = await client.create_user_link(request=request)

# Handle response
# Handle the response
print(response)

# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_CreateUserLink_async]
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def sample_create_user_link():
# Make the request
response = client.create_user_link(request=request)

# Handle response
# Handle the response
print(response)

# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_CreateUserLink_sync]
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ async def sample_create_web_data_stream():
# Make the request
response = await client.create_web_data_stream(request=request)

# Handle response
# Handle the response
print(response)

# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_CreateWebDataStream_async]
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def sample_create_web_data_stream():
# Make the request
response = client.create_web_data_stream(request=request)

# Handle response
# Handle the response
print(response)

# [END analyticsadmin_generated_admin_v1alpha_AnalyticsAdminService_CreateWebDataStream_sync]
Loading

0 comments on commit 4d8ea32

Please sign in to comment.