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
1 change: 1 addition & 0 deletions .github/sync-repo-settings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ branchProtectionRules:
- 'showcase-unit-add-iam-methods'
- 'integration'
- 'style-check'
- 'snippetgen'
- 'unit (3.6)'
- 'unit (3.7)'
- 'unit (3.8)'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,9 @@ async def sample_list_resources():
client = mollusca_v1.SnippetsAsyncClient()

# Initialize request argument(s)
item_id = "item_id_value"
part_id = "part_id_value"
parent = f"items/{item_id}/parts/{part_id}"

item_id = "item_id_value"
part_id = "part_id_value"
resource_with_wildcard = f"items/{item_id}/parts/{part_id}"

request = mollusca_v1.ListResourcesRequest(
parent=parent,
resource_with_wildcard=resource_with_wildcard,
parent="parent_value",
resource_with_wildcard="resource_with_wildcard_value",
)

# Make the request
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,9 @@ def sample_list_resources():
client = mollusca_v1.SnippetsClient()

# Initialize request argument(s)
item_id = "item_id_value"
part_id = "part_id_value"
parent = f"items/{item_id}/parts/{part_id}"

item_id = "item_id_value"
part_id = "part_id_value"
resource_with_wildcard = f"items/{item_id}/parts/{part_id}"

request = mollusca_v1.ListResourcesRequest(
parent=parent,
resource_with_wildcard=resource_with_wildcard,
parent="parent_value",
resource_with_wildcard="resource_with_wildcard_value",
)

# Make the request
Expand Down
Loading