Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions librarian.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ version: v0.16.0
repo: googleapis/google-cloud-python
sources:
googleapis:
commit: dae2a496666e372c1ebf56ceb54fe7f467a2c10e
sha256: 867490e3ce7818a2011475a888ce5d77c68cb7a13764f47d9aec8cf3038320e0
commit: c73334a47800ba03cc65e46ade96c07f01db3446
sha256: 07be59c8bc1dfc420e352db0528641baa23943e7dd1659acac41ca55969fb259
default:
output: packages
tag_format: '{name}-v{version}'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1372,6 +1372,14 @@ class ExecuteQueryRequest(proto.Message):
``PrepareQueryRequest``. Any non-empty ``Value.type`` must
match the corresponding ``param_types`` entry, or be
rejected with ``INVALID_ARGUMENT``.
view_parameters (MutableMapping[str, google.cloud.bigtable_v2.types.Value]):
Optional. This map provides the runtime values returned by
the VIEW_PARAMETERS() function calls, typically used for
user-level scoping of data based on identity.

The key is the name of the view parameter e.g. ``user_id``,
and the value is the parameter value e.g.
``alice@example.com``.
"""

instance_name: str = proto.Field(
Expand Down Expand Up @@ -1406,6 +1414,12 @@ class ExecuteQueryRequest(proto.Message):
number=7,
message=data.Value,
)
view_parameters: MutableMapping[str, data.Value] = proto.MapField(
proto.STRING,
proto.MESSAGE,
number=12,
message=data.Value,
)


class ExecuteQueryResponse(proto.Message):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
AddonsConfig,
AdvancedDatapathObservabilityConfig,
AdvancedMachineFeatures,
AgentSandboxConfig,
AnonymousAuthenticationConfig,
AuthenticatorGroupsConfig,
AutoIpamConfig,
Expand Down Expand Up @@ -66,9 +67,11 @@
CostManagementConfig,
CreateClusterRequest,
CreateNodePoolRequest,
CustomImageConfig,
DailyMaintenanceWindow,
DatabaseEncryption,
DatapathProvider,
DataplaneV2Config,
DefaultComputeClassConfig,
DefaultSnatStatus,
DeleteClusterRequest,
Expand Down Expand Up @@ -257,6 +260,7 @@
"AddonsConfig",
"AdvancedDatapathObservabilityConfig",
"AdvancedMachineFeatures",
"AgentSandboxConfig",
"AnonymousAuthenticationConfig",
"AuthenticatorGroupsConfig",
"AutoIpamConfig",
Expand Down Expand Up @@ -290,8 +294,10 @@
"CostManagementConfig",
"CreateClusterRequest",
"CreateNodePoolRequest",
"CustomImageConfig",
"DailyMaintenanceWindow",
"DatabaseEncryption",
"DataplaneV2Config",
"DefaultComputeClassConfig",
"DefaultSnatStatus",
"DeleteClusterRequest",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
AddonsConfig,
AdvancedDatapathObservabilityConfig,
AdvancedMachineFeatures,
AgentSandboxConfig,
AnonymousAuthenticationConfig,
AuthenticatorGroupsConfig,
AutoIpamConfig,
Expand Down Expand Up @@ -66,9 +67,11 @@
CostManagementConfig,
CreateClusterRequest,
CreateNodePoolRequest,
CustomImageConfig,
DailyMaintenanceWindow,
DatabaseEncryption,
DatapathProvider,
DataplaneV2Config,
DefaultComputeClassConfig,
DefaultSnatStatus,
DeleteClusterRequest,
Expand Down Expand Up @@ -339,6 +342,7 @@ def _get_version(dependency_name):
"AddonsConfig",
"AdvancedDatapathObservabilityConfig",
"AdvancedMachineFeatures",
"AgentSandboxConfig",
"AnonymousAuthenticationConfig",
"AuthenticatorGroupsConfig",
"AutoIpamConfig",
Expand Down Expand Up @@ -373,10 +377,12 @@ def _get_version(dependency_name):
"CostManagementConfig",
"CreateClusterRequest",
"CreateNodePoolRequest",
"CustomImageConfig",
"DNSConfig",
"DailyMaintenanceWindow",
"DatabaseEncryption",
"DatapathProvider",
"DataplaneV2Config",
"DefaultComputeClassConfig",
"DefaultSnatStatus",
"DeleteClusterRequest",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
AddonsConfig,
AdvancedDatapathObservabilityConfig,
AdvancedMachineFeatures,
AgentSandboxConfig,
AnonymousAuthenticationConfig,
AuthenticatorGroupsConfig,
AutoIpamConfig,
Expand Down Expand Up @@ -55,9 +56,11 @@
CostManagementConfig,
CreateClusterRequest,
CreateNodePoolRequest,
CustomImageConfig,
DailyMaintenanceWindow,
DatabaseEncryption,
DatapathProvider,
DataplaneV2Config,
DefaultComputeClassConfig,
DefaultSnatStatus,
DeleteClusterRequest,
Expand Down Expand Up @@ -244,6 +247,7 @@
"AddonsConfig",
"AdvancedDatapathObservabilityConfig",
"AdvancedMachineFeatures",
"AgentSandboxConfig",
"AnonymousAuthenticationConfig",
"AuthenticatorGroupsConfig",
"AutoIpamConfig",
Expand Down Expand Up @@ -277,8 +281,10 @@
"CostManagementConfig",
"CreateClusterRequest",
"CreateNodePoolRequest",
"CustomImageConfig",
"DailyMaintenanceWindow",
"DatabaseEncryption",
"DataplaneV2Config",
"DefaultComputeClassConfig",
"DefaultSnatStatus",
"DeleteClusterRequest",
Expand Down
Loading
Loading