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

feat(resourcesettings): start generating apiv1 #3854

Merged
merged 2 commits into from Mar 23, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 13 additions & 5 deletions internal/.repo-metadata-full.json
Expand Up @@ -29,7 +29,7 @@
"language": "Go",
"client_library_type": "generated",
"docs_url": "https://pkg.go.dev/cloud.google.com/go/apigateway/apiv1",
"release_level": "beta"
"release_level": "ga"
},
"cloud.google.com/go/appengine/apiv1": {
"distribution_name": "cloud.google.com/go/appengine/apiv1",
Expand Down Expand Up @@ -565,7 +565,7 @@
"language": "Go",
"client_library_type": "generated",
"docs_url": "https://pkg.go.dev/cloud.google.com/go/memcache/apiv1",
"release_level": "beta"
"release_level": "ga"
},
"cloud.google.com/go/memcache/apiv1beta2": {
"distribution_name": "cloud.google.com/go/memcache/apiv1beta2",
Expand Down Expand Up @@ -629,7 +629,7 @@
"language": "Go",
"client_library_type": "generated",
"docs_url": "https://pkg.go.dev/cloud.google.com/go/orgpolicy/apiv2",
"release_level": "beta"
"release_level": "ga"
},
"cloud.google.com/go/osconfig/agentendpoint/apiv1": {
"distribution_name": "cloud.google.com/go/osconfig/agentendpoint/apiv1",
Expand Down Expand Up @@ -789,6 +789,14 @@
"language": "Go",
"client_library_type": "generated",
"docs_url": "https://pkg.go.dev/cloud.google.com/go/resourcemanager/apiv2",
"release_level": "ga"
},
"cloud.google.com/go/resourcesettings/apiv1": {
"distribution_name": "cloud.google.com/go/resourcesettings/apiv1",
"description": "Resource Settings API",
"language": "Go",
"client_library_type": "generated",
"docs_url": "https://pkg.go.dev/cloud.google.com/go/resourcesettings/apiv1",
"release_level": "beta"
},
"cloud.google.com/go/retail/apiv2": {
Expand Down Expand Up @@ -885,7 +893,7 @@
"language": "Go",
"client_library_type": "generated",
"docs_url": "https://pkg.go.dev/cloud.google.com/go/servicecontrol/apiv1",
"release_level": "beta"
"release_level": "ga"
},
"cloud.google.com/go/servicedirectory/apiv1": {
"distribution_name": "cloud.google.com/go/servicedirectory/apiv1",
Expand All @@ -909,7 +917,7 @@
"language": "Go",
"client_library_type": "generated",
"docs_url": "https://pkg.go.dev/cloud.google.com/go/servicemanagement/apiv1",
"release_level": "beta"
"release_level": "ga"
},
"cloud.google.com/go/spanner": {
"distribution_name": "cloud.google.com/go/spanner",
Expand Down
9 changes: 9 additions & 0 deletions internal/gapicgen/generator/config.go
Expand Up @@ -1036,6 +1036,15 @@ var microgenGapicConfigs = []*microgenConfig{
apiServiceConfigPath: "google/cloud/metastore/v1beta/metastore_v1beta.yaml",
releaseLevel: "beta",
},
{
inputDirectoryPath: "google/cloud/resourcesettings/v1",
pkg: "resourcesettings",
importPath: "cloud.google.com/go/resourcesettings/apiv1",
gRPCServiceConfigPath: "google/cloud/resourcesettings/v1/resourcesettings_grpc_service_config.json",
apiServiceConfigPath: "google/cloud/resourcesettings/v1/resourcesettings_v1.yaml",
// GA after 2021/04/23
releaseLevel: "beta",
},

// Non-Cloud APIs
{
Expand Down
118 changes: 118 additions & 0 deletions resourcesettings/apiv1/doc.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

53 changes: 53 additions & 0 deletions resourcesettings/apiv1/gapic_metadata.json
@@ -0,0 +1,53 @@
{
"schema": "1.0",
"comment": "This file maps proto services/RPCs to the corresponding library clients/methods.",
"language": "go",
"protoPackage": "google.cloud.resourcesettings.v1",
"libraryPackage": "cloud.google.com/go/resourcesettings/apiv1",
"services": {
"ResourceSettingsService": {
"clients": {
"grpc": {
"libraryClient": "Client",
"rpcs": {
"CreateSettingValue": {
"methods": [
"CreateSettingValue"
]
},
"DeleteSettingValue": {
"methods": [
"DeleteSettingValue"
]
},
"GetSettingValue": {
"methods": [
"GetSettingValue"
]
},
"ListSettings": {
"methods": [
"ListSettings"
]
},
"LookupEffectiveSettingValue": {
"methods": [
"LookupEffectiveSettingValue"
]
},
"SearchSettingValues": {
"methods": [
"SearchSettingValues"
]
},
"UpdateSettingValue": {
"methods": [
"UpdateSettingValue"
]
}
}
}
}
}
}
}