func NewPlugin()

in plugin/v2/plugin.go [61:70]


func NewPlugin(keyService *cloudkms.ProjectsLocationsKeyRingsCryptoKeysService, keyURI, keySuffix string) *Plugin {
	p := &Plugin{
		keyService: keyService,
		keyURI:     keyURI,
		keySuffix:  keySuffix,
	}
	p.setKeyID(keyURI)

	return p
}