Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix!: [networkconnectivity] remove policy based routing API #9036

Merged
merged 6 commits into from
Feb 2, 2023
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
6 changes: 3 additions & 3 deletions java-networkconnectivity/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@ If you are using Maven, add this to your pom.xml file:
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-networkconnectivity</artifactId>
<version>1.7.0</version>
<version>1.8.0</version>
</dependency>
```

If you are using Gradle without BOM, add this to your dependencies:

```Groovy
implementation 'com.google.cloud:google-cloud-networkconnectivity:1.7.0'
implementation 'com.google.cloud:google-cloud-networkconnectivity:1.8.0'
```

If you are using SBT, add this to your dependencies:

```Scala
libraryDependencies += "com.google.cloud" % "google-cloud-networkconnectivity" % "1.7.0"
libraryDependencies += "com.google.cloud" % "google-cloud-networkconnectivity" % "1.8.0"
```

## Authentication
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -43,27 +43,6 @@
}
}
}
},
"PolicyBasedRoutingService": {
"clients": {
"grpc": {
"libraryClient": "PolicyBasedRoutingServiceClient",
"rpcs": {
"CreatePolicyBasedRoute": {
"methods": ["createPolicyBasedRouteAsync", "createPolicyBasedRouteAsync", "createPolicyBasedRouteAsync", "createPolicyBasedRouteOperationCallable", "createPolicyBasedRouteCallable"]
},
"DeletePolicyBasedRoute": {
"methods": ["deletePolicyBasedRouteAsync", "deletePolicyBasedRouteAsync", "deletePolicyBasedRouteAsync", "deletePolicyBasedRouteOperationCallable", "deletePolicyBasedRouteCallable"]
},
"GetPolicyBasedRoute": {
"methods": ["getPolicyBasedRoute", "getPolicyBasedRoute", "getPolicyBasedRoute", "getPolicyBasedRouteCallable"]
},
"ListPolicyBasedRoutes": {
"methods": ["listPolicyBasedRoutes", "listPolicyBasedRoutes", "listPolicyBasedRoutes", "listPolicyBasedRoutesPagedCallable", "listPolicyBasedRoutesCallable"]
}
}
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -38,27 +38,6 @@
* Hub response = hubServiceClient.getHub(name);
* }
* }</pre>
*
* <p>======================= PolicyBasedRoutingServiceClient =======================
*
* <p>Service Description: Policy-Based Routing allows GCP customers to specify flexibile routing
* policies for Layer 4 traffic traversing through the connected service.
*
* <p>Sample for PolicyBasedRoutingServiceClient:
*
* <pre>{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (PolicyBasedRoutingServiceClient policyBasedRoutingServiceClient =
* PolicyBasedRoutingServiceClient.create()) {
* PolicyBasedRouteName name =
* PolicyBasedRouteName.of("[PROJECT]", "[LOCATION]", "[POLICY_BASED_ROUTE]");
* PolicyBasedRoute response = policyBasedRoutingServiceClient.getPolicyBasedRoute(name);
* }
* }</pre>
*/
@Generated("by gapic-generator-java")
package com.google.cloud.networkconnectivity.v1;
Expand Down
Loading