Skip to content
Open
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
16 changes: 8 additions & 8 deletions .librarian/state.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ libraries:
tag_format: '{id}-v{version}'
- id: google-cloud-alloydb
version: 0.7.0
last_generated_commit: d4a34bf03d617723146fe3ae15192c4d93981a27
last_generated_commit: 5c9602dbb5ac6856c07daf83be1fbd001a972ef3
apis:
- path: google/cloud/alloydb/v1beta
service_config: alloydb_v1beta.yaml
Expand Down Expand Up @@ -523,7 +523,7 @@ libraries:
tag_format: '{id}-v{version}'
- id: google-cloud-auditmanager
version: 0.1.0
last_generated_commit: 9eea40c74d97622bb0aa406dd313409a376cc73b
last_generated_commit: 5c9602dbb5ac6856c07daf83be1fbd001a972ef3
apis:
- path: google/cloud/auditmanager/v1
service_config: auditmanager_v1.yaml
Expand Down Expand Up @@ -1041,7 +1041,7 @@ libraries:
tag_format: '{id}-v{version}'
- id: google-cloud-commerce-consumer-procurement
version: 0.4.0
last_generated_commit: 3322511885371d2b2253f209ccc3aa60d4100cfd
last_generated_commit: 5c9602dbb5ac6856c07daf83be1fbd001a972ef3
apis:
- path: google/cloud/commerce/consumer/procurement/v1
service_config: cloudcommerceconsumerprocurement_v1.yaml
Expand Down Expand Up @@ -1587,7 +1587,7 @@ libraries:
tag_format: '{id}-v{version}'
- id: google-cloud-documentai
version: 3.10.0
last_generated_commit: 9eea40c74d97622bb0aa406dd313409a376cc73b
last_generated_commit: 5c9602dbb5ac6856c07daf83be1fbd001a972ef3
apis:
- path: google/cloud/documentai/v1beta3
service_config: documentai_v1beta3.yaml
Expand Down Expand Up @@ -2413,7 +2413,7 @@ libraries:
tag_format: '{id}-v{version}'
- id: google-cloud-network-management
version: 1.32.0
last_generated_commit: cfe62b3c5ceb9f81879c61480f26707980534462
last_generated_commit: 5c9602dbb5ac6856c07daf83be1fbd001a972ef3
apis:
- path: google/cloud/networkmanagement/v1
service_config: networkmanagement_v1.yaml
Expand Down Expand Up @@ -3129,7 +3129,7 @@ libraries:
tag_format: '{id}-v{version}'
- id: google-cloud-storagebatchoperations
version: 0.4.0
last_generated_commit: 1133adb136f742df62864f1d9d307df25d451880
last_generated_commit: 5c9602dbb5ac6856c07daf83be1fbd001a972ef3
apis:
- path: google/cloud/storagebatchoperations/v1
service_config: storagebatchoperations_v1.yaml
Expand Down Expand Up @@ -3307,7 +3307,7 @@ libraries:
tag_format: '{id}-v{version}'
- id: google-cloud-vectorsearch
version: 0.5.0
last_generated_commit: 45e46bdae3874d2b92a2ced22529fc7037a1878f
last_generated_commit: 5c9602dbb5ac6856c07daf83be1fbd001a972ef3
apis:
- path: google/cloud/vectorsearch/v1beta
service_config: vectorsearch_v1beta.yaml
Expand Down Expand Up @@ -3952,7 +3952,7 @@ libraries:
tag_format: '{id}-v{version}'
- id: googleapis-common-protos
version: 1.72.0
last_generated_commit: c662840a94dbdf708caa44893a2d49119cdd391c
last_generated_commit: 5c9602dbb5ac6856c07daf83be1fbd001a972ef3
apis:
- path: google/api
service_config: serviceconfig.yaml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -939,6 +939,9 @@ class Cluster(proto.Message):

"123/environment": "production",
"123/costCenter": "marketing".
dataplex_config (google.cloud.alloydb_v1.types.Cluster.DataplexConfig):
Optional. Configuration for Dataplex
integration.
"""

class State(proto.Enum):
Expand Down Expand Up @@ -1129,6 +1132,23 @@ class TrialMetadata(proto.Message):
message=timestamp_pb2.Timestamp,
)

class DataplexConfig(proto.Message):
r"""Configuration for Dataplex integration.

Attributes:
enabled (bool):
Dataplex is enabled by default for resources
such as clusters and instances. This flag
controls the integration of AlloyDB PG resources
(like databases, schemas, and tables) with
Dataplex.".
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

There is a small typo in the docstring. The line ends with Dataplex.".", which seems to have an extra double quote. It should likely just be Dataplex..

Suggested change
Dataplex.".
Dataplex.

"""

enabled: bool = proto.Field(
proto.BOOL,
number=1,
)

backup_source: "BackupSource" = proto.Field(
proto.MESSAGE,
number=15,
Expand Down Expand Up @@ -1295,6 +1315,11 @@ class TrialMetadata(proto.Message):
proto.STRING,
number=41,
)
dataplex_config: DataplexConfig = proto.Field(
proto.MESSAGE,
number=47,
message=DataplexConfig,
)


class Instance(proto.Message):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -954,6 +954,9 @@ class Cluster(proto.Message):
the per-project service account. The per-cluster
service account naming format is subject to
change.
dataplex_config (google.cloud.alloydb_v1alpha.types.Cluster.DataplexConfig):
Optional. Configuration for Dataplex
integration.
"""

class State(proto.Enum):
Expand Down Expand Up @@ -1144,6 +1147,23 @@ class TrialMetadata(proto.Message):
message=timestamp_pb2.Timestamp,
)

class DataplexConfig(proto.Message):
r"""Configuration for Dataplex integration.

Attributes:
enabled (bool):
Dataplex is enabled by default for resources
such as clusters and instances. This flag
controls the integration of AlloyDB PG resources
(like databases, schemas, and tables) with
Dataplex.".
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

There is a small typo in the docstring. The line ends with Dataplex.".", which seems to have an extra double quote. It should likely just be Dataplex..

Suggested change
Dataplex.".
Dataplex.

"""

enabled: bool = proto.Field(
proto.BOOL,
number=1,
)

backup_source: "BackupSource" = proto.Field(
proto.MESSAGE,
number=15,
Expand Down Expand Up @@ -1323,6 +1343,11 @@ class TrialMetadata(proto.Message):
proto.STRING,
number=46,
)
dataplex_config: DataplexConfig = proto.Field(
proto.MESSAGE,
number=47,
message=DataplexConfig,
)


class Instance(proto.Message):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -952,6 +952,9 @@ class Cluster(proto.Message):
the per-project service account. The per-cluster
service account naming format is subject to
change.
dataplex_config (google.cloud.alloydb_v1beta.types.Cluster.DataplexConfig):
Optional. Configuration for Dataplex
integration.
"""

class State(proto.Enum):
Expand Down Expand Up @@ -1142,6 +1145,23 @@ class TrialMetadata(proto.Message):
message=timestamp_pb2.Timestamp,
)

class DataplexConfig(proto.Message):
r"""Configuration for Dataplex integration.

Attributes:
enabled (bool):
Dataplex is enabled by default for resources
such as clusters and instances. This flag
controls the integration of AlloyDB PG resources
(like databases, schemas, and tables) with
Dataplex.".
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

There is a small typo in the docstring. The line ends with Dataplex.".", which seems to have an extra double quote. It should likely just be Dataplex..

Suggested change
Dataplex.".
Dataplex.

"""

enabled: bool = proto.Field(
proto.BOOL,
number=1,
)

backup_source: "BackupSource" = proto.Field(
proto.MESSAGE,
number=15,
Expand Down Expand Up @@ -1317,6 +1337,11 @@ class TrialMetadata(proto.Message):
proto.STRING,
number=46,
)
dataplex_config: DataplexConfig = proto.Field(
proto.MESSAGE,
number=47,
message=DataplexConfig,
)


class Instance(proto.Message):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24938,6 +24938,7 @@ def test_create_cluster_rest_call_success(request_type):
"grace_end_time": {},
},
"tags": {},
"dataplex_config": {"enabled": True},
}
# The version of a generated dependency at test runtime may differ from the version used during generation.
# Delete any fields which are not present in the current runtime dependency
Expand Down Expand Up @@ -25225,6 +25226,7 @@ def test_update_cluster_rest_call_success(request_type):
"grace_end_time": {},
},
"tags": {},
"dataplex_config": {"enabled": True},
}
# The version of a generated dependency at test runtime may differ from the version used during generation.
# Delete any fields which are not present in the current runtime dependency
Expand Down Expand Up @@ -26347,6 +26349,7 @@ def test_create_secondary_cluster_rest_call_success(request_type):
"grace_end_time": {},
},
"tags": {},
"dataplex_config": {"enabled": True},
}
# The version of a generated dependency at test runtime may differ from the version used during generation.
# Delete any fields which are not present in the current runtime dependency
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25629,6 +25629,7 @@ def test_create_cluster_rest_call_success(request_type):
},
"tags": {},
"service_account_email": "service_account_email_value",
"dataplex_config": {"enabled": True},
}
# The version of a generated dependency at test runtime may differ from the version used during generation.
# Delete any fields which are not present in the current runtime dependency
Expand Down Expand Up @@ -25919,6 +25920,7 @@ def test_update_cluster_rest_call_success(request_type):
},
"tags": {},
"service_account_email": "service_account_email_value",
"dataplex_config": {"enabled": True},
}
# The version of a generated dependency at test runtime may differ from the version used during generation.
# Delete any fields which are not present in the current runtime dependency
Expand Down Expand Up @@ -27044,6 +27046,7 @@ def test_create_secondary_cluster_rest_call_success(request_type):
},
"tags": {},
"service_account_email": "service_account_email_value",
"dataplex_config": {"enabled": True},
}
# The version of a generated dependency at test runtime may differ from the version used during generation.
# Delete any fields which are not present in the current runtime dependency
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25611,6 +25611,7 @@ def test_create_cluster_rest_call_success(request_type):
},
"tags": {},
"service_account_email": "service_account_email_value",
"dataplex_config": {"enabled": True},
}
# The version of a generated dependency at test runtime may differ from the version used during generation.
# Delete any fields which are not present in the current runtime dependency
Expand Down Expand Up @@ -25900,6 +25901,7 @@ def test_update_cluster_rest_call_success(request_type):
},
"tags": {},
"service_account_email": "service_account_email_value",
"dataplex_config": {"enabled": True},
}
# The version of a generated dependency at test runtime may differ from the version used during generation.
# Delete any fields which are not present in the current runtime dependency
Expand Down Expand Up @@ -27024,6 +27026,7 @@ def test_create_secondary_cluster_rest_call_success(request_type):
},
"tags": {},
"service_account_email": "service_account_email_value",
"dataplex_config": {"enabled": True},
}
# The version of a generated dependency at test runtime may differ from the version used during generation.
# Delete any fields which are not present in the current runtime dependency
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,12 @@ class LayoutConfig(proto.Message):
return_bounding_boxes (bool):
Optional. Whether to include bounding boxes
in layout parser processor response.
enable_image_annotation (bool):
Optional. Whether to include image
annotations in layout parser response.
enable_table_annotation (bool):
Optional. Whether to include table
annotations in layout parser response.
"""

class ChunkingConfig(proto.Message):
Expand Down Expand Up @@ -179,6 +185,14 @@ class ChunkingConfig(proto.Message):
proto.BOOL,
number=3,
)
enable_image_annotation: bool = proto.Field(
proto.BOOL,
number=4,
)
enable_table_annotation: bool = proto.Field(
proto.BOOL,
number=6,
)

class IndividualPageSelector(proto.Message):
r"""A list of individual page numbers.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@
ForwardInfo,
ForwardingRuleInfo,
GKEMasterInfo,
GkeNetworkPolicyInfo,
GkeNetworkPolicySkippedInfo,
GkePodInfo,
GoogleServiceInfo,
HybridSubnetInfo,
Expand All @@ -80,6 +82,7 @@
LoadBalancerType,
NatInfo,
NetworkInfo,
NgfwPacketInspectionInfo,
ProxyConnectionInfo,
RedisClusterInfo,
RedisInstanceInfo,
Expand Down Expand Up @@ -144,6 +147,8 @@
"ForwardInfo",
"ForwardingRuleInfo",
"GKEMasterInfo",
"GkeNetworkPolicyInfo",
"GkeNetworkPolicySkippedInfo",
"GkePodInfo",
"GoogleServiceInfo",
"HybridSubnetInfo",
Expand All @@ -155,6 +160,7 @@
"LoadBalancerInfo",
"NatInfo",
"NetworkInfo",
"NgfwPacketInspectionInfo",
"ProxyConnectionInfo",
"RedisClusterInfo",
"RedisInstanceInfo",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@
ForwardInfo,
ForwardingRuleInfo,
GKEMasterInfo,
GkeNetworkPolicyInfo,
GkeNetworkPolicySkippedInfo,
GkePodInfo,
GoogleServiceInfo,
HybridSubnetInfo,
Expand All @@ -85,6 +87,7 @@
LoadBalancerType,
NatInfo,
NetworkInfo,
NgfwPacketInspectionInfo,
ProxyConnectionInfo,
RedisClusterInfo,
RedisInstanceInfo,
Expand Down Expand Up @@ -232,6 +235,8 @@ def _get_version(dependency_name):
"GKEMasterInfo",
"GetConnectivityTestRequest",
"GetVpcFlowLogsConfigRequest",
"GkeNetworkPolicyInfo",
"GkeNetworkPolicySkippedInfo",
"GkePodInfo",
"GoogleServiceInfo",
"HybridSubnetInfo",
Expand All @@ -250,6 +255,7 @@ def _get_version(dependency_name):
"LoadBalancerType",
"NatInfo",
"NetworkInfo",
"NgfwPacketInspectionInfo",
"OperationMetadata",
"OrganizationVpcFlowLogsServiceClient",
"ProbingDetails",
Expand Down
Loading
Loading